Estimation DLL, matrix library: removed useless end-of-lines

time-shift
Sébastien Villemot 2010-02-18 15:42:36 +01:00
parent 9ac6553776
commit 07091a6b63
2 changed files with 0 additions and 2 deletions

View File

@ -189,7 +189,6 @@ operator<<(std::ostream &out, const DecisionRules::BlanchardKahnException &e)
out << "The Blanchard-Kahn order condition is not satisfied: you have " << e.n_fwrd_vars << " forward variables for " << e.n_explosive_eigenvals << " explosive eigenvalues";
else
out << "The Blanchard Kahn rank condition is not satisfied";
out << std::endl;
return out;
}

View File

@ -68,6 +68,5 @@ operator<<(std::ostream &out, const GeneralizedSchurDecomposition::GSDException
out << "after reordering, roundoff changed values of some complex eigenvalues so that leading eigenvalues in the Generalized Schur form no longer satisfy SELCTG=TRUE. This could also be caused due to scaling";
else if (e.info == e.n + 3)
out << "reordering failed in DTGSEN";
out << std::endl;
return out;
}