Struct o1vm::interpreters::mips::constraints::Env
source · pub struct Env<Fp> { /* private fields */ }
Expand description
The environment keeping the constraints between the different polynomials
Implementations§
source§impl<Fp: Field> Env<Fp>
impl<Fp: Field> Env<Fp>
sourcepub fn get_selector_constraints(
&self
) -> Vec<Expr<ConstantExpr<Fp, BerkeleyChallengeTerm>, Column>>
pub fn get_selector_constraints( &self ) -> Vec<Expr<ConstantExpr<Fp, BerkeleyChallengeTerm>, Column>>
Return the constraints for the selector. Each selector must be a boolean.
pub fn get_selector( &self ) -> Expr<ConstantExpr<Fp, BerkeleyChallengeTerm>, Column>
sourcepub fn get_constraints(
&self
) -> Vec<Expr<ConstantExpr<Fp, BerkeleyChallengeTerm>, Column>>
pub fn get_constraints( &self ) -> Vec<Expr<ConstantExpr<Fp, BerkeleyChallengeTerm>, Column>>
Return the constraints for the current instruction, without the selector
pub fn get_lookups( &self ) -> Vec<RAMLookup<Expr<ConstantExpr<Fp, BerkeleyChallengeTerm>, Column>, LookupTableIDs>>
Trait Implementations§
source§impl DecomposableTracer<Env<<<DecomposableMIPSFoldingConfig as FoldingConfig>::Curve as AffineRepr>::ScalarField>> for DecomposedMIPSTrace
impl DecomposableTracer<Env<<<DecomposableMIPSFoldingConfig as FoldingConfig>::Curve as AffineRepr>::ScalarField>> for DecomposedMIPSTrace
source§fn new(
domain_size: usize,
env: &mut Env<<<DecomposableMIPSFoldingConfig as FoldingConfig>::Curve as AffineRepr>::ScalarField>
) -> Self
fn new( domain_size: usize, env: &mut Env<<<DecomposableMIPSFoldingConfig as FoldingConfig>::Curve as AffineRepr>::ScalarField> ) -> Self
source§fn pad_witnesses(&mut self)
fn pad_witnesses(&mut self)
source§impl<Fp: Field> InterpreterEnv for Env<Fp>
impl<Fp: Field> InterpreterEnv for Env<Fp>
§type Position = ColumnAlias
type Position = ColumnAlias
In the concrete implementation for the constraints, the interpreter will work over columns. The position in this case can be seen as a new variable/input of our circuit.
source§fn request_preimage_write(
&mut self,
_addr: &Self::Variable,
len: &Self::Variable,
pos: Self::Position
) -> Self::Variable
fn request_preimage_write( &mut self, _addr: &Self::Variable, len: &Self::Variable, pos: Self::Position ) -> Self::Variable
This function checks that the preimage is read correctly. It adds 13 constraints, and 5 lookups for the communication channel. In particular, at every step it writes the bytes of the preimage into the channel (excluding the length bytes) and it reads the hash digest from the channel when the preimage is fully read. The output is the actual number of bytes that have been read.
source§fn alloc_scratch(&mut self) -> Self::Position
fn alloc_scratch(&mut self) -> Self::Position
type Variable = Operations<ExprInner<Operations<ConstantExprInner<Fp, BerkeleyChallengeTerm>>, Column>>
fn variable(&self, column: Self::Position) -> Self::Variable
source§fn activate_selector(&mut self, selector: Instruction)
fn activate_selector(&mut self, selector: Instruction)
source§fn add_constraint(&mut self, assert_equals_zero: Self::Variable)
fn add_constraint(&mut self, assert_equals_zero: Self::Variable)
assert_equals_zero
is 0.source§fn check_is_zero(_assert_equals_zero: &Self::Variable)
fn check_is_zero(_assert_equals_zero: &Self::Variable)
assert_equals_zero
is 0; otherwise abort.source§fn check_equal(_x: &Self::Variable, _y: &Self::Variable)
fn check_equal(_x: &Self::Variable, _y: &Self::Variable)
x
and y
are equal; otherwise abort.source§fn check_boolean(_x: &Self::Variable)
fn check_boolean(_x: &Self::Variable)
x
is a boolean (0
or 1
); otherwise abort.fn add_lookup(&mut self, lookup: RAMLookup<Self::Variable, LookupTableIDs>)
fn instruction_counter(&self) -> Self::Variable
fn increase_instruction_counter(&mut self)
source§unsafe fn fetch_register(
&mut self,
_idx: &Self::Variable,
output: Self::Position
) -> Self::Variable
unsafe fn fetch_register( &mut self, _idx: &Self::Variable, output: Self::Position ) -> Self::Variable
idx
and store it in local
position output
. Read moresource§unsafe fn push_register_if(
&mut self,
_idx: &Self::Variable,
_value: Self::Variable,
_if_is_true: &Self::Variable
)
unsafe fn push_register_if( &mut self, _idx: &Self::Variable, _value: Self::Variable, _if_is_true: &Self::Variable )
source§unsafe fn fetch_register_access(
&mut self,
_idx: &Self::Variable,
output: Self::Position
) -> Self::Variable
unsafe fn fetch_register_access( &mut self, _idx: &Self::Variable, output: Self::Position ) -> Self::Variable
idx
, and store
it in local position output
. Read moresource§unsafe fn push_register_access_if(
&mut self,
_idx: &Self::Variable,
_value: Self::Variable,
_if_is_true: &Self::Variable
)
unsafe fn push_register_access_if( &mut self, _idx: &Self::Variable, _value: Self::Variable, _if_is_true: &Self::Variable )
idx
to value
if
if_is_true
is true. Read moresource§unsafe fn fetch_memory(
&mut self,
_addr: &Self::Variable,
output: Self::Position
) -> Self::Variable
unsafe fn fetch_memory( &mut self, _addr: &Self::Variable, output: Self::Position ) -> Self::Variable
source§unsafe fn push_memory(&mut self, _addr: &Self::Variable, _value: Self::Variable)
unsafe fn push_memory(&mut self, _addr: &Self::Variable, _value: Self::Variable)
source§unsafe fn fetch_memory_access(
&mut self,
_addr: &Self::Variable,
output: Self::Position
) -> Self::Variable
unsafe fn fetch_memory_access( &mut self, _addr: &Self::Variable, output: Self::Position ) -> Self::Variable
addr
was written at, and store
it in local position output
. Read moresource§unsafe fn push_memory_access(
&mut self,
_addr: &Self::Variable,
_value: Self::Variable
)
unsafe fn push_memory_access( &mut self, _addr: &Self::Variable, _value: Self::Variable )
fn constant(x: u32) -> Self::Variable
source§unsafe fn bitmask(
&mut self,
_x: &Self::Variable,
_highest_bit: u32,
_lowest_bit: u32,
position: Self::Position
) -> Self::Variable
unsafe fn bitmask( &mut self, _x: &Self::Variable, _highest_bit: u32, _lowest_bit: u32, position: Self::Position ) -> Self::Variable
x
between highest_bit
and lowest_bit
, and store
the result in position
.
lowest_bit
becomes the least-significant bit of the resulting value. Read moresource§unsafe fn shift_left(
&mut self,
_x: &Self::Variable,
_by: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn shift_left( &mut self, _x: &Self::Variable, _by: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn shift_right(
&mut self,
_x: &Self::Variable,
_by: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn shift_right( &mut self, _x: &Self::Variable, _by: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn shift_right_arithmetic(
&mut self,
_x: &Self::Variable,
_by: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn shift_right_arithmetic( &mut self, _x: &Self::Variable, _by: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn test_zero(
&mut self,
_x: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn test_zero( &mut self, _x: &Self::Variable, position: Self::Position ) -> Self::Variable
fn is_zero(&mut self, x: &Self::Variable) -> Self::Variable
source§unsafe fn inverse_or_zero(
&mut self,
_x: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn inverse_or_zero( &mut self, _x: &Self::Variable, position: Self::Position ) -> Self::Variable
source§fn equal(&mut self, x: &Self::Variable, y: &Self::Variable) -> Self::Variable
fn equal(&mut self, x: &Self::Variable, y: &Self::Variable) -> Self::Variable
x
is equal to y
, or 0 otherwise, storing the result in position
.source§unsafe fn test_less_than(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn test_less_than( &mut self, _x: &Self::Variable, _y: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn test_less_than_signed(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn test_less_than_signed( &mut self, _x: &Self::Variable, _y: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn and_witness(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn and_witness( &mut self, _x: &Self::Variable, _y: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn nor_witness(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn nor_witness( &mut self, _x: &Self::Variable, _y: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn or_witness(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn or_witness( &mut self, _x: &Self::Variable, _y: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn xor_witness(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn xor_witness( &mut self, _x: &Self::Variable, _y: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn add_witness(
&mut self,
_y: &Self::Variable,
_x: &Self::Variable,
out_position: Self::Position,
overflow_position: Self::Position
) -> (Self::Variable, Self::Variable)
unsafe fn add_witness( &mut self, _y: &Self::Variable, _x: &Self::Variable, out_position: Self::Position, overflow_position: Self::Position ) -> (Self::Variable, Self::Variable)
x + y
and the overflow bit, storing the results in position_out
and
position_overflow
respectively. Read moresource§unsafe fn sub_witness(
&mut self,
_y: &Self::Variable,
_x: &Self::Variable,
out_position: Self::Position,
underflow_position: Self::Position
) -> (Self::Variable, Self::Variable)
unsafe fn sub_witness( &mut self, _y: &Self::Variable, _x: &Self::Variable, out_position: Self::Position, underflow_position: Self::Position ) -> (Self::Variable, Self::Variable)
x + y
and the underflow bit, storing the results in position_out
and
position_underflow
respectively. Read moresource§unsafe fn mul_signed_witness(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn mul_signed_witness( &mut self, _x: &Self::Variable, _y: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn mul_hi_lo_signed(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position_hi: Self::Position,
position_lo: Self::Position
) -> (Self::Variable, Self::Variable)
unsafe fn mul_hi_lo_signed( &mut self, _x: &Self::Variable, _y: &Self::Variable, position_hi: Self::Position, position_lo: Self::Position ) -> (Self::Variable, Self::Variable)
((x * y) >> 32, (x * y) & ((1 << 32) - 1))
, storing the results in position_hi
and position_lo
respectively. Read moresource§unsafe fn mul_hi_lo(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position_hi: Self::Position,
position_lo: Self::Position
) -> (Self::Variable, Self::Variable)
unsafe fn mul_hi_lo( &mut self, _x: &Self::Variable, _y: &Self::Variable, position_hi: Self::Position, position_lo: Self::Position ) -> (Self::Variable, Self::Variable)
((x * y) >> 32, (x * y) & ((1 << 32) - 1))
, storing the results in position_hi
and position_lo
respectively. Read moresource§unsafe fn divmod_signed(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position_quotient: Self::Position,
position_remainder: Self::Position
) -> (Self::Variable, Self::Variable)
unsafe fn divmod_signed( &mut self, _x: &Self::Variable, _y: &Self::Variable, position_quotient: Self::Position, position_remainder: Self::Position ) -> (Self::Variable, Self::Variable)
(x / y, x % y)
, storing the results in position_quotient
and
position_remainder
respectively. Read moresource§unsafe fn divmod(
&mut self,
_x: &Self::Variable,
_y: &Self::Variable,
position_quotient: Self::Position,
position_remainder: Self::Position
) -> (Self::Variable, Self::Variable)
unsafe fn divmod( &mut self, _x: &Self::Variable, _y: &Self::Variable, position_quotient: Self::Position, position_remainder: Self::Position ) -> (Self::Variable, Self::Variable)
(x / y, x % y)
, storing the results in position_quotient
and
position_remainder
respectively. Read moresource§unsafe fn count_leading_zeros(
&mut self,
_x: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn count_leading_zeros( &mut self, _x: &Self::Variable, position: Self::Position ) -> Self::Variable
source§unsafe fn count_leading_ones(
&mut self,
_x: &Self::Variable,
position: Self::Position
) -> Self::Variable
unsafe fn count_leading_ones( &mut self, _x: &Self::Variable, position: Self::Position ) -> Self::Variable
fn copy( &mut self, x: &Self::Variable, position: Self::Position ) -> Self::Variable
fn set_halted(&mut self, _flag: Self::Variable)
fn report_exit(&mut self, _exit_code: &Self::Variable)
fn request_hint_write(&mut self, _addr: &Self::Variable, _len: &Self::Variable)
source§fn assert_is_zero(&mut self, assert_equals_zero: Self::Variable)
fn assert_is_zero(&mut self, assert_equals_zero: Self::Variable)
assert_equals_zero
is 0, and add a constraint in the proof system.source§fn assert_equal(&mut self, x: Self::Variable, y: Self::Variable)
fn assert_equal(&mut self, x: Self::Variable, y: Self::Variable)
x
and y
are equal, and add a constraint in the proof system.source§fn assert_boolean(&mut self, x: Self::Variable)
fn assert_boolean(&mut self, x: Self::Variable)
x
is boolean, and add a constraint in the proof system.source§unsafe fn push_register(&mut self, idx: &Self::Variable, value: Self::Variable)
unsafe fn push_register(&mut self, idx: &Self::Variable, value: Self::Variable)
source§unsafe fn push_register_access(
&mut self,
idx: &Self::Variable,
value: Self::Variable
)
unsafe fn push_register_access( &mut self, idx: &Self::Variable, value: Self::Variable )
source§unsafe fn access_register_if(
&mut self,
idx: &Self::Variable,
old_value: &Self::Variable,
new_value: &Self::Variable,
if_is_true: &Self::Variable
)
unsafe fn access_register_if( &mut self, idx: &Self::Variable, old_value: &Self::Variable, new_value: &Self::Variable, if_is_true: &Self::Variable )
idx
, adding constraints asserting that the
old value was old_value
and that the new value will be new_value
, if if_is_true
is
true. Read morefn read_register(&mut self, idx: &Self::Variable) -> Self::Variable
source§unsafe fn access_register(
&mut self,
idx: &Self::Variable,
old_value: &Self::Variable,
new_value: &Self::Variable
)
unsafe fn access_register( &mut self, idx: &Self::Variable, old_value: &Self::Variable, new_value: &Self::Variable )
idx
, adding constraints asserting that the
old value was old_value
and that the new value will be new_value
. Read morefn write_register_if( &mut self, idx: &Self::Variable, new_value: Self::Variable, if_is_true: &Self::Variable )
fn write_register(&mut self, idx: &Self::Variable, new_value: Self::Variable)
source§unsafe fn access_memory(
&mut self,
addr: &Self::Variable,
old_value: &Self::Variable,
new_value: &Self::Variable
)
unsafe fn access_memory( &mut self, addr: &Self::Variable, old_value: &Self::Variable, new_value: &Self::Variable )
addr
, adding constraints asserting that the old value was
old_value
and that the new value will be new_value
. Read morefn read_memory(&mut self, addr: &Self::Variable) -> Self::Variable
fn write_memory(&mut self, addr: &Self::Variable, new_value: Self::Variable)
source§fn lookup_16bits(&mut self, value: &Self::Variable)
fn lookup_16bits(&mut self, value: &Self::Variable)
source§fn range_check16(&mut self, value: &Self::Variable, bits: u32)
fn range_check16(&mut self, value: &Self::Variable, bits: u32)
bits
-1 (bits <= 16).source§fn lookup_8bits(&mut self, value: &Self::Variable)
fn lookup_8bits(&mut self, value: &Self::Variable)
source§fn range_check8(&mut self, value: &Self::Variable, bits: u32)
fn range_check8(&mut self, value: &Self::Variable, bits: u32)
bits
-1 (bits <= 8).