diff options
author | Malfurious <m@lfurio.us> | 2021-11-25 01:16:18 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2021-11-25 01:16:18 -0500 |
commit | 30686a8e693f2d61bda933d1370b6ea50b8bf0a6 (patch) | |
tree | 91f3ed277465f1a7426acea31c7074faf1d1a32f /src/main.rs | |
parent | 16ac36edf6250e1b8f414adec0fccccf5770c247 (diff) | |
download | SorensenCompression-30686a8e693f2d61bda933d1370b6ea50b8bf0a6.tar.gz SorensenCompression-30686a8e693f2d61bda933d1370b6ea50b8bf0a6.zip |
Remove redundant rust code
This logic has already been reimplemented in C, or is otherwise
unneeded.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/main.rs b/src/main.rs index bfed16b..5197cbe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,34 +1,3 @@ -mod iter; -mod load_file; -mod demo_hash; - -use num::BigInt; -use num::bigint::Sign; - -fn vec_pop_cnt(v: &Vec<u8>) -> u32 -{ - let mut cnt = 0; - - for x in v - { - cnt += x.count_ones(); - } - - cnt -} - -fn pop_cnt_vec(c: u32) -> Vec<u8> -{ - let mut v = Vec::new(); - v.push(2u8.pow(c % 8) - 1); - for _ in 0..(c / 8) - { - v.push(0xff); - } - - v -} - fn main() { /* "Compression" setup */ |