Snarky_backendless.Snark
include module type of struct include Snark0 end
Sets the eval_constraints
state. If true
, run_unchecked
and prove
will check that the constraint system is satisfied while evaluating the Checked
.t. The default value is false
.
Note: This flag will not evaluate any constraints added by with_constraint_system
(or the underlying Types
.Checked.With_constraint_system). For these, you should modify your code to use the normal run_and_check
function.
The exception raised when evaluating a checked computation raises an exception.
The arguments are: 1. the backtrace of all active labels at the point in the checked computation when the exception was raised 2. the original exception that was raised 3. the backtrace of the original exception
module Make
(Backend : Backend_intf.S) :
Snark_intf.S
with type field = Backend.Field.t
and type Bigint.t = Backend.Bigint.t
and type R1CS_constraint_system.t = Backend.R1CS_constraint_system.t
and type Field.Vector.t = Backend.Field.Vector.t
module Run : sig ... end
type 'field m = (module Snark_intf.Run with type field = 'field)
val make : (module Backend_intf.S with type Field.t = 'field) -> 'field m
module Backend_intf = Backend_intf
module Merkle_tree = Merkle_tree