Skip to content

Commit

Permalink
#197, slight improvement to heapseparator output
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandernutz committed Oct 23, 2017
1 parent 5f350b4 commit 6301e5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,5 @@ public void setNoArrays(final int size) {
public void incrementEquivalenceClassCounter() {
mNoEquivalenceClasses++;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.stream.Collectors;

import de.uni_freiburg.informatik.ultimate.logic.ApplicationTerm;
import de.uni_freiburg.informatik.ultimate.logic.Sort;
Expand Down Expand Up @@ -428,6 +429,8 @@ public String toString() {

sb.append(" " + indexPartitions.size() + " partitions: " + indexPartitions);
sb.append("\n");
sb.append(" partition sizes: " + indexPartitions.stream().map(ip -> ip.indices.size()).collect(Collectors.toList()));
sb.append("\n");

return sb.toString();
}
Expand Down

0 comments on commit 6301e5e

Please sign in to comment.