Skip to content

Commit

Permalink
Fix swapped absolute tolerance values
Browse files Browse the repository at this point in the history
  • Loading branch information
corykinney committed Jan 30, 2023
1 parent 5ec0b3d commit 01123ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/thermo/consistency.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ class TestConsistency : public testing::TestWithParam<std::tuple<AnyMap, AnyMap>
atol = setup.getDouble("atol", 1e-5);
rtol_fd = setup.getDouble("rtol_fd", 1e-6);
atol_v = setup.getDouble("atol_v", 1e-11);
atol_c = setup.getDouble("atol_c", 1e-12);
atol_e = setup.getDouble("atol_e", 1e-8);
atol_c = setup.getDouble("atol_c", 1e-8);
atol_e = setup.getDouble("atol_e", 1e-12);

phase = cache[key];
phase->setState(state);
Expand Down

0 comments on commit 01123ce

Please sign in to comment.