namespace SabreTools.Models.Compression.Quantum { /// public sealed class Model { public int Entries { get; set; } /// /// All the models are initialized with the symbols in symbol /// order in the table, and with every symbol in the table /// having a frequency of 1 /// public ModelSymbol?[]? Symbols { get; set; } /// /// The initial total frequency is equal to the number of entries /// in the table /// public int TotalFrequency { get; set; } /// The initial time_to_reorder value is 4 public int TimeToReorder { get; set; } } }