File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,9 @@ Int Basis::Factorize() {
129129
130130 std::stringstream h_logging_stream;
131131 h_logging_stream.str (std::string ());
132- h_logging_stream << " Start factorization " << num_factorizations_+1 << " : nonzeros in basis = " << basis_num_nz << " \n " ;
132+ h_logging_stream <<
133+ " Start factorization " << num_factorizations_+1 <<
134+ " : nonzeros in basis = " << basis_num_nz << " \n " ;
133135 control_.hIntervalLog (h_logging_stream);
134136
135137 Int err = 0 ; // return code
@@ -159,7 +161,9 @@ Int Basis::Factorize() {
159161 time_factorize_ += timer.Elapsed ();
160162 factorization_is_fresh_ = true ;
161163 h_logging_stream.str (std::string ());
162- h_logging_stream << " Finish factorization: " << num_factorizations_ << " : fill factor = " << lu_->fill_factor () << " \n " ;
164+ h_logging_stream <<
165+ " Finish factorization " << num_factorizations_ <<
166+ " : fill factor = " << lu_->fill_factor () << " \n " ;
163167 control_.hIntervalLog (h_logging_stream);
164168 return err;
165169}
You can’t perform that action at this time.
0 commit comments