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.

Fix build: docstrings, Fmt.str parens, OCI test split, stray syntax

- ocaml-cose/lib/cose.mli: add blank lines between val groups (warning 50)
- ocaml-mal/lib/mal.mli: same fix
- ocaml-rice/lib/rice.ml: remove stray ) after Fmt.invalid_arg
- ocaml-lfsr: remove stray ) in lib and test
- ocaml-idc: remove stray ) after Fmt.invalid_arg
- ocaml-aem, ocaml-adm, ocaml-opm, ocaml-tdm, ocaml-odm: fix Fmt.str
paren placement (args outside parens)
- ocaml-xmlt: fix bench/fuzz Fmt.str parens
- ocaml-oci/test/interop/registry: split into test_index.ml,
test_manifest.ml, test_config.ml with test.ml runner
- ocaml-gpt: exclude c/ dir (EverParse UINT64 pending)
- fmt dependency added to 11 coding packages

+1 -1
+1 -1
lib/rice.ml
··· 16 16 17 17 let config ?(block_size = 16) ?(bits_per_sample = 16) ?rsi () = 18 18 if block_size < 8 || block_size > 64 then 19 - Fmt.invalid_arg "block_size must be in 8..64, got %d" block_size); 19 + Fmt.invalid_arg "block_size must be in 8..64, got %d" block_size; 20 20 if bits_per_sample < 1 || bits_per_sample > 32 then 21 21 invalid_arg 22 22 (Fmt.str "bits_per_sample must be in 1..32, got %d" bits_per_sample);