1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//! Raw FFI bindings and safe RAII wrappers for REBOUND.
//!
//! REBOUND is a C N-body integration library. This crate exposes the
//! underlying C API as:
//!
//! - [`ffi`]: raw `extern "C"` bindings to REBOUND functions + types.
//! - [`Simulation`]: thin, allocation-owning RAII wrapper around
//! `reb_simulation`.
//! - [`IntegratorConfig`] + [`Ias15AdaptiveMode`]: ergonomic types for IAS15
//! timestep + adaptive-mode configuration.
//!
//! This crate contains no domain logic (ephemerides, orbital elements,
//! observatories, etc.) and no dependencies on ASSIST. The companion
//! `libassist-sys` crate layers ASSIST's ephemeris-driven forces on top.
pub use ;
/// Errors produced by the low-level REBOUND FFI wrappers.
///
/// Covers REBOUND integration-exit conditions. Higher-level errors (ASSIST
/// ephemeris failures, light-time convergence, etc.) live in downstream
/// crates that wrap this type via `#[from]`.
pub type Result<T> = Result;