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