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: 2d6c53ed51c1
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 05ab9360db7f
Choose a head ref
  • 19 commits
  • 8 files changed
  • 1 contributor

Commits on Dec 20, 2018

  1. geopotential formatting

    eggrobin committed Dec 20, 2018
    Copy the full SHA
    af7d634 View commit details
  2. Copy the full SHA
    0ff290a View commit details
  3. protobuf does not like +

    eggrobin committed Dec 20, 2018
    Copy the full SHA
    01157bf View commit details
  4. max degree 50

    eggrobin committed Dec 20, 2018
    Copy the full SHA
    a5edeb1 View commit details
  5. extend numerical tables

    eggrobin committed Dec 20, 2018
    Copy the full SHA
    977887f View commit details
  6. citation

    eggrobin committed Dec 20, 2018
    Copy the full SHA
    e4c4912 View commit details
  7. Copy the full SHA
    58980f1 View commit details

Commits on Dec 21, 2018

  1. Copy the full SHA
    55ab979 View commit details

Commits on Dec 27, 2018

  1. Copy the full SHA
    b47aedd View commit details
  2. Copy the full SHA
    67aa345 View commit details
  3. find the right maximum

    eggrobin committed Dec 27, 2018
    Copy the full SHA
    f13d5b1 View commit details
  4. Copy the full SHA
    f9e53a0 View commit details
  5. Copy the full SHA
    543ea5a View commit details

Commits on Dec 28, 2018

  1. another test

    eggrobin committed Dec 28, 2018
    Copy the full SHA
    aff201a View commit details
  2. using

    eggrobin committed Dec 28, 2018
    Copy the full SHA
    5633cf1 View commit details
  3. Copy the full SHA
    3c9b02f View commit details
  4. textproto formatting

    eggrobin committed Dec 28, 2018
    Copy the full SHA
    e4e98f1 View commit details
  5. errors

    eggrobin committed Dec 28, 2018
    Copy the full SHA
    82903e2 View commit details
  6. Merge pull request #2032 from eggrobin/selenopotential

    Selenopotential to degree and order 50
    eggrobin authored Dec 28, 2018
    Copy the full SHA
    05ab936 View commit details
6 changes: 3 additions & 3 deletions astronomy/geodesy_test.cpp
Original file line number Diff line number Diff line change
@@ -271,20 +271,20 @@ TEST_F(GeodesyTest, LAGEOS2) {
primary_actual_final_dof.position()),
AnyOf(IsNear(237 * Metre), // Linux.
IsNear(28 * Metre), // No FMA.
IsNear(8.9 * Metre))); // FMA.
IsNear(8.0 * Metre))); // FMA.
// Angular error at the geocentre.
EXPECT_THAT(AngleBetween(secondary_actual_final_dof.position() - ITRS::origin,
primary_actual_final_dof.position() - ITRS::origin),
AnyOf(IsNear(4.0 * ArcSecond), // Linux.
IsNear(0.47 * ArcSecond), // No FMA.
IsNear(0.15 * ArcSecond))); // FMA.
IsNear(0.13 * ArcSecond))); // FMA.
// Radial error at the geocentre.
EXPECT_THAT(AbsoluteError(
(secondary_actual_final_dof.position() - ITRS::origin).Norm(),
(primary_actual_final_dof.position() - ITRS::origin).Norm()),
AnyOf(IsNear(99 * Centi(Metre)), // Linux.
IsNear(11 * Centi(Metre)), // No FMA.
IsNear(3.3 * Centi(Metre)))); // FMA.
IsNear(1.2 * Centi(Metre)))); // FMA.
}

#endif
Loading