Skip to content

Commit 8fcad10

Browse files
committed
patoh: don't output percent
1 parent 00e103d commit 8fcad10

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/run_multiconstraint_patoh.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ void print_info(int k, const std::vector<int>& partweights, int nconst) {
180180
}
181181
std::cout << '\n';
182182
}
183-
std::cout << " Max. imbalance (percent): ";
183+
std::cout << " Max. imbalance: ";
184184
for (int j = 0; j < nconst; ++j)
185-
std::cout << std::fixed << std::setprecision(3) << 100.0 * maxi[j] << ' ';
185+
std::cout << std::fixed << std::setprecision(4) << maxi[j] << ' ';
186186
std::cout << "\n------------------------------------------------------------\n";
187187
}
188188

0 commit comments

Comments
 (0)