using System; namespace Unity.PerformanceTesting.Statistics { /// /// Outlier removal mode. /// public enum OutlierMode { /// /// Do not remove outliers. /// DontRemove, /// /// Remove outliers using the Tukey fences method. /// Remove } }