GCS: Fix report view formating and duplicated endline

This commit is contained in:
Abdullah Tahiri
2018-03-05 14:43:04 +01:00
committed by wmayer
parent d75be15f64
commit 9e901dbc59

View File

@@ -170,7 +170,7 @@ void LogString(std::string str)
std::stringstream stream;
#endif
stream << str << " =" << std::endl;
stream << str << std::endl;
#ifdef _DEBUG_TO_FILE
stream.flush();
@@ -3809,7 +3809,7 @@ int System::diagnose(Algorithm alg)
<< ", Pivot Threshold: " << qrpivotThreshold
<< ", Params: " << paramsNum
<< ", Constr: " << constrNum
<< ", Rank: " << rank << "\n";
<< ", Rank: " << rank;
}
else {
stream
@@ -3819,7 +3819,7 @@ int System::diagnose(Algorithm alg)
#ifdef EIGEN_VECTORIZE
<< ", Vectorization: On"
#endif
<< ", Empty Sketch, nothing to solve" << "\n";
<< ", Empty Sketch, nothing to solve";
}
const std::string tmp = stream.str();