Fix range

This commit is contained in:
Robin Salen 2023-09-15 10:57:32 -04:00
parent 66f935a748
commit ec9e619678
No known key found for this signature in database
GPG Key ID: CF63FCA518B44159

View File

@ -569,7 +569,7 @@ impl<F: RichField + Extendable<D>, const D: usize> Stark<F, D> for BytePackingSt
fn lookups(&self) -> Vec<Lookup> {
vec![Lookup {
columns: (value_bytes(0)..value_bytes(NUM_BYTES)).collect(),
columns: (value_bytes(0)..value_bytes(0) + NUM_BYTES).collect(),
table_column: RANGE_COUNTER,
frequencies_column: RC_FREQUENCIES,
}]