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

Commits on May 30, 2021

  1. Remove misleading inline

    eggrobin committed May 30, 2021
    Copy the full SHA
    25764be View commit details
  2. Merge pull request #3018 from eggrobin/fma-polynomials

    Remove misleading FORCE_INLINE
    eggrobin authored May 30, 2021
    Copy the full SHA
    53ce160 View commit details
Showing with 3 additions and 4 deletions.
  1. +3 −4 numerics/polynomial.hpp
7 changes: 3 additions & 4 deletions numerics/polynomial.hpp
Original file line number Diff line number Diff line change
@@ -126,10 +126,9 @@ class PolynomialInMonomialBasis : public Polynomial<Value_, Argument_> {
explicit operator PolynomialInMonomialBasis<
Value, Argument, higher_degree_, HigherEvaluator>() const;

FORCE_INLINE(inline) Value
operator()(Argument const& argument) const override;
FORCE_INLINE(inline) Derivative<Value, Argument>
EvaluateDerivative(Argument const& argument) const override;
Value operator()(Argument const& argument) const override;
Derivative<Value, Argument> EvaluateDerivative(
Argument const& argument) const override;

constexpr int degree() const override;
bool is_zero() const override;