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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/// Represents a function defining an initial value problem (IVP) in the context of differential equations.
/// i.e. Second order ODE function -> xddot = f(t, x, xdot)
///
/// # Type Parameters
/// * `D`: The dimensionality of the system, indicating the size of the state and derivative vectors.
/// Represents an integrator for solving initial value problems (IVPs) in differential equations.
///
/// # Type Parameters
/// * `F`: The function type that implements the `IvpFunction` trait, defining the system of differential equations.
/// * `D`: The dimensionality of the system, indicating the size of the state and derivative vectors.
/// Performs the integration of a system of differential equations over a specified time interval.
///
/// # Type Parameters
/// * `I`: The integrator type, which must implement the `Integrator` trait.
/// * `F`: The function type that implements the `IvpFunction` trait, defining the system of differential equations.
/// * `D`: The dimensionality of the system, indicating the size of the state and derivative vectors.
///
/// # Arguments
/// * `integrator`: A mutable reference to the integrator that performs the numerical integration.
/// * `f`: A reference to the function that defines the system of differential equations.
/// * `x0`: The initial state vector of the system.
/// * `xdot0`: The initial derivative vector of the system.
/// * `t0`: The initial time.
/// * `tf`: The final time for the integration.
///
/// # Returns
/// * `(Vec<f64>, Vec<[f64; D]>, Vec<[f64; D]>)`: A tuple containing three vectors:
/// - A vector of time points.
/// - A vector of state vectors at each time point.
/// - A vector of derivative vectors at each time point.