[][src]Function peroxide::numerical::ode::solve_with_condition

pub fn solve_with_condition<F, T, G>(
    f: F,
    init_value: Vec<f64>,
    param_range: (T, T),
    step: f64,
    method: ODEMethod,
    cond: G
) -> Matrix where
    F: Fn(Dual, Vec<Dual>) -> Vec<Dual> + Copy,
    T: Into<f64> + Copy,
    G: Fn(Vec<f64>) -> bool + Copy