Esempio n. 1
0
    private static bool TestBase()
    {
        Permutate P      = new Permutate();
        bool      result = P.Bench();

        return(result);
    }
Esempio n. 2
0
    public static void Test()
    {
        Permutate P = new Permutate();

        foreach (var iteration in Benchmark.Iterations)
        {
            using (iteration.StartMeasurement())
            {
                P.Bench();
            }
        }
    }
Esempio n. 3
0
 public static void Test()
 {
     Permutate P = new Permutate();
     foreach (var iteration in Benchmark.Iterations)
     {
         using (iteration.StartMeasurement())
         {
             P.Bench();
         }
     }
 }
Esempio n. 4
0
 private static bool TestBase()
 {
     Permutate P = new Permutate();
     bool result = P.Bench();
     return result;
 }