Function minimize_efficient_sparse_newton

Source
pub fn minimize_efficient_sparse_newton<F, G>(
    fun: F,
    grad: G,
    x0: Array1<f64>,
    options: &EfficientSparseOptions,
) -> Result<OptimizeResult<f64>, OptimizeError>
where F: FnMut(&ArrayView1<'_, f64>) -> f64 + Sync, G: FnMut(&ArrayView1<'_, f64>) -> Array1<f64>,
Expand description

Efficient sparse Newton method with adaptive sparsity detection