Skip to content

Commit

Permalink
Revert "fix: Reorganize AbsorbWorkspace columns"
Browse files Browse the repository at this point in the history
This reverts commit 06415f1.
  • Loading branch information
huitseeker committed Sep 18, 2024
1 parent f0eb26d commit 268aa56
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions recursion/core/src/poseidon2_wide/columns/opcode_workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ pub struct AbsorbWorkspace<T: Copy> {
pub state_cursor: T,

/// Control flow columns.
pub hash_num: T,
pub absorb_num: T,
pub is_first_hash_row: T,
pub num_remaining_rows: T,
pub num_remaining_rows_is_zero: IsZeroOperation<T>,
Expand All @@ -88,10 +90,6 @@ pub struct AbsorbWorkspace<T: Copy> {
pub is_last_row_ending_cursor_is_seven: T,
/// Is the last of an absorb and the state is not filled up (e.g. it's ending cursor is not 7).
pub is_last_row_ending_cursor_not_seven: T,

/// Used for control flow as well.
pub hash_num: T,
pub absorb_num: T,
}

/// Methods that are "virtual" columns (e.g. will return expressions).
Expand Down

0 comments on commit 268aa56

Please sign in to comment.