Files
SabreTools.Models/Compression/Quantum/ModelSymbol.cs
2023-09-22 21:24:05 -04:00

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; }
}
}