Ejemplo n.º 1
0
        private static bool TestBase()
        {
            MDPuzzle P      = new MDPuzzle();
            bool     result = P.Bench();

            return(result);
        }
Ejemplo n.º 2
0
        public static void Test()
        {
            MDPuzzle P = new MDPuzzle();

            foreach (var iteration in Benchmark.Iterations)
            {
                using (iteration.StartMeasurement())
                {
                    P.Bench();
                }
            }
        }