Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e7aa2800f588
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e19a4b8f4074
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 20, 2020

  1. More tolerance adjustments.

    pleroy committed Sep 20, 2020
    Copy the full SHA
    eb60531 View commit details
  2. Merge pull request #2724 from pleroy/Tolerances

    More tolerance adjustments
    pleroy authored Sep 20, 2020
    Copy the full SHA
    e19a4b8 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 numerics/poisson_series_test.cpp
4 changes: 2 additions & 2 deletions numerics/poisson_series_test.cpp
Original file line number Diff line number Diff line change
@@ -236,8 +236,8 @@ TEST_F(PoissonSeriesTest, Primitive) {

EXPECT_THAT(
pb_->Integrate(t0_ + 5 * Second, t0_ + 13 * Second),
AlmostEquals(
expected_primitive(13 * Second) - expected_primitive(5 * Second), 1));
AlmostEquals(expected_primitive(13 * Second) -
expected_primitive(5 * Second), 1, 2));
}

TEST_F(PoissonSeriesTest, Dot) {