Expand description
Symbol frequency distribution models.
Structs§
- Adaptive
Linear Model - Adaptive model that uses a simple array for cumulative freq and simple, but slow linear algorithms for operations.
- Adaptive
Tree Model - Adaptive model that uses a Binary Indexed Tree for storing cumulative frequencies.
- Parameters
- Model parameters that specifies the common property of the models.
Traits§
- Model
- Trait for the probability models behind arithmetic coding. Possible implementations may include static models with fixed probabilities or and adaptive model that continuously updates cumulative frequencies.