selectors can stay pub(crate)

This commit is contained in:
Sebastien La Duca 2022-08-02 17:12:27 -04:00
parent 243bc09293
commit 8c515b4f2c
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ pub mod public_input;
pub mod random_access;
pub mod reducing;
pub mod reducing_extension;
pub mod selectors;
pub(crate) mod selectors;
pub mod util;
// Can't use #[cfg(test)] here because it needs to be visible to other crates.

View File

@ -10,7 +10,7 @@ use crate::hash::hash_types::RichField;
pub(crate) const UNUSED_SELECTOR: usize = u32::MAX as usize;
#[derive(Debug, Clone)]
pub struct SelectorsInfo {
pub(crate) struct SelectorsInfo {
pub(crate) selector_indices: Vec<usize>,
pub(crate) groups: Vec<Range<usize>>,
}