We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ed7929 commit 863f321Copy full SHA for 863f321
prover/src/prover_stages/cached_data.rs
@@ -364,7 +364,7 @@ impl ProverCachedData {
364
let circuit_sequence_bits_shift = (trace_len.trailing_zeros()
365
+ num_bits_in_timestamp_for_index_log_2)
366
- TIMESTAMP_COLUMNS_NUM_BITS;
367
- assert!((circuit_sequence << circuit_sequence_bits_shift) <= u16::MAX as usize);
+ assert!((circuit_sequence << circuit_sequence_bits_shift) < (1 << TIMESTAMP_COLUMNS_NUM_BITS));
368
369
let memory_timestamp_high_from_circuit_idx =
370
Mersenne31Field::from_u64_with_reduction(
0 commit comments