Function parallel_evaluate_batch

Source
pub fn parallel_evaluate_batch<F>(
    f: F,
    points: &[Array1<f64>],
    options: &ParallelOptions,
) -> Vec<f64>
where F: Fn(&ArrayView1<'_, f64>) -> f64 + Sync,
Expand description

Parallel evaluation of multiple points

Evaluates the objective function at multiple points in parallel.