Skip to content

Commit 3c42a42

Browse files
committed
Printing
1 parent ccece2d commit 3c42a42

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

highs/ipm/hipo/factorhighs/Symbolic.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,12 @@ void Symbolic::print(const Log& log, bool verbose) const {
8383
log_stream << textline("Critical ops:") << sci(critops_, 0, 1) << '\n';
8484
log_stream << textline("Max tree speedup:") << fix(flops_ / critops_, 0, 2)
8585
<< '\n';
86+
log_stream << textline("Number of tasks:")
87+
<< integer(tree_splitting_solve_.size(), 0) << '\n';
88+
log_stream << textline("Number of single nodes:") << integer(num_single_, 0)
89+
<< '\n';
90+
log_stream << textline("Number of subtrees:") << integer(num_subtrees_, 0)
91+
<< '\n';
8692
log_stream << textline("Artificial nz:") << sci(artificial_nz_, 0, 1)
8793
<< '\n';
8894
log_stream << textline("Artificial ops:") << sci(artificial_ops_, 0, 1)

0 commit comments

Comments
 (0)