mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 05:45:34 +00:00
15 lines
532 B
C#
15 lines
532 B
C#
namespace SabreTools.Models.Compression.Quantum
|
|
{
|
|
/// <see href="http://www.russotto.net/quantumcomp.html"/>
|
|
public sealed class ModelSymbol
|
|
{
|
|
public ushort Symbol { get; set; }
|
|
|
|
/// <summary>
|
|
/// The cumulative frequency is the frequency of all the symbols
|
|
/// which are at a higher index in the table than that symbol —
|
|
/// thus the last entry in the table has a cumulative frequency of 0.
|
|
/// </summary>
|
|
public ushort CumulativeFrequency { get; set; }
|
|
}
|
|
} |