Module Snarky_backendless.Checked_ast

module Checked0 : sig ... end
include module type of struct include Checked0 end
type ('a, 'f) t = ( 'a, 'f ) Checked0.t =
| Pure : 'a -> ( 'a, 'f ) t
| Direct : ( 'f Run_state.t -> 'f Run_state.t * 'a ) * ( 'a -> ( 'b, 'f ) t ) -> ( 'b, 'f ) t
| Add_constraint : ( 'f Cvar.t, 'f ) Constraint.t * ( 'a, 'f ) t -> ( 'a, 'f ) t
| As_prover : ( unit, 'f ) Types.As_prover.t * ( 'a, 'f ) t -> ( 'a, 'f ) t
| Lazy : ( 'a, 'f ) t * ( 'a Core_kernel.Lazy.t -> ( 'b, 'f ) t ) -> ( 'b, 'f ) t
| With_label : string * ( 'a, 'f ) t * ( 'a -> ( 'b, 'f ) t ) -> ( 'b, 'f ) t
| With_handler : Request.Handler.single * ( 'a, 'f ) t * ( 'a -> ( 'b, 'f ) t ) -> ( 'b, 'f ) t
| Exists : ( 'var, 'value, 'f, ( unit, 'f ) t ) Types.Typ.t * ( ( 'value Request.t, 'f ) Types.As_prover.t, ( 'value, 'f ) Types.As_prover.t ) Types.Provider.t * ( ( 'var, 'value ) Handle.t -> ( 'a, 'f ) t ) -> ( 'a, 'f ) t
| Next_auxiliary : ( int -> ( 'a, 'f ) t ) -> ( 'a, 'f ) t

The type ('ret, 'field, 'runner_state) t represents a checked computation, where

  • 'ret is the return type of the computation
  • 'field is the type of the field elements.
module T0 : sig ... end

Monad instance for Types.Checked.t.

module Types : sig ... end
module Basic : Checked_intf.Basic with module Types = Types with type 'f field = 'f
module T : sig ... end
include module type of struct include T end
include Checked_intf.S with module Types := Types with type ('a, 'f) t := ( 'a, 'f ) Types.Checked.t and type 'f field = 'f
type 'f field = 'f
include Monad_let.S2 with type ('a, 'f) t := ( 'a, 'f ) Types.Checked.t
include Monad_let.S_without_syntax2 with type ('a, 'e) t := ( 'a, 'e ) Types.Checked.t
include Core_kernel.Monad.Infix2 with type ('a, 'e) t := ( 'a, 'e ) Types.Checked.t
val (>>=) : ( 'a, 'e ) Types.Checked.t -> ( 'a -> ( 'b, 'e ) Types.Checked.t ) -> ( 'b, 'e ) Types.Checked.t
val (>>|) : ( 'a, 'e ) Types.Checked.t -> ( 'a -> 'b ) -> ( 'b, 'e ) Types.Checked.t
module Monad_infix = T.Monad_infix
val bind : ( 'a, 'e ) Types.Checked.t -> f:( 'a -> ( 'b, 'e ) Types.Checked.t ) -> ( 'b, 'e ) Types.Checked.t
val return : 'a -> ( 'a, _ ) Types.Checked.t
val map : ( 'a, 'e ) Types.Checked.t -> f:( 'a -> 'b ) -> ( 'b, 'e ) Types.Checked.t
val join : ( ( 'a, 'e ) Types.Checked.t, 'e ) Types.Checked.t -> ( 'a, 'e ) Types.Checked.t
val ignore_m : ( _, 'e ) Types.Checked.t -> ( unit, 'e ) Types.Checked.t
val all : ( 'a, 'e ) Types.Checked.t list -> ( 'a list, 'e ) Types.Checked.t
val all_unit : ( unit, 'e ) Types.Checked.t list -> ( unit, 'e ) Types.Checked.t
module Let_syntax = T.Let_syntax
val as_prover : ( unit, 'f field ) Types.As_prover.t -> ( unit, 'f field ) Types.Checked.t
val mk_lazy : ( unit -> ( 'a, 'f ) Types.Checked.t ) -> ( 'a Stdlib.Lazy.t, 'f ) Types.Checked.t
val request_witness : ( 'var, 'value, 'f field ) Types.Typ.t -> ( 'value Request.t, 'f field ) Types.As_prover.t -> ( 'var, 'f field ) Types.Checked.t
val request : ?such_that:( 'var -> ( unit, 'f field ) Types.Checked.t ) -> ( 'var, 'value, 'f field ) Types.Typ.t -> 'value Request.t -> ( 'var, 'f field ) Types.Checked.t
val exists_handle : ?request:( 'value Request.t, 'f field ) Types.As_prover.t -> ?compute:( 'value, 'f field ) Types.As_prover.t -> ( 'var, 'value, 'f field ) Types.Typ.t -> ( ( 'var, 'value ) Handle.t, 'f field ) Types.Checked.t
val exists : ?request:( 'value Request.t, 'f field ) Types.As_prover.t -> ?compute:( 'value, 'f field ) Types.As_prover.t -> ( 'var, 'value, 'f field ) Types.Typ.t -> ( 'var, 'f field ) Types.Checked.t
type response = Request.response
val unhandled : response
type request = Request.request =
| With : {
request : 'a Request.t;
respond : 'a Request.Response.t -> response;
} -> request
val handle : ( unit -> ( 'a, 'f field ) Types.Checked.t ) -> ( request -> response ) -> ( 'a, 'f field ) Types.Checked.t
val handle_as_prover : ( unit -> ( 'a, 'f field ) Types.Checked.t ) -> ( request -> response, 'f field ) Types.As_prover.t -> ( 'a, 'f field ) Types.Checked.t
val next_auxiliary : unit -> ( int, 'f field ) Types.Checked.t
val with_label : string -> ( unit -> ( 'a, 'f field ) Types.Checked.t ) -> ( 'a, 'f field ) Types.Checked.t
val assert_ : ?label:Base.string -> ( 'f field Cvar.t, 'f field ) Constraint.t -> ( unit, 'f field ) Types.Checked.t
val assert_r1cs : ?label:Base.string -> 'f field Cvar.t -> 'f field Cvar.t -> 'f field Cvar.t -> ( unit, 'f field ) Types.Checked.t
val assert_square : ?label:Base.string -> 'f field Cvar.t -> 'f field Cvar.t -> ( unit, 'f field ) Types.Checked.t
val assert_all : ?label:Base.string -> ( 'f field Cvar.t, 'f field ) Constraint.t list -> ( unit, 'f field ) Types.Checked.t
val assert_equal : ?label:Base.string -> 'f field Cvar.t -> 'f field Cvar.t -> ( unit, 'f field ) Types.Checked.t
val direct : ( 'f field Run_state.t -> 'f field Run_state.t * 'a ) -> ( 'a, 'f field ) Types.Checked.t
val constraint_count : ?weight:( ( 'f field Cvar.t, 'f field ) Constraint.t -> int ) -> ?log:( ?start:bool -> string -> int -> unit ) -> ( unit -> ( 'a, 'f field ) Types.Checked.t ) -> int