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

Commits on Sep 21, 2021

  1. Copy the full SHA
    2e1a073 View commit details

Commits on Sep 22, 2021

  1. Merge pull request #3127 from pleroy/Clang

    Fix an error found by Clang
    pleroy authored Sep 22, 2021
    Copy the full SHA
    c67f71b View commit details

Commits on Sep 26, 2021

  1. Convert a test for parts.

    pleroy committed Sep 26, 2021
    Copy the full SHA
    4628683 View commit details
  2. Fix all the tests.

    pleroy committed Sep 26, 2021
    Copy the full SHA
    bf87de5 View commit details
  3. Cleanup.

    pleroy committed Sep 26, 2021
    Copy the full SHA
    8752074 View commit details
  4. Merge.

    pleroy committed Sep 26, 2021
    Copy the full SHA
    8d1a795 View commit details
  5. Copy the full SHA
    7238a8e View commit details
  6. Merge pull request #3128 from pleroy/VesselTest

    Change the tests for Vessel to use trajectory factories
    pleroy authored Sep 26, 2021
    Copy the full SHA
    9ff0a64 View commit details
  7. Copy the full SHA
    225d8f5 View commit details
  8. Fix bugs and lint.

    pleroy committed Sep 26, 2021
    Copy the full SHA
    fba3bab View commit details
  9. Merge pull request #3129 from pleroy/VesselTest2

    Bring improved Vessel test to Entwurf and change the test for checkpointing
    pleroy authored Sep 26, 2021
    Copy the full SHA
    ac34225 View commit details
4 changes: 2 additions & 2 deletions ksp_plugin/interface.cpp
Original file line number Diff line number Diff line change
@@ -169,9 +169,9 @@ Ephemeris<Barycentric>::AdaptiveStepParameters MakeAdaptiveStepParameters(
DiscreteTrajectory<Barycentric>::DownsamplingParameters
MakeDownsamplingParameters(
ConfigurationDownsamplingParameters const& parameters) {
return DiscreteTrajectory<Barycentric>::DownsamplingParameters(
return DiscreteTrajectory<Barycentric>::DownsamplingParameters{
std::stoi(parameters.max_dense_intervals),
ParseQuantity<Length>(parameters.tolerance));
ParseQuantity<Length>(parameters.tolerance)};
}

Ephemeris<Barycentric>::FixedStepParameters MakeFixedStepParameters(
Loading