Final State Compression
This is a tiny full Rust implementation of the FSE algorihm.
This library does not content any foreign tools like histogram computation, data iterators, chunk creation from files or euristic optimization.
This library shouldn't be used in production without a carefull check from yourself. This is principally a repository for studying the data compression with some arithmetic.
However, these public functions seems to work correctly:
/// Symbol index contains the position for each symbol in the histogram.
/// You should care about your alphabet outside the function.
;
;
;
License
Since the FSE algorithm is public and the FB implementation too, the current Rust interpretation should be under the MIT license.