231232233234235236237238239240
public void performBenchmark() { if (EncogWorkBench .askQuestion( "Benchmark", "Would you like to benchmark Encog on this machine?\nThis process will take several minutes to complete.")) { BenchmarkDialog dialog = new BenchmarkDialog(); dialog.setVisible(true); } }
953954955956957958959
/** * Benchmark the path tracing renderer. */ public void runBenchmark() { RenderContext context = new RenderContext(options); new BenchmarkDialog(getFrame(), context); }