]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/polynomial.hh
Grand fixcc.py run on all .hh .cc files.
[lilypond.git] / flower / include / polynomial.hh
index 6959dc40bfddbad1d68ce09976bb8637a516cf11..f575be35fd5a4ec5a0b17d2cfc2f0232360429f3 100644 (file)
 #include "arithmetic-operator.hh"
 #include "real.hh"
 
-/// structure for a polynomial in one var. 
+/// structure for a polynomial in one var.
 struct Polynomial
 {
   /// degree of polynomial
   int degree ()const;
 
-  /// coefficients 
+  /// coefficients
   vector<Real> coefs_;
 
   // leading coef
@@ -62,7 +62,7 @@ struct Polynomial
   void operator *= (Polynomial const &p2);
   void operator -= (Polynomial const &p2);
   Polynomial (Real a, Real b = 0.0);
-  Polynomial (){}
+  Polynomial () {}
   void set_negate (const Polynomial &src);
 
   /// take the derivative