brahe 1.4.0

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
Documentation
/*!
 This module contains implementation of numerical integrators.
*/

pub mod butcher_tableau;
pub mod config;
pub mod dp54;
pub mod rk4;
pub mod rkf45;
pub mod rkn1210;
pub mod traits;

pub use butcher_tableau::*;
pub use config::*;
pub use dp54::*;
pub use rk4::*;
pub use rkf45::*;
pub use rkn1210::*;
pub use traits::*;