This commit is contained in:
Daniel Lubarov 2022-07-12 14:54:36 -07:00
parent 934f1aeb7e
commit 25d429af7a

View File

@ -4,7 +4,7 @@ use std::ops::Range;
use crate::memory::{NUM_CHANNELS, VALUE_LIMBS};
// Columns for the same memory operations, ordered by (addr, timestamp).
// Columns for memory operations, ordered by (addr, timestamp).
pub(crate) const TIMESTAMP: usize = 0;
pub(crate) const IS_READ: usize = TIMESTAMP + 1;
pub(crate) const ADDR_CONTEXT: usize = IS_READ + 1;