Make.Constraint
Rank-1 constraints over Field.t
s.
type t = ( Field.t, Field.Constant.t ) Snark_intf.Constraint0.t
The type of constraints. In the proof system, every constraint is a rank-1 constraint; that is, the constraint takes the form a * b = c
for some a
, b
and c
which are made up of some linear combination of Field
.Var.ts.
For example, a constraint could be (w + 2*x) * (y + z) = a + b
, where w
, x
, y
, z
, a
, and b
are field variables. Note that a linear combination is the result of adding together some of these variables, each multiplied by a field constant (Field.t
); any time we want to multiply our *variables*, we need to add a new rank-1 constraint.
val boolean : ( Field.t -> t ) with_constraint_args
A constraint that asserts that the field variable is a boolean: either Field.zero
or Field.one
.
val equal : ( Field.t -> Field.t -> t ) with_constraint_args
A constraint that asserts that the field variable arguments are equal.
val r1cs : ( Field.t -> Field.t -> Field.t -> t ) with_constraint_args
A bare rank-1 constraint.
val square : ( Field.t -> Field.t -> t ) with_constraint_args
A constraint that asserts that the first variable squares to the second, ie. square x y
=> x*x = y
within the field.