Skip to content

Commit

Permalink
xxx merge
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-iob committed May 27, 2024
1 parent 22a108c commit d227125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/LA_example_00001.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ int run_dump(int rank, int nProcs)
std::size_t globalDOF = rowOffset * blockSize + i;

// Check for absolute tolerance only
double expectedSolution = std::static_cast<double>(globalDOF + 1);
double expectedSolution = static_cast<double>(globalDOF + 1);
if (!utils::DoubleFloatingEqual()(expectedSolution - solution[i], 0.0, TOLERANCE, TOLERANCE)) {
std::stringstream message;
message << "Solutions do not match for global DOF #" << globalDOF << ".";
Expand Down

0 comments on commit d227125

Please sign in to comment.