Reed-Solomon error correction over GF(2^8)
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/reedsolo/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries reed_solomon csvt alcotest) 3 + (libraries reed_solomon csv alcotest) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/reedsolo/test.ml
··· 18 18 type vector = { name : string; data : bytes; expected_codeword : bytes } 19 19 20 20 let vector_codec = 21 - Csvt.( 21 + Csv.( 22 22 Row.( 23 23 obj (fun name data_hex codeword_hex -> 24 24 { ··· 33 33 |> finish)) 34 34 35 35 let parse_vectors () = 36 - match Csvt.decode_file vector_codec (trace "vectors.csv") with 36 + match Csv.decode_file vector_codec (trace "vectors.csv") with 37 37 | Ok rows -> rows 38 38 | Error e -> Alcotest.failf "CSV: %s" e 39 39