Skip to content

Commit

Permalink
Merge pull request #143 from alpha-asp/fix_113
Browse files Browse the repository at this point in the history
Fix error in performance output messages.
  • Loading branch information
AntoniusW authored Sep 2, 2018
2 parents 4d003ca + d607621 commit b543685
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ protected boolean tryAdvance(Consumer<? super AnswerSet> action) {
decisionsLast = currentNumberOfChoices;
float overallTime = (currentTime - timeOnEntry) / 1000.0f;
float decisionsPerSec = currentNumberOfChoices / overallTime;
LOGGER.info("Overall performance: {} decision in {}s or {} decisions per sec. Overall replayed assignments: {}.", currentNumberOfChoices, currentTime - timeOnEntry, decisionsPerSec, ((TrailAssignment)assignment).replayCounter);
LOGGER.info("Overall performance: {} decisions in {}s or {} decisions per sec. Overall replayed assignments: {}.", currentNumberOfChoices, overallTime, decisionsPerSec, ((TrailAssignment)assignment).replayCounter);
}
ConflictCause conflictCause = store.propagate();
didChange |= store.didPropagate();
Expand Down

0 comments on commit b543685

Please sign in to comment.