scirs2-python 0.4.3

Python bindings for SciRS2 - A comprehensive scientific computing library in Rust (SciPy alternative)
Documentation
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
//! Extended Python bindings for scirs2-optimize
//!
//! Provides bindings for v0.3.0 features:
//! - Nelder-Mead simplex method
//! - L-BFGS-B quasi-Newton method
//! - Simulated Annealing
//! - Particle Swarm Optimization
//! - Dual Annealing

use pyo3::exceptions::{PyRuntimeError, PyValueError};
use pyo3::prelude::*;
use pyo3::types::{PyAny, PyDict};
use scirs2_core::ndarray::{Array1, ArrayView1};
use scirs2_numpy::IntoPyArray;

// =============================================================================
// Nelder-Mead Simplex Method
// =============================================================================

/// Minimize a scalar function using the Nelder-Mead simplex algorithm.
///
/// The Nelder-Mead method is a derivative-free optimization algorithm
/// suitable for nonsmooth or noisy objective functions.
///
/// Parameters:
///     fun: Objective function fun(x: list[float]) -> float
///     x0: Initial guess (list of floats)
///     max_iter: Maximum iterations (default: 1000)
///     tol: Convergence tolerance (default: 1e-8)
///     bounds: List of (lower, upper) bounds per parameter (default: None)
///
/// Returns:
///     Dict with 'x', 'fun', 'success', 'nit', 'nfev', 'message'
#[pyfunction]
#[pyo3(signature = (fun, x0, max_iter=1000, tol=1e-8, bounds=None))]
pub fn minimize_nelder_mead_py(
    py: Python,
    fun: &Bound<'_, PyAny>,
    x0: Vec<f64>,
    max_iter: usize,
    tol: f64,
    bounds: Option<Vec<(f64, f64)>>,
) -> PyResult<Py<PyAny>> {
    use scirs2_optimize::unconstrained::{minimize_nelder_mead, Bounds, Options};

    if x0.is_empty() {
        return Err(PyValueError::new_err("x0 must not be empty"));
    }

    let fn_obj = fun.clone().unbind();
    let obj_fn = move |x: &ArrayView1<f64>| -> f64 {
        let x_vec: Vec<f64> = x.to_vec();
        Python::attach(|py| {
            fn_obj
                .bind(py)
                .call1((x_vec,))
                .and_then(|r| r.extract::<f64>())
                .unwrap_or(f64::INFINITY)
        })
    };

    let x0_arr = Array1::from_vec(x0);

    let opt_bounds = bounds.map(|b| {
        let bound_pairs: Vec<(Option<f64>, Option<f64>)> = b
            .iter()
            .map(|&(lo, hi)| (Some(lo), Some(hi)))
            .collect();
        Bounds::new(&bound_pairs)
    });

    let options = Options {
        max_iter,
        ftol: tol,
        xtol: tol,
        gtol: tol,
        bounds: opt_bounds,
        ..Default::default()
    };

    let result = minimize_nelder_mead(obj_fn, x0_arr, &options)
        .map_err(|e| PyRuntimeError::new_err(format!("Nelder-Mead failed: {}", e)))?;

    let dict = PyDict::new(py);
    dict.set_item("x", Array1::from_vec(result.x.to_vec()).into_pyarray(py))?;
    dict.set_item("fun", result.fun.into())?;
    dict.set_item("success", result.success)?;
    dict.set_item("nit", result.nit)?;
    dict.set_item("nfev", result.function_evals)?;
    dict.set_item("message", result.message)?;

    Ok(dict.into())
}

// =============================================================================
// L-BFGS Quasi-Newton Method
// =============================================================================

/// Minimize a scalar function using L-BFGS (limited-memory BFGS).
///
/// L-BFGS is a quasi-Newton gradient-based optimizer that is efficient
/// for large-scale problems.
///
/// Parameters:
///     fun: Objective function fun(x: list[float]) -> float
///     x0: Initial guess (list of floats)
///     max_iter: Maximum iterations (default: 1000)
///     tol: Convergence tolerance (default: 1e-8)
///     bounds: List of (lower, upper) bounds per parameter (default: None)
///
/// Returns:
///     Dict with 'x', 'fun', 'success', 'nit', 'nfev', 'message'
#[pyfunction]
#[pyo3(signature = (fun, x0, max_iter=1000, tol=1e-8, bounds=None))]
pub fn minimize_lbfgsb_py(
    py: Python,
    fun: &Bound<'_, PyAny>,
    x0: Vec<f64>,
    max_iter: usize,
    tol: f64,
    bounds: Option<Vec<(f64, f64)>>,
) -> PyResult<Py<PyAny>> {
    use scirs2_optimize::unconstrained::{minimize_lbfgs, Bounds, Options};

    if x0.is_empty() {
        return Err(PyValueError::new_err("x0 must not be empty"));
    }

    let fn_obj = fun.clone().unbind();
    let obj_fn = move |x: &ArrayView1<f64>| -> f64 {
        let x_vec: Vec<f64> = x.to_vec();
        Python::attach(|py| {
            fn_obj
                .bind(py)
                .call1((x_vec,))
                .and_then(|r| r.extract::<f64>())
                .unwrap_or(f64::INFINITY)
        })
    };

    let x0_arr = Array1::from_vec(x0);

    let opt_bounds = bounds.map(|b| {
        let bound_pairs: Vec<(Option<f64>, Option<f64>)> = b
            .iter()
            .map(|&(lo, hi)| (Some(lo), Some(hi)))
            .collect();
        Bounds::new(&bound_pairs)
    });

    let options = Options {
        max_iter,
        ftol: tol,
        xtol: tol,
        gtol: tol,
        bounds: opt_bounds,
        ..Default::default()
    };

    let result = minimize_lbfgs(obj_fn, x0_arr, &options)
        .map_err(|e| PyRuntimeError::new_err(format!("L-BFGS failed: {}", e)))?;

    let dict = PyDict::new(py);
    dict.set_item("x", Array1::from_vec(result.x.to_vec()).into_pyarray(py))?;
    dict.set_item("fun", result.fun.into())?;
    dict.set_item("success", result.success)?;
    dict.set_item("nit", result.nit)?;
    dict.set_item("nfev", result.function_evals)?;
    dict.set_item("message", result.message)?;

    Ok(dict.into())
}

