File: nbody.h

package info (click to toggle)
gfan 0.5%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,348 kB
  • ctags: 5,683
  • sloc: cpp: 39,675; makefile: 454; sh: 1
file content (10 lines) | stat: -rw-r--r-- 610 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#ifndef NBODY_H_INCLUDED
#include "polynomial.h"

PolynomialSet AlbouyChencinerEquations(int N, bool withMasses, bool symmetric=true, bool withSVariables=false, bool saturate=true);
PolynomialSet DziobekEquations(PolynomialRing const &r, int N, bool withMasses, bool withSVariables=false, bool saturate=true);
PolynomialSet nbodyDeterminants(PolynomialRing const &r, int N, bool withMasses, int determinantSize);
Polynomial massEquation(PolynomialRing const &r, int N, bool withMasses, bool saturate=true);
PolynomialSet SEquations(PolynomialRing const &r, int N, bool withMasses, bool saturate=true);

#endif