Skip to content

Commit

Permalink
Added time units to Algorithm.SearchResult.toString() method. Close #139
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo.rodriguez.mier committed Aug 25, 2015
1 parent dd33889 commit 2c6db9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public String toString() {
final String ls = System.getProperty("line.separator");
StringBuilder builder = new StringBuilder();
builder.append("Total solutions: ").append(goalNodes.size()).append(ls);
builder.append("Total time: ").append(getElapsed()).append(ls);
builder.append("Total time: ").append(getElapsed()).append(" ms").append(ls);
builder.append("Total number of iterations: ").append(getIterations()).append(ls);
// Take solutions
int solution=1;
Expand Down

0 comments on commit 2c6db9a

Please sign in to comment.