Skip to content

Commit

Permalink
Handle windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nkoenig committed Apr 7, 2020
1 parent dcb420e commit 88be53b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/GaussMarkovProcess_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ TEST(GaussMarkovProcessTest, Noise)
// Hand-tuned values that are repeatable given the seed set above.
#ifdef __APPLE__
EXPECT_NEAR(-4.960893, gmp.Value(), 1e-4);
#elif _MSC_VER
EXPECT_NEAR(-4.960893, gmp.Value(), 1e-4);
#else
EXPECT_NEAR(-4.118732, gmp.Value(), 1e-4);
#endif
Expand Down

0 comments on commit 88be53b

Please sign in to comment.