pub fn solve_rkf45(
f: CModule,
x_span: Tensor,
y0: Tensor,
rtol: Tensor,
atol: Tensor,
min_step: Tensor,
safety_factor: f64,
) -> Result<(Tensor, Tensor)>Expand description
Solves ODE using Runge-Kutta-Fehlberg 45 adaptive method