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

Commits on Dec 10, 2020

  1. Minor cleanups.

    pleroy committed Dec 10, 2020
    Copy the full SHA
    aff951d View commit details

Commits on Dec 14, 2020

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    8ea81bd View commit details

Commits on Dec 19, 2020

  1. Merge pull request #2820 from pleroy/Cleanups

    Minor cleanups
    pleroy authored Dec 19, 2020
    Copy the full SHA
    5608629 View commit details
Showing with 6 additions and 6 deletions.
  1. +0 −2 numerics/frequency_analysis_test.cpp
  2. +6 −4 numerics/piecewise_poisson_series.hpp
2 changes: 0 additions & 2 deletions numerics/frequency_analysis_test.cpp
Original file line number Diff line number Diff line change
@@ -403,8 +403,6 @@ TEST_F(FrequencyAnalysisTest, PoissonSeriesIncrementalProjectionNoSecular) {

std::vector<AngularFrequency> ωs;
for (int i = 3; i >= 1; --i) {
std::uniform_real_distribution<> amplitude_distribution(-(1 << i),
(1 << i));
ωs.push_back(frequency_distribution(random) * Radian / Second);
}

10 changes: 6 additions & 4 deletions numerics/piecewise_poisson_series.hpp
Original file line number Diff line number Diff line change
@@ -197,22 +197,24 @@ class PiecewisePoissonSeries {
PoissonSeries<R, ar, pr, E> const& right);
template<typename L, typename R,
int al, int pl, int ar, int pr, int aw, int pw,
template<typename, typename, int> class E, int p>
template<typename, typename, int> class E>
typename Hilbert<L, R>::InnerProductType
friend InnerProduct(PoissonSeries<L, al, pl, E> const& left,
PiecewisePoissonSeries<R, ar, pr, E> const& right,
PoissonSeries<double, aw, pw, E> const& weight,
Instant const& t_min,
Instant const& t_max);
Instant const& t_max,
std::optional<int> max_points);
template<typename L, typename R,
int al, int pl, int ar, int pr, int aw, int pw,
template<typename, typename, int> class E, int p>
template<typename, typename, int> class E>
typename Hilbert<L, R>::InnerProductType
friend InnerProduct(PiecewisePoissonSeries<L, al, pl, E> const& left,
PoissonSeries<R, ar, pr, E> const& right,
PoissonSeries<double, aw, pw, E> const& weight,
Instant const& t_min,
Instant const& t_max);
Instant const& t_max,
std::optional<int> max_points);
template<typename V, int ad, int pd,
template<typename, typename, int> class E,
typename O>