Skip to content

Commit

Permalink
simplify debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Aug 19, 2016
1 parent fd662f4 commit f2462b9
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions templates/mass_eigenstates.cpp.in
Expand Up @@ -293,13 +293,8 @@ int CLASSNAME::solve_ewsb_iteratively()
const std::size_t number_of_solvers = sizeof(solvers)/sizeof(*solvers);
const auto x_init(ewsb_initial_guess());

#ifdef ENABLE_VERBOSE
std::cout << "Solving EWSB equations ...\n"
"\tInitial guess: x_init =";
for (std::size_t i = 0; i < number_of_ewsb_equations; ++i)
std::cout << ' ' << x_init[i];
std::cout << '\n';
#endif
VERBOSE_MSG("Solving EWSB equations ...");
VERBOSE_MSG("\tInitial guess: x_init = " << x_init.transpose());

int status;
for (std::size_t i = 0; i < number_of_solvers; ++i) {
Expand Down

0 comments on commit f2462b9

Please sign in to comment.