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: 9cbeafc6403b
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 71cb0ebb47ea
Choose a head ref

Commits on Apr 21, 2019

  1. Copy the full SHA
    9188db1 View commit details
  2. Copy the full SHA
    c5c5d24 View commit details
  3. Copy the full SHA
    e901262 View commit details

Commits on May 5, 2019

  1. Copy the full SHA
    6bba4a9 View commit details
  2. Copy the full SHA
    104d367 View commit details

Commits on May 12, 2019

  1. Copy the full SHA
    abc3dd5 View commit details

Commits on May 14, 2019

  1. Factor out RecomputeSegments.

    pleroy committed May 14, 2019
    Copy the full SHA
    6b27137 View commit details

Commits on May 15, 2019

  1. Copy the manoeuvres.

    pleroy committed May 15, 2019
    Copy the full SHA
    f587c82 View commit details
  2. Copy the full SHA
    df26d16 View commit details

Commits on May 18, 2019

  1. Merge.

    pleroy committed May 18, 2019
    Copy the full SHA
    87f2d79 View commit details
  2. Make it compile.

    pleroy committed May 18, 2019
    Copy the full SHA
    a250738 View commit details
  3. Fix bugs.

    pleroy committed May 18, 2019
    Copy the full SHA
    7719c3e View commit details
  4. Copy the full SHA
    5e2bd29 View commit details

Commits on May 19, 2019

  1. Copy the full SHA
    96e3385 View commit details
  2. Minor renamings.

    pleroy committed May 19, 2019
    Copy the full SHA
    b624224 View commit details
  3. A new hope.

    pleroy committed May 19, 2019
    Copy the full SHA
    de43129 View commit details
  4. Update Replace.

    pleroy committed May 19, 2019
    Copy the full SHA
    20984a2 View commit details
  5. Copy the full SHA
    15ad838 View commit details
  6. New selector.

    pleroy committed May 19, 2019
    Copy the full SHA
    56b88ac View commit details
  7. Make the test compile.

    pleroy committed May 19, 2019
    Copy the full SHA
    3cb8eef View commit details
  8. Copy the full SHA
    1409e20 View commit details
  9. Fix the singularity test.

    pleroy committed May 19, 2019
    Copy the full SHA
    76e30ca View commit details
  10. Fix Append test.

    pleroy committed May 19, 2019
    Copy the full SHA
    84dc03a View commit details
  11. Fix more tests.

    pleroy committed May 19, 2019
    Copy the full SHA
    3ac5eda View commit details
  12. All FlightPlan tests passing.

    pleroy committed May 19, 2019
    Copy the full SHA
    3f646ee View commit details
  13. Fix the interface test.

    pleroy committed May 19, 2019
    Copy the full SHA
    bc4b726 View commit details
  14. Copy the full SHA
    ea60b97 View commit details
  15. Copy the full SHA
    3ecea8b View commit details
  16. Lint.

    pleroy committed May 19, 2019
    Copy the full SHA
    de1573b View commit details

Commits on May 20, 2019

  1. Copy the full SHA
    3b9282f View commit details
  2. Cleanup.

    pleroy committed May 20, 2019
    Copy the full SHA
    670dd5c View commit details
  3. Copy the full SHA
    6b6a1a9 View commit details
  4. Typo.

    pleroy committed May 20, 2019
    Copy the full SHA
    9b3a3ee View commit details

Commits on May 21, 2019

  1. After egg's review.

    pleroy committed May 21, 2019
    Copy the full SHA
    4ae1e55 View commit details
  2. Merge pull request #2174 from pleroy/Replace

    Changes to the FlightPlan API
    pleroy authored May 21, 2019
    Copy the full SHA
    71cb0eb View commit details
16 changes: 8 additions & 8 deletions journal/player_test.cpp
Original file line number Diff line number Diff line change
@@ -88,7 +88,7 @@ TEST_F(PlayerTest, DISABLED_Debug) {
// An example of how journaling may be used for debugging. You must set
// |path| and fill the |method_in| and |method_out_return| protocol buffers.
std::string path =
R"(C:\Program Files\Kerbal Space Program\1.6.1\glog\Principia\JOURNAL.20190511-140327)"; // NOLINT
R"(C:\Program Files\Kerbal Space Program\1.6.1\glog\Principia\JOURNAL.20190520-205625)"; // NOLINT
Player player(path);
int count = 0;
while (player.Play()) {
@@ -106,20 +106,20 @@ TEST_F(PlayerTest, DISABLED_Debug) {
serialization::Method method_in;
{
auto* extension = method_in.MutableExtension(
serialization::FutureWaitForVesselToCatchUp::extension);
serialization::FlightPlanGetManoeuvreFrenetTrihedron::extension);
auto* in = extension->mutable_in();
in->set_plugin(222367552);
in->set_future(6209463568);
in->set_plugin(2634828656);
in->set_vessel_guid("88d741d3-600c-4f4b-9567-8109cecab2bd");
in->set_index(0);
}
serialization::Method method_out_return;
{
auto* extension = method_out_return.MutableExtension(
serialization::FutureWaitForVesselToCatchUp::extension);
serialization::FlightPlanGetManoeuvreFrenetTrihedron::extension);
}
LOG(ERROR) << "Running unpaired method:\n" << method_in.DebugString();
CHECK(RunIfAppropriate<FutureWaitForVesselToCatchUp>(method_in,
method_out_return,
player));
CHECK(RunIfAppropriate<FlightPlanGetManoeuvreFrenetTrihedron>(
method_in, method_out_return, player));
#endif
}

Loading