Hi,
i'm using the following code to setup a solver
namespace LA {
using namespace dealii::LinearAlgebraTrilinos;
}
SolverControl solver_control(100, 1e-12);
LA::SolverCG::AdditionalData cgdata;
cgdata.output_solver_details = true;
LA::SolverCG solver(solver_control, cgdata);
solver.solve(system_matrix, completely_distributed_solution, system_rhs,
prec);
The solver works and outputs the correct solution. Although no output from
AztecOO does occur. I traced the passing of cgdata.output_solver_details
with gdb and it gets handed over the the solver.
When i run step-33 which uses AztecOO directly and not via the interface, i
receive the output that i expect. I also tested different AztecOO solvers
(GMRES) in my code part but that doesn't produce verbose output either.
Is this expected or suppressed somewhere? I'm basically using step-40 to
play around with different options.
What are other options to retrieve or log the residual at each timestep?
Regards
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see
https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups
"deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.