118119120121122123124125126127
watch.stop(); System.out.println(watch.elapsedMillis() + "ms taken."); System.out.println("==PARALLEL=="); watch = new Stopwatch().start(); engine.doAnalysisParallel(); watch.stop(); System.out.println(watch.elapsedMillis() + "ms taken."); } }
121122123124125126127128129130