コード例 #1
0
        public async Task RunTest(IBenchmark test, double factor, double density, bool symmetric)
        {
            var context = new BenchmarkContext(test);

            var progress = new Progress <int>(i => { });

            context.Factor = factor;
            await context.RunTests(density, symmetric, progress);

            UpdateResultsList(context, factor, density, symmetric);
            VisualizeTestResult(context);
        }