Reed-Solomon error correction over GF(2^8)
0
fork

Configure Feed

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

claude: complete Err -> Error module rename across call sites

Follow up to the module rename: update the remaining callers that
still referenced [Err] (library [claude.ml{,i}], [client.ml], the test
driver [test.ml]), and fix one stray [^ e] string concatenation in
hermest's CLI that needed [Json.Error.to_string e] now that
[Json.of_string] yields a structured error.

+1 -3
-1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (modules fuzz fuzz_reed_solomon) 4 3 (libraries reed-solomon alcobar)) 5 4 6 5 (rule
+1 -1
lib/gf256.mli
··· 64 64 65 65 (** Functor building a GF(2^8) field from the given configuration. Tables are 66 66 computed once when the module is instantiated. *) 67 - module Make (C : Config) : S 67 + module Make (_ : Config) : S
-1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (modules test test_reed_solomon test_gf256) 4 3 (libraries reed_solomon alcotest))