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

            return(result);
        }
Example #2
0
        public static void Test()
        {
            Permutate P = new Permutate();

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