Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion crates/sdk/src/keygen/dummy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ use crate::{
/// - trace heights ordered by AIR ID
///
/// All trace heights are rounded to the next power of two (or 0 -> 0).
pub(super) fn compute_root_proof_heights(
pub fn compute_root_proof_heights(
root_vm: &mut VirtualMachine<BabyBearPoseidon2RootEngine, NativeCpuBuilder>,
root_committed_exe: &VmCommittedExe<BabyBearPoseidon2RootConfig>,
dummy_internal_proof: &Proof<SC>,
Expand Down
2 changes: 1 addition & 1 deletion crates/sdk/src/keygen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ use crate::{
};

pub mod asm;
pub(crate) mod dummy;
pub mod dummy;
pub mod perm;
#[cfg(feature = "evm-prove")]
pub mod static_verifier;
Expand Down
2 changes: 1 addition & 1 deletion crates/sdk/src/keygen/perm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::cmp::Reverse;
use openvm_continuations::verifier::common::types::SpecialAirIds;

/// Permutation of the AIR IDs to order them by forced trace heights.
pub(crate) struct AirIdPermutation {
pub struct AirIdPermutation {
pub perm: Vec<usize>,
}

Expand Down
Loading