// =============================================================================
// Simulated Annealing
// =============================================================================

/// Minimize a function using Simulated Annealing.
///
/// A probabilistic global optimization algorithm that accepts worse solutions
/// with decreasing probability (analogous to cooling of a material).
///
/// Parameters:
///     fun: Objective function fun(x: list[float]) -> float
///     x0: Initial guess (list of floats)
///     bounds: List of (lower, upper) bounds per parameter (default: None)
///     max_iter: Maximum iterations (default: 10000)
///     initial_temp: Initial temperature (default: 100.0)
///     final_temp: Final temperature (default: 1e-3)
///     step_size: Step size for random perturbation (default: 0.1)
///     seed: Random seed (default: None)
///
/// Returns:
///     Dict with 'x', 'fun', 'success', 'nit', 'nfev'
#[pyfunction]
#[pyo3(signature = (fun, x0, bounds=None, max_iter=10000, initial_temp=100.0, final_temp=1e-3, step_size=0.1, seed=None))]
pub fn simulated_annealing_py(
    py: Python,
    fun: &Bound<'_, PyAny>,
    x0: Vec<f64>,
    bounds: Option<Vec<(f64, f64)>>,
    max_iter: usize,
    initial_temp: f64,
    final_temp: f64,
    step_size: f64,
    seed: Option<u64>,
) -> PyResult<Py<PyAny>> {
    use scirs2_optimize::global::{simulated_annealing, SimulatedAnnealingOptions};

    if x0.is_empty() {
        return Err(PyValueError::new_err("x0 must not be empty"));
    }

    let fn_obj = fun.clone().unbind();
    let obj_fn = move |x: &ArrayView1<f64>| -> f64 {
        let x_vec: Vec<f64> = x.to_vec();
        Python::attach(|py| {
            fn_obj
                .bind(py)
                .call1((x_vec,))
                .and_then(|r| r.extract::<f64>())
                .unwrap_or(f64::INFINITY)
        })
    };

    let x0_arr = Array1::from_vec(x0);

    let options = SimulatedAnnealingOptions {
        maxiter: max_iter,
        initial_temp,
        final_temp,
        step_size,
        seed,
        ..Default::default()
    };

    let result = simulated_annealing(obj_fn, x0_arr, bounds, Some(options))
        .map_err(|e| PyRuntimeError::new_err(format!("Simulated Annealing failed: {}", e)))?;

    let dict = PyDict::new(py);
    dict.set_item("x", Array1::from_vec(result.x.to_vec()).into_pyarray(py))?;
    dict.set_item("fun", result.fun)?;
    dict.set_item("success", result.success)?;
    dict.set_item("nit", result.nit)?;
    dict.set_item("nfev", result.function_evals)?;
    dict.set_item("message", result.message)?;

    Ok(dict.into())
}

// =============================================================================
// Particle Swarm Optimization
// =============================================================================

/// Minimize a function using Particle Swarm Optimization (PSO).
///
/// PSO is a population-based global optimizer inspired by bird flocking.
/// Each particle moves through the search space guided by personal and
/// swarm-wide best solutions.
///
/// Parameters:
///     fun: Objective function fun(x: list[float]) -> float
///     bounds: List of (lower, upper) bounds per parameter (required)
///     swarm_size: Number of particles (default: 30)
///     max_iter: Maximum iterations (default: 1000)
///     tol: Convergence tolerance (default: 1e-8)
///     seed: Random seed (default: None)
///
/// Returns:
///     Dict with 'x', 'fun', 'success', 'nit', 'nfev'
#[pyfunction]
#[pyo3(signature = (fun, bounds, swarm_size=30, max_iter=1000, tol=1e-8, seed=None))]
pub fn particle_swarm_py(
    py: Python,
    fun: &Bound<'_, PyAny>,
    bounds: Vec<(f64, f64)>,
    swarm_size: usize,
    max_iter: usize,
    tol: f64,
    seed: Option<u64>,
) -> PyResult<Py<PyAny>> {
    use scirs2_optimize::global::{particle_swarm, ParticleSwarmOptions};

    if bounds.is_empty() {
        return Err(PyValueError::new_err("bounds must not be empty"));
    }
    for (i, &(lb, ub)) in bounds.iter().enumerate() {
        if lb >= ub {
            return Err(PyValueError::new_err(format!(
                "bounds[{}]: lower bound {} must be < upper bound {}",
                i, lb, ub
            )));
        }
    }

    let fn_obj = fun.clone().unbind();
    let obj_fn = move |x: &ArrayView1<f64>| -> f64 {
        let x_vec: Vec<f64> = x.to_vec();
        Python::attach(|py| {
            fn_obj
                .bind(py)
                .call1((x_vec,))
                .and_then(|r| r.extract::<f64>())
                .unwrap_or(f64::INFINITY)
        })
    };

    let options = ParticleSwarmOptions {
        swarm_size,
        maxiter: max_iter,
        tol,
        seed,
        ..Default::default()
    };

    let result = particle_swarm(obj_fn, bounds, Some(options))
        .map_err(|e| PyRuntimeError::new_err(format!("Particle Swarm failed: {}", e)))?;

    let dict = PyDict::new(py);
    dict.set_item("x", Array1::from_vec(result.x.to_vec()).into_pyarray(py))?;
    dict.set_item("fun", result.fun)?;
    dict.set_item("success", result.success)?;
    dict.set_item("nit", result.nit)?;
    dict.set_item("nfev", result.function_evals)?;
    dict.set_item("message", result.message)?;

    Ok(dict.into())
}

// =============================================================================
// Dual Annealing
// =============================================================================

/// Minimize a function using Dual Annealing.
///
/// Dual Annealing combines classical Simulated Annealing with fast simulated
/// annealing to achieve better exploration and faster convergence.
///
/// Parameters:
///     fun: Objective function fun(x: list[float]) -> float
///     bounds: List of (lower, upper) bounds per parameter (required)
///     x0: Initial guess (default: None - midpoint of bounds)
///     max_iter: Maximum iterations (default: 1000)
///     seed: Random seed (default: None)
///
/// Returns:
///     Dict with 'x', 'fun', 'success', 'nit', 'nfev'
#[pyfunction]
#[pyo3(signature = (fun, bounds, x0=None, max_iter=1000, seed=None))]
pub fn dual_annealing_py(
    py: Python,
    fun: &Bound<'_, PyAny>,
    bounds: Vec<(f64, f64)>,
    x0: Option<Vec<f64>>,
    max_iter: usize,
    seed: Option<u64>,
) -> PyResult<Py<PyAny>> {
    use scirs2_optimize::global::{dual_annealing, DualAnnealingOptions};

    if bounds.is_empty() {
        return Err(PyValueError::new_err("bounds must not be empty"));
    }

    let fn_obj = fun.clone().unbind();
    let obj_fn = move |x: &ArrayView1<f64>| -> f64 {
        let x_vec: Vec<f64> = x.to_vec();
        Python::attach(|py| {
            fn_obj
                .bind(py)
                .call1((x_vec,))
                .and_then(|r| r.extract::<f64>())
                .unwrap_or(f64::INFINITY)
        })
    };

    let x0_arr = x0
        .map(Array1::from_vec)
        .unwrap_or_else(|| {
            Array1::from_vec(
                bounds.iter().map(|&(lb, ub)| (lb + ub) / 2.0).collect(),
            )
        });

    let options = DualAnnealingOptions {
        maxiter: max_iter,
        seed,
        bounds: bounds.clone(),
        ..Default::default()
    };

    let result = dual_annealing(obj_fn, x0_arr, bounds, Some(options))
        .map_err(|e| PyRuntimeError::new_err(format!("Dual Annealing failed: {}", e)))?;

    let dict = PyDict::new(py);
    dict.set_item("x", Array1::from_vec(result.x.to_vec()).into_pyarray(py))?;
    dict.set_item("fun", result.fun)?;
    dict.set_item("success", result.success)?;
    dict.set_item("nit", result.nit)?;
    dict.set_item("nfev", result.function_evals)?;
    dict.set_item("message", result.message)?;

    Ok(dict.into())
}

/// Python module registration for optimize extensions
pub fn register_optimize_ext_module(m: &Bound<'_, pyo3::PyModule>) -> pyo3::PyResult<()> {
    m.add_function(wrap_pyfunction!(minimize_nelder_mead_py, m)?)?;
    m.add_function(wrap_pyfunction!(minimize_lbfgsb_py, m)?)?;
    m.add_function(wrap_pyfunction!(simulated_annealing_py, m)?)?;
    m.add_function(wrap_pyfunction!(particle_swarm_py, m)?)?;
    m.add_function(wrap_pyfunction!(dual_annealing_py, m)?)?;

    Ok(())
}