Skip to content

Commit

Permalink
Added time units to Algorithm.SearchResult.toString() method. Close c…
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo.rodriguez.mier authored and michaelhaaf committed Dec 2, 2015
1 parent 972a51f commit 0113d53
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 0113d53

Please sign in to comment.