mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
18f0d7e871
Makes it easier to edit the files. So if we press 'end of line' we are really at the end of line.
24 lines
478 B
C++
24 lines
478 B
C++
/*
|
|
* PURPOSE:
|
|
* ( )
|
|
*/
|
|
#ifndef INTEG_ALGORITHMS_HH
|
|
#define INTEG_ALGORITHMS_HH
|
|
|
|
#ifndef SWIG
|
|
|
|
#include "trick/ABM_Integrator.hh"
|
|
#include "trick/Euler_Cromer_Integrator.hh"
|
|
#include "trick/Euler_Integrator.hh"
|
|
#include "trick/MM4_Integrator.hh"
|
|
#include "trick/NL2_Integrator.hh"
|
|
#include "trick/RK2_Integrator.hh"
|
|
#include "trick/RK4_Integrator.hh"
|
|
#include "trick/RKF45_Integrator.hh"
|
|
#include "trick/RKF78_Integrator.hh"
|
|
#include "trick/RKG4_Integrator.hh"
|
|
|
|
#endif
|
|
|
|
#endif
|