Compression working without simd working

This commit is contained in:
Paul Masurel
2016-11-24 23:11:30 +09:00
parent a87c7a6400
commit b493051fe4
4 changed files with 62 additions and 22 deletions

View File

@@ -1,7 +1,7 @@
mod serialize;
mod timer;
mod vint;
mod bitpacker;
pub mod bitpacker;
pub use self::serialize::BinarySerializable;
@@ -9,7 +9,6 @@ pub use self::timer::Timing;
pub use self::timer::TimerTree;
pub use self::timer::OpenTimer;
pub use self::vint::VInt;
pub use self::bitpacker::compute_num_bits;
use std::io;