Skip to content

Commit 1da657f

Browse files
committed
setting convergence condition, but it's overridden
1 parent 415b81f commit 1da657f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

resolve/LinSolverIterativeFGMRES.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ namespace ReSolve
141141
initial_residual_norm_ = rnorm;
142142
while (outer_flag)
143143
{
144+
std::cout <<"Convergence condition: " << conv_cond_ << std::endl;
144145
// if (rnorm / bnorm <= ReSolve::constants::MACHINE_EPSILON) // addressed comment to check if residual is small enough
145146
// {
146147
// io::Logger::misc() << "Early exit, relative norm of residual "

0 commit comments

Comments
 (0)