Pickles.Inductive_rule
module B : sig ... end
module Previous_proof_statement : sig ... end
type ('var, 'value, 'input_var, 'input_value, 'ret_var, 'ret_value)
public_input =
| Input : ( 'var, 'value ) Impls.Step.Typ.t -> ( 'var,
'value,
'var,
'value,
unit,
unit )
public_input |
| Output : ( 'ret_var, 'ret_value ) Impls.Step.Typ.t -> ( 'ret_var,
'ret_value,
unit,
unit,
'ret_var,
'ret_value )
public_input |
| Input_and_output : ( 'var, 'value ) Impls.Step.Typ.t
* ( 'ret_var, 'ret_value ) Impls.Step.Typ.t -> ( 'var * 'ret_var,
'value * 'ret_value,
'var,
'value,
'ret_var,
'ret_value )
public_input |
This type relates the types of the input and output types of an inductive rule's main
function to the type of the public input to the resulting circuit.
type 'public_input main_input = {
public_input : 'public_input; | (* The publicly-exposed input to the circuit's main function. *) |
}
The input type of an inductive rule's main function.
type ('prev_vars, 'widths, 'public_output, 'auxiliary_output) main_return = {
previous_proof_statements : ( 'prev_vars, 'widths )
Pickles_types.Hlist.H2.T(Previous_proof_statement).t; | (* A list of booleans, determining whether each previous proof must verify. *) |
public_output : 'public_output; | (* The publicly-exposed output from the circuit's main function. *) |
auxiliary_output : 'auxiliary_output; | (* The auxiliary output from the circuit's main function. This value is returned to the prover, but not exposed to or used by verifiers. *) |
}
The return type of an inductive rule's main function.
type ('prev_vars, 'prev_values, 'widths, 'heights, 'a_var, 'a_value, 'ret_var, 'ret_value, 'auxiliary_var, 'auxiliary_value)
t =
{
identifier : string; |
prevs : ( 'prev_vars, 'prev_values, 'widths, 'heights )
Pickles_types.Hlist.H4.T(Tag).t; |
main : 'a_var main_input ->
( 'prev_vars, 'widths, 'ret_var, 'auxiliary_var ) main_return; |
uses_lookup : bool; |
}
This type models an "inductive rule". It includes
The types parameters are:
'prev_vars
the tuple-list of public input circuit types to the previous proofs.Boolean.var * (Boolean.var * unit)
represents 2 previous proofs whose public inputs are booleans'prev_values
the tuple-list of public input non-circuit types to the previous proofs.bool * (bool * unit)
represents 2 previous proofs whose public inputs are booleans.'widths
is a tuple list of the maximum number of previous proofs each previous proof itself had.Nat.z Nat.s * (Nat.z * unit)
represents 2 previous proofs where the first has at most 1 previous proof and the second had zero previous proofs.'heights
is a tuple list of the number of inductive rules in each of the previous proofsNat.z Nat.s Nat.s * (Nat.z Nat.s * unit)
represents 2 previous proofs where the first had 2 inductive rules and the second had 1.'a_var
is the in-circuit type of the main
function's public input.'a_value
is the out-of-circuit type of the main
function's public input.'ret_var
is the in-circuit type of the main
function's public output.'ret_value
is the out-of-circuit type of the main
function's public output.'auxiliary_var
is the in-circuit type of the main
function's auxiliary data, to be returned to the prover but not exposed in the public input.'auxiliary_value
is the out-of-circuit type of the main
function's auxiliary data, to be returned to the prover but not exposed in the public input.