Snark_params.Make_inner_curve_scalar
module Impl : sig ... end
module Other_impl : sig ... end
module T = Other_impl.Field
include module type of T
with module Var := T.Var
and module Checked := T.Checked
type t = Other_impl.field
The finite field over which the R1CS operates. Values may be between 0 and size
.
include Core_kernel.Bin_prot.Binable.S with type t := t
val bin_size_t : t Bin_prot.Size.sizer
val bin_write_t : t Bin_prot.Write.writer
val bin_read_t : t Bin_prot.Read.reader
val __bin_read_t__ : ( int -> t ) Bin_prot.Read.reader
val bin_writer_t : t Bin_prot.Type_class.writer
val bin_reader_t : t Bin_prot.Type_class.reader
val bin_t : t Bin_prot.Type_class.t
val hash_fold_t :
Ppx_hash_lib.Std.Hash.state ->
t ->
Ppx_hash_lib.Std.Hash.state
val hash : t -> Ppx_hash_lib.Std.Hash.hash_value
A generator for Quickcheck tests within specified inclusive bounds
val gen_uniform : t Core_kernel.Quickcheck.Generator.t
A uniform generator for Quickcheck tests.
A uniform Quickcheck generator within specified inclusive bounds
include Snarky_intf.Field.Extended with type t := t
include Snarky_intf.Field.S with type t := t
include Bin_prot.Binable.S with type t := t
val bin_size_t : t Bin_prot.Size.sizer
val bin_write_t : t Bin_prot.Write.writer
val bin_read_t : t Bin_prot.Read.reader
val __bin_read_t__ : ( int -> t ) Bin_prot.Read.reader
val bin_writer_t : t Bin_prot.Type_class.writer
val bin_reader_t : t Bin_prot.Type_class.reader
val bin_t : t Bin_prot.Type_class.t
val of_int : int -> t
val one : t
val zero : t
val is_square : t -> bool
val print : t -> unit
val random : unit -> t
module Mutable = Other_impl.Field.Mutable
module Vector = Other_impl.Field.Vector
val size : Snarky_backendless.Snark_intf.Bignum_bigint.t
The number at which values in the field wrap back around to 0.
val unpack : t -> bool list
Convert a field element into its constituent bits.
val project : bool list -> t
Convert a list of bits into a field element. This is the inverse of unpack.
val project_reference : bool list -> t
project
, but slow. Exposed for benchmarks.
val parity : t -> bool
Get the least significant bit of a field element.
val of_bits : bool list -> Other_impl.Field.t
val typ : ( var, t ) Impl.Typ.t
val gen : t Core_kernel.Quickcheck.Generator.t
val test_bit : Other_impl.field -> int -> bool
module Checked : sig ... end