Skip to content

Commit ae4520b

Browse files
committed
make apis pub
1 parent c33fda6 commit ae4520b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/stark-backend/src/interaction/fri_log_up.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ pub fn eval_fri_log_up_phase<AB>(
566566
///
567567
/// ## Panics
568568
/// If `max_constraint_degree > 0` and there are interactions that cannot fit in a singleton chunk.
569-
pub(crate) fn find_interaction_chunks<F: Field>(
569+
pub fn find_interaction_chunks<F: Field>(
570570
interactions: &[SymbolicInteraction<F>],
571571
max_constraint_degree: usize,
572572
) -> FriLogUpProvingKey {

crates/stark-backend/src/interaction/rap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use crate::{
1010
};
1111

1212
/// Used internally to select RAP phase evaluation function.
13-
pub(crate) trait InteractionPhaseAirBuilder: InteractionBuilder {
13+
pub trait InteractionPhaseAirBuilder: InteractionBuilder {
1414
fn finalize_interactions(&mut self);
1515
/// The symbolic interactions **must** correspond to the `InteractionBuilder::all_interactions` function.
1616
fn symbolic_interactions(&self) -> Vec<SymbolicInteraction<<Self as AirBuilder>::F>>;

0 commit comments

Comments
 (0)