Skip to content

Commit

Permalink
increase Chebyshev test tolerance: address failures on x86 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mefuller committed Jan 19, 2022
1 parent 5f5de2a commit 593e21c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/kinetics/kineticsFromYaml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ TEST(Reaction, ChebyshevFromYaml)
EXPECT_EQ(rate->data().nColumns(), (size_t) 4);
EXPECT_DOUBLE_EQ(rate->Tmax(), 3000);
EXPECT_DOUBLE_EQ(rate->Pmin(), 1000);
EXPECT_NEAR(rate->updateRC(std::log(T), 1.0/T), 130512.2773948636, 1e-9);
EXPECT_NEAR(rate->updateRC(std::log(T), 1.0/T), 130512.2773948636, 2e-9);
}

TEST(Reaction, BlowersMaselFromYaml)
Expand Down

0 comments on commit 593e21c

Please sign in to comment.