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: a69de59f1bca
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 838e08c745e9
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 28, 2020

  1. Copy the full SHA
    a8d10c0 View commit details
  2. More tolerances.

    pleroy committed Oct 28, 2020

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    693ed08 View commit details
  3. Merge pull request #2777 from pleroy/Tolerances

    Adjust tolerances for Linux/macOS
    pleroy authored Oct 28, 2020
    Copy the full SHA
    838e08c View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 numerics/frequency_analysis_test.cpp
6 changes: 3 additions & 3 deletions numerics/frequency_analysis_test.cpp
Original file line number Diff line number Diff line change
@@ -431,7 +431,7 @@ TEST_F(FrequencyAnalysisTest, PoissonSeriesIncrementalProjectionNoSecular) {
? AllOf(Gt(6.7e-2 * Metre), Lt(7.9 * Metre))
: ω_index == 2
? AllOf(Gt(1.1e-4 * Metre), Lt(9.7e-1 * Metre))
: AllOf(Gt(1.4e-16 * Metre), Lt(2.8e-13 * Metre)))
: AllOf(Gt(2.1e-17 * Metre), Lt(6.6e-13 * Metre)))
<< ω_index;
}
if (ω_index == ωs.size()) {
@@ -453,7 +453,7 @@ TEST_F(FrequencyAnalysisTest, PoissonSeriesIncrementalProjectionNoSecular) {
EXPECT_THAT(
projection4(t_min + i * (t_max - t_min) / 100),
RelativeErrorFrom(series.value()(t_min + i * (t_max - t_min) / 100),
AllOf(Ge(0), Lt(1.4e-11))));
AllOf(Ge(0), Lt(2.0e-11))));
}
}

@@ -496,7 +496,7 @@ TEST_F(FrequencyAnalysisTest, PoissonSeriesIncrementalProjectionSecular) {
? AllOf(Gt(3.3e-2 * Metre), Lt(3.6 * Metre))
: ω_index == 3
? AllOf(Gt(7.5e-3 * Metre), Lt(5.4 * Metre))
: AllOf(Gt(1.7e-16 * Metre),
: AllOf(Gt(9.6e-17 * Metre),
Lt(8.7e-14 * Metre)))
<< ω_index;
}