Process() public method

Perform the benchmark. Returns the total amount of time for all of the benchmarks. Returns the final score. The lower the better for a score.
public Process ( ) : String
return String
 public void BackgroundThread()
 {
     EncogBenchmark benchmark = new EncogBenchmark(this);
     string result = benchmark.Process();
     Dispatcher.BeginInvoke(() => this.List.Items.Add("Final benchmark score(lower is better): " + result));
 }
Beispiel #2
0
 public void Execute(IExampleInterface app)
 {
     var mark = new EncogBenchmark(this);
     Console.WriteLine("Benchmark result: " + mark.Process());
 }