Skip to content

Commit

Permalink
minor formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Hughes committed Oct 17, 2024
1 parent a6d8414 commit a933508
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/functionality/FunctionalityTestHelper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace ReSolve
class FunctionalityTestHelper
{
public:
FunctionalityTestHelper( ReSolve::real_type tol_init = constants::DEFAULT_TOL );
FunctionalityTestHelper(ReSolve::real_type tol_init = constants::DEFAULT_TOL);
~FunctionalityTestHelper();

int checkRefactorizationResult(ReSolve::matrix::Csr& A,
Expand Down
2 changes: 1 addition & 1 deletion tests/functionality/testSysRefactor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ int main(int argc, char *argv[])
error_sum += status;

// larger tolerance than default 1e-17 because iterative refinement is not applied here
ReSolve::tests::FunctionalityTestHelper testhelper( 1e-12 );
ReSolve::tests::FunctionalityTestHelper testhelper(1e-12);

error_sum +=
testhelper.checkRefactorizationResult(*A, *vec_rhs, *vec_x, solver, "first matrix");
Expand Down

0 comments on commit a933508

Please sign in to comment.