Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jialinding committed May 8, 2018
1 parent 37fc303 commit b0ac270
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public List<APLExplanationResult> explain(
}
}
}
pruneTime[curOrder - 1] = (System.nanoTime() - orderStart) / 1.e6;
pruneTime[curOrder - 1] = (System.nanoTime() - start) / 1.e6;

start = System.nanoTime();
HashMap<IntSetAsArray, double[]> curSavedAggregates = new HashMap<>(curOrderSaved.size());
Expand All @@ -166,7 +166,7 @@ public List<APLExplanationResult> explain(
singleNext.add(i.getFirst());
}
}
saveTime[curOrder - 1] = (System.nanoTime() - orderStart) / 1.e6;
saveTime[curOrder - 1] = (System.nanoTime() - start) / 1.e6;
explainTime[curOrder - 1] = (System.nanoTime() - orderStart) / 1.e6;
if (smartStopping && curOrderNext.isEmpty()) {
break;
Expand Down

0 comments on commit b0ac270

Please sign in to comment.