Skip to content

Commit

Permalink
amend; level_sizer
Browse files Browse the repository at this point in the history
  • Loading branch information
beling committed Sep 29, 2024
1 parent 111666b commit e52164a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion csf/src/fp/cmap/conf.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::fp::level_size_chooser::OptimalLevelSize;
use crate::fp::level_sizer::OptimalLevelSize;
use ph::{BuildDefaultSeededHasher, BuildSeededHasher};
use crate::fp::collision_solver::{CollisionSolverBuilder, LoMemAcceptEquals};
use crate::coding::BuildMinimumRedundancy;
Expand Down
2 changes: 1 addition & 1 deletion csf/src/fp/cmap/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::hash::Hash;
use binout::{VByte, AsIs, Serializer};
use minimum_redundancy::DecodingResult;
use bitm::{BitAccess, BitVec, Rank};
use crate::fp::level_size_chooser::LevelSizer;
use crate::fp::level_sizer::LevelSizer;

use ph::utils::{ArrayWithRank, read_bits};
use ph::{BuildDefaultSeededHasher, BuildSeededHasher, stats, utils};
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion csf/src/fp/map/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::hash::Hash;
use bitm::{BitAccess, Rank};

use super::kvset::KVSet;
pub use super::level_size_chooser::LevelSizer;
pub use super::level_sizer::LevelSizer;
use ph::{BuildDefaultSeededHasher, BuildSeededHasher, utils, stats, utils::{ArrayWithRank, read_bits}};
use std::collections::HashMap;
use std::io;
Expand Down
4 changes: 2 additions & 2 deletions csf/src/fp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ mod gocmap;
pub use gocmap::{GOCMap, GOCMapConf};
pub use ph::fmph::{GroupSize, SeedSize, TwoToPowerBits, TwoToPowerBitsStatic, Bits, Bits8, GOConf};

pub mod level_size_chooser;
pub use level_size_chooser::{LevelSizer, ProportionalLevelSize, OptimalLevelSize, ResizedLevel};
pub mod level_sizer;
pub use level_sizer::{LevelSizer, ProportionalLevelSize, OptimalLevelSize, ResizedLevel};

pub mod collision_solver;
pub use collision_solver::{CollisionSolver, CollisionSolverBuilder, IsLossless, LoMemAcceptEquals};
Expand Down

0 comments on commit e52164a

Please sign in to comment.