mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-16 20:24:48 -06:00
Removed some standard output messages (profiling branch)
This commit is contained in:
parent
ce6e21c0d6
commit
20b87da8d5
@ -934,10 +934,8 @@ namespace Opm
|
||||
x_new[1] = (x_new[0]>0) ? x_new[1]/x_new[0] : 0.0;
|
||||
check_interval(x_new, x_min, x_max);
|
||||
res_eq.computeResidual(x_new, res_new, mc, ff);
|
||||
std::cout << " " << res_new[0] << " " << res_new[1] << std::endl;
|
||||
alpha=alpha/2.0;
|
||||
lin_it=lin_it+1;
|
||||
std::cout << "Linear iterations" << lin_it << " " << norm(res_new) << std::endl;
|
||||
}
|
||||
if (lin_it>=max_lin_it) {
|
||||
successfull_newton_step = false;
|
||||
@ -949,7 +947,6 @@ namespace Opm
|
||||
iters_used_split += 1;
|
||||
successfull_newton_step = true;;
|
||||
}
|
||||
std::cout << "Nonlinear " << iters_used_split << " " << norm(res) << std::endl;
|
||||
}
|
||||
|
||||
if ((iters_used_split >= max_iters_split) && (norm(res) > tol_)) {
|
||||
|
Loading…
Reference in New Issue
Block a user