CCSDS 121.0-B-3 Lossless Data Compression (Rice/Golomb coding)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

csv: rename from csvt

Drops the redundant "t" suffix. Library name, opam package, module
(Csvt -> Csv), and directory all rename in lockstep. Every downstream
reference in interop tests, libraries, and docs updated.

+3 -3
+1 -1
test/interop/libaec/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries rice csvt alcotest) 3 + (libraries rice csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/libaec/test.ml
··· 29 29 } 30 30 31 31 let vector_codec = 32 - Csvt.( 32 + Csv.( 33 33 Row.( 34 34 obj (fun name block_size bits_per_sample input_hex compressed_hex -> 35 35 { ··· 47 47 |> finish)) 48 48 49 49 let load_vectors () = 50 - match Csvt.decode_file vector_codec (trace "vectors.csv") with 50 + match Csv.decode_file vector_codec (trace "vectors.csv") with 51 51 | Ok rows -> rows 52 52 | Error e -> Alcotest.failf "CSV: %s" e 53 53