Skip to content

Commit

Permalink
Improvements to the NOXSolver class documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Ingimarson committed Apr 11, 2023
1 parent 3872dd9 commit bf05048
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/deal.II/trilinos/nox.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ namespace TrilinosWrappers
* // Set user functions to compute residual, to set up the Jacobian, and to
* // apply the inverse of the Jacobian.
* // Note that there are more functions that can be set.
* solver.residual = [](const auto &src, auto &dst) {...};
* solver.setup_jacobian = [](const auto &src) {...};
* solver.residual = [](const auto &u, auto &F) {...};
* solver.setup_jacobian = [](const auto &u) {...};
* solver.solve_with_jacobian =
* [](const auto &src, auto &dst, const auto) {...};
* [](const auto &u, auto &F, const auto) {...};
*
* // solver nonlinear system with solution containing the initial guess and
* // the final solution
Expand Down

0 comments on commit bf05048

Please sign in to comment.