Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions air/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ pub fn pcs_params() -> PcsParams {
/// Compile-time constant binding the Fiat-Shamir transcript to the Miden VM AIR.
/// Must match the constants in `crates/lib/core/asm/sys/vm/mod.masm`.
pub const RELATION_DIGEST: [Felt; 4] = [
Felt::new(9663888320842941557),
Felt::new(5569923100392661778),
Felt::new(10686243500486164404),
Felt::new(9017524969302659247),
Felt::new(14932224741264950205),
Felt::new(13231194489255299102),
Felt::new(9539190039789656767),
Felt::new(16072183680659208914),
];

/// Observes PCS protocol parameters and per-proof trace height into the challenger.
Expand Down
3 changes: 2 additions & 1 deletion air/src/constraints/chiplets/bitwise.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ const NUM_BITS_PER_ROW: usize = 4;
// TAGGING IDS
// ================================================================================================

pub(super) const BITWISE_BASE_ID: usize = super::hasher::HASHER_MERKLE_ABSORB_BASE_ID + 12;
pub(super) const BITWISE_BASE_ID: usize =
super::hasher::HASHER_MERKLE_ROUTING_BASE_ID + super::hasher::HASHER_MERKLE_ROUTING_COUNT;
pub(super) const BITWISE_COUNT: usize = 17;
const BITWISE_OP_BINARY_ID: usize = BITWISE_BASE_ID;
const BITWISE_A_BITS_BINARY_BASE_ID: usize = BITWISE_BASE_ID + 2;
Expand Down
Loading
Loading