コード例 #1
0
 public PerformanceCsvFormat()
 {
     _descriptiveFormatter = new DescriptiveCsvFormat {Precision = _precision};
 }
コード例 #2
0
 public DescriptiveResult(FormatResultsBase formatter, int precision)
     : base(formatter, precision)
 {
 }
コード例 #3
0
 public PerformancePrintFormat()
 {
     descriptiveFormatter = new DescriptivePrintFormat {Precision = _precision};
 }
コード例 #4
0
 public PerformanceCsvFormat()
 {
     _descriptiveFormatter = new DescriptiveCsvFormat {
         Precision = _precision
     };
 }
コード例 #5
0
 public PerformanceResult(FormatResultsBase formatter, int precision)
     : base(formatter, precision)
 {
 }
コード例 #6
0
 public ComparisonResult(FormatResultsBase f, int p)
     : base(f, p)
 {
 }
コード例 #7
0
 public PerformancePrintFormat()
 {
     descriptiveFormatter = new DescriptivePrintFormat {
         Precision = _precision
     };
 }
コード例 #8
0
 protected ResultBase(FormatResultsBase f, int p)
 {
     Formatter = f;
     Formatter.Precision = p;
 }
コード例 #9
0
 public ReliabilityResult(FormatResultsBase formatter, int precision)
     : base(formatter, precision)
 {
 }