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

Commits on May 19, 2019

  1. Replay.

    pleroy committed May 19, 2019
    Copy the full SHA
    7d5ba0a View commit details
  2. Running unpaired.

    pleroy committed May 19, 2019
    Copy the full SHA
    64fd71d View commit details
  3. Better logging.

    pleroy committed May 19, 2019
    Copy the full SHA
    330eacf View commit details
  4. Undo things.

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

Commits on May 20, 2019

  1. Merge pull request #2175 from pleroy/2173

    Some more logging
    pleroy authored May 20, 2019
    Copy the full SHA
    9cbeafc View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 ksp_plugin/pile_up.cpp
2 changes: 1 addition & 1 deletion ksp_plugin/pile_up.cpp
Original file line number Diff line number Diff line change
@@ -101,7 +101,7 @@ void PileUp::SetPartApparentDegreesOfFreedom(
bool inserted;
std::tie(it, inserted) =
apparent_part_degrees_of_freedom_.emplace(part, degrees_of_freedom);
CHECK(inserted) << "Duplicate part " << part << " at "
CHECK(inserted) << "Duplicate part " << part->ShortDebugString() << " at "
<< degrees_of_freedom;
}