#region Using #endregion namespace SharpCompress.Compressors.PPMd.I1 { /// /// The method used to adjust the model when the memory limit is reached. /// internal enum ModelRestorationMethod { /// /// Restart the model from scratch (this is the default). /// Restart = 0, /// /// Cut off the model (nearly twice as slow). /// CutOff = 1, /// /// Freeze the context tree (in some cases may result in poor compression). /// Freeze = 2 } }