Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
lroberts36 committed Nov 27, 2024
1 parent 95ed5b2 commit d71062e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solvers/cg_solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class CGSolver : public SolverBase {
[&](CGSolver *solver, Mesh *pmesh) {
Real rms_res = std::sqrt(solver->residual.val / pmesh->GetTotalCells());
if (Globals::my_rank == 0 && solver->params_.print_per_step)
printf("\t%i %e\n", solver->iter_counter, rms_res);
printf("\t%i %e\n", solver->iter_counter, rms_res);
return TaskStatus::complete;
},
this, pmesh);
Expand Down

0 comments on commit d71062e

Please sign in to comment.