Skip to content

Commit

Permalink
Merge pull request #15870 from sebproell/double-underscore
Browse files Browse the repository at this point in the history
Don't use implementation-reserved double underscores
  • Loading branch information
tamiko committed Aug 11, 2023
2 parents 5c5409c + 6e0f2f5 commit b659a30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/deal.II/trilinos/nox.templates.h
Original file line number Diff line number Diff line change
Expand Up @@ -836,17 +836,17 @@ namespace TrilinosWrappers
else
{
// unwrap the various vectors
const VectorType &x__ = *dynamic_cast<
const VectorType &x = *dynamic_cast<
const internal::NOXWrappers::Vector<VectorType> *>(
&problem.getSolutionGroup().getX());
const VectorType &f__ = *dynamic_cast<
const VectorType &f = *dynamic_cast<
const internal::NOXWrappers::Vector<VectorType> *>(
&problem.getSolutionGroup().getF());

// forward to the user-provided function and checks
// forward to the user-provided function and check
// convergence
const auto state = this->check_iteration_status(
problem.getNumIterations(), f__.l2_norm(), x__, f__);
problem.getNumIterations(), f.l2_norm(), x, f);

// translate the returned value back to Trilinos data
// structure
Expand Down

0 comments on commit b659a30

Please sign in to comment.