basin 0.8.0

Numerical optimization in pure Rust, with pluggable linear-algebra backends and WASM support.
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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
//! N-dimensional Styblinski-Tang function.
//!
//! `f(x) = ½·Σᵢ (xᵢ⁴ − 16·xᵢ² + 5·xᵢ)`
//!
//! Separable quartic: each coordinate contributes an identical double-well
//! `½(t⁴ − 16t² + 5t)` with a deeper minimum near `t ≈ −2.903534` and a
//! shallower one near `t ≈ +2.7`, so the surface has `2ⁿ` local minima at the
//! well combinations. The global minimum is at `xᵢ ≈ −2.903534` for all `i`,
//! value `≈ −39.16599·n`. Smooth and differentiable (analytic gradient
//! provided); separable, so coordinate-wise methods do well. Standard search
//! domain is `[−5, 5]^n`.

use core::marker::PhantomData;

use super::spec::{Dimensionality, HasSpec, ProblemSpec, Properties, Reference};
use crate::{BoxConstraints, CostFunction, Gradient};

/// Standard lower bound on each coordinate.
pub const STANDARD_LOWER: f64 = -5.0;
/// Standard upper bound on each coordinate.
pub const STANDARD_UPPER: f64 = 5.0;

/// Per-coordinate value of the global minimizer (root of `2t³ − 16t + 2.5`).
pub const MINIMIZER: f64 = -2.903534;

/// Evaluates the Styblinski-Tang function at `x`. Works for any `n >= 1`.
pub fn styblinski_tang(x: &[f64]) -> f64 {
    let mut s = 0.0;
    for &v in x.iter() {
        let v2 = v * v;
        s += v2 * v2 - 16.0 * v2 + 5.0 * v;
    }
    0.5 * s
}

/// Writes the Styblinski-Tang gradient at `x` into `out`. Both slices must have
/// the same length.
pub fn styblinski_tang_gradient(x: &[f64], out: &mut [f64]) {
    debug_assert_eq!(x.len(), out.len());
    // ∂f/∂xᵢ = ½(4xᵢ³ − 32xᵢ + 5) = 2xᵢ³ − 16xᵢ + 2.5
    for (g, &v) in out.iter_mut().zip(x.iter()) {
        *g = 2.0 * v * v * v - 16.0 * v + 2.5;
    }
}

/// Pre-wrapped Styblinski-Tang problem. Generic over the parameter backend `P`;
/// the default `P = Vec<f64>` lets you write `StyblinskiTang::default()` for the
/// common case. Backend impls (`nalgebra::DVector<f64>`, `ndarray::Array1<f64>`,
/// `faer::Col<f64>`) are gated behind their respective features.
///
/// Carries no constraint metadata. For solvers that need explicit box bounds,
/// use [`StyblinskiTangBoxed`].
pub struct StyblinskiTang<P = Vec<f64>>(PhantomData<fn() -> P>);

impl<P> StyblinskiTang<P> {
    /// Build a freshly typed problem instance. Pair with one of the
    /// backend-specific impl blocks (Vec, nalgebra, ndarray, faer).
    pub const fn new() -> Self {
        Self(PhantomData)
    }
}

impl<P> Default for StyblinskiTang<P> {
    fn default() -> Self {
        Self::new()
    }
}

/// Catalogue entry for this problem.
pub static STYBLINSKI_TANG_SPEC: ProblemSpec = ProblemSpec {
    name: "Styblinski-Tang",
    dim: Dimensionality::NDimensional { min: 1 },
    properties: Properties {
        smooth: true,
        differentiable: true,
        convex: false,
        // 2ⁿ local minima (per-coordinate double wells).
        unimodal: false,
        separable: true,
        scalable: true,
    },
    references: &[Reference {
        citation: "Styblinski & Tang (1990)",
        title: "Experiments in nonconvex optimization: Stochastic approximation with function smoothing and simulated annealing",
        source: "Neural Networks, 3(4), 467–483",
        doi: Some("10.1016/0893-6080(90)90029-K"),
        url: None,
    }],
    description: "Separable quartic double-well per coordinate: f(x) = \
                  ½·Σ(xᵢ⁴ − 16xᵢ² + 5xᵢ), with 2ⁿ local minima. Global minimum \
                  at xᵢ ≈ −2.903534 for all i, value ≈ −39.16599·n. Smooth, \
                  differentiable, separable; standard search domain [−5, 5]ⁿ.",
};

impl<P> HasSpec for StyblinskiTang<P> {
    const SPEC: &'static ProblemSpec = &STYBLINSKI_TANG_SPEC;
}

impl CostFunction for StyblinskiTang<Vec<f64>> {
    type Param = Vec<f64>;
    type Output = f64;
    type Error = std::convert::Infallible;
    fn cost(&self, x: &Vec<f64>) -> Result<f64, std::convert::Infallible> {
        Ok(styblinski_tang(x))
    }
}

impl Gradient for StyblinskiTang<Vec<f64>> {
    type Gradient = Vec<f64>;
    fn gradient(&self, x: &Vec<f64>) -> Result<Vec<f64>, std::convert::Infallible> {
        let mut out = vec![0.0; x.len()];
        styblinski_tang_gradient(x, &mut out);
        Ok(out)
    }
}

#[cfg(feature = "nalgebra")]
mod nalgebra_impl {
    use super::{styblinski_tang, styblinski_tang_gradient, StyblinskiTang};
    use crate::{CostFunction, Gradient};
    use nalgebra::DVector;

    impl CostFunction for StyblinskiTang<DVector<f64>> {
        type Param = DVector<f64>;
        type Output = f64;
        type Error = std::convert::Infallible;
        fn cost(&self, x: &DVector<f64>) -> Result<f64, std::convert::Infallible> {
            Ok(styblinski_tang(x.as_slice()))
        }
    }

    impl Gradient for StyblinskiTang<DVector<f64>> {
        type Gradient = DVector<f64>;
        fn gradient(&self, x: &DVector<f64>) -> Result<DVector<f64>, std::convert::Infallible> {
            let mut out = DVector::zeros(x.len());
            styblinski_tang_gradient(x.as_slice(), out.as_mut_slice());
            Ok(out)
        }
    }
}

#[cfg(feature = "ndarray")]
mod ndarray_impl {
    use super::{styblinski_tang, styblinski_tang_gradient, StyblinskiTang};
    use crate::{CostFunction, Gradient};
    use ndarray::Array1;

    impl CostFunction for StyblinskiTang<Array1<f64>> {
        type Param = Array1<f64>;
        type Output = f64;
        type Error = std::convert::Infallible;
        fn cost(&self, x: &Array1<f64>) -> Result<f64, std::convert::Infallible> {
            Ok(styblinski_tang(x.as_slice().expect("Array1 is contiguous")))
        }
    }

    impl Gradient for StyblinskiTang<Array1<f64>> {
        type Gradient = Array1<f64>;
        fn gradient(&self, x: &Array1<f64>) -> Result<Array1<f64>, std::convert::Infallible> {
            let mut out = Array1::zeros(x.len());
            styblinski_tang_gradient(
                x.as_slice().expect("Array1 is contiguous"),
                out.as_slice_mut().expect("Array1 is contiguous"),
            );
            Ok(out)
        }
    }
}

#[cfg(feature = "faer")]
mod faer_impl {
    use super::StyblinskiTang;
    use crate::{CostFunction, Gradient};
    use faer::Col;

    // faer's `Col` doesn't expose a `&[f64]` directly across all 0.24 APIs we
    // care about, so we evaluate elementwise here rather than routing through
    // the slice-based primitives.
    impl CostFunction for StyblinskiTang<Col<f64>> {
        type Param = Col<f64>;
        type Output = f64;
        type Error = std::convert::Infallible;
        fn cost(&self, x: &Col<f64>) -> Result<f64, std::convert::Infallible> {
            let mut s = 0.0;
            for i in 0..x.nrows() {
                let v = x[i];
                let v2 = v * v;
                s += v2 * v2 - 16.0 * v2 + 5.0 * v;
            }
            Ok(0.5 * s)
        }
    }

    impl Gradient for StyblinskiTang<Col<f64>> {
        type Gradient = Col<f64>;
        fn gradient(&self, x: &Col<f64>) -> Result<Col<f64>, std::convert::Infallible> {
            Ok(Col::<f64>::from_fn(x.nrows(), |i| {
                let v = x[i];
                2.0 * v * v * v - 16.0 * v + 2.5
            }))
        }
    }
}

// ----------------------------------------------------------------------
// Boxed (constrained) form
// ----------------------------------------------------------------------

/// Styblinski-Tang function with explicit element-wise box bounds, suitable for
/// box-constrained solvers (L-BFGS-B, projected gradient, CMA-ES variants).
/// Implements both [`CostFunction`] and [`Gradient`] plus [`BoxConstraints`],
/// routing through the same raw [`styblinski_tang`] / [`styblinski_tang_gradient`]
/// free functions as the unconstrained [`StyblinskiTang`]. The standard search
/// domain `[−5, 5]ⁿ` is the common case; build it with
/// [`StyblinskiTangBoxed::with_standard_bounds`].
pub struct StyblinskiTangBoxed<P> {
    lower: P,
    upper: P,
}

impl<P> StyblinskiTangBoxed<P> {
    /// Build a Styblinski-Tang problem with arbitrary element-wise bounds.
    /// Caller must ensure `lower[i] ≤ upper[i]` per component.
    pub fn new(lower: P, upper: P) -> Self {
        Self { lower, upper }
    }
}

impl<P> HasSpec for StyblinskiTangBoxed<P> {
    const SPEC: &'static ProblemSpec = &STYBLINSKI_TANG_SPEC;
}

impl StyblinskiTangBoxed<Vec<f64>> {
    /// Build the canonical Styblinski-Tang instance on `[−5, 5]ⁿ` for the
    /// requested dimension `n`.
    pub fn with_standard_bounds(n: usize) -> Self {
        Self {
            lower: vec![STANDARD_LOWER; n],
            upper: vec![STANDARD_UPPER; n],
        }
    }
}

impl CostFunction for StyblinskiTangBoxed<Vec<f64>> {
    type Param = Vec<f64>;
    type Output = f64;
    type Error = std::convert::Infallible;
    fn cost(&self, x: &Vec<f64>) -> Result<f64, std::convert::Infallible> {
        Ok(styblinski_tang(x))
    }
}

impl Gradient for StyblinskiTangBoxed<Vec<f64>> {
    type Gradient = Vec<f64>;
    fn gradient(&self, x: &Vec<f64>) -> Result<Vec<f64>, std::convert::Infallible> {
        let mut out = vec![0.0; x.len()];
        styblinski_tang_gradient(x, &mut out);
        Ok(out)
    }
}

impl BoxConstraints for StyblinskiTangBoxed<Vec<f64>> {
    fn lower(&self) -> &Vec<f64> {
        &self.lower
    }
    fn upper(&self) -> &Vec<f64> {
        &self.upper
    }
}

#[cfg(feature = "nalgebra")]
mod nalgebra_boxed_impl {
    use super::{
        styblinski_tang, styblinski_tang_gradient, StyblinskiTangBoxed, STANDARD_LOWER,
        STANDARD_UPPER,
    };
    use crate::{BoxConstraints, CostFunction, Gradient};
    use nalgebra::DVector;

    impl StyblinskiTangBoxed<DVector<f64>> {
        /// Build the canonical Styblinski-Tang instance on `[−5, 5]ⁿ` for the
        /// requested dimension `n`.
        pub fn with_standard_bounds(n: usize) -> Self {
            Self {
                lower: DVector::from_element(n, STANDARD_LOWER),
                upper: DVector::from_element(n, STANDARD_UPPER),
            }
        }
    }

    impl CostFunction for StyblinskiTangBoxed<DVector<f64>> {
        type Param = DVector<f64>;
        type Output = f64;
        type Error = std::convert::Infallible;
        fn cost(&self, x: &DVector<f64>) -> Result<f64, std::convert::Infallible> {
            Ok(styblinski_tang(x.as_slice()))
        }
    }

    impl Gradient for StyblinskiTangBoxed<DVector<f64>> {
        type Gradient = DVector<f64>;
        fn gradient(&self, x: &DVector<f64>) -> Result<DVector<f64>, std::convert::Infallible> {
            let mut out = DVector::zeros(x.len());
            styblinski_tang_gradient(x.as_slice(), out.as_mut_slice());
            Ok(out)
        }
    }

    impl BoxConstraints for StyblinskiTangBoxed<DVector<f64>> {
        fn lower(&self) -> &DVector<f64> {
            &self.lower
        }
        fn upper(&self) -> &DVector<f64> {
            &self.upper
        }
    }
}

#[cfg(feature = "ndarray")]
mod ndarray_boxed_impl {
    use super::{
        styblinski_tang, styblinski_tang_gradient, StyblinskiTangBoxed, STANDARD_LOWER,
        STANDARD_UPPER,
    };
    use crate::{BoxConstraints, CostFunction, Gradient};
    use ndarray::Array1;

    impl StyblinskiTangBoxed<Array1<f64>> {
        /// Build the canonical Styblinski-Tang instance on `[−5, 5]ⁿ` for the
        /// requested dimension `n`.
        pub fn with_standard_bounds(n: usize) -> Self {
            Self {
                lower: Array1::from_elem(n, STANDARD_LOWER),
                upper: Array1::from_elem(n, STANDARD_UPPER),
            }
        }
    }

    impl CostFunction for StyblinskiTangBoxed<Array1<f64>> {
        type Param = Array1<f64>;
        type Output = f64;
        type Error = std::convert::Infallible;
        fn cost(&self, x: &Array1<f64>) -> Result<f64, std::convert::Infallible> {
            Ok(styblinski_tang(x.as_slice().expect("Array1 is contiguous")))
        }
    }

    impl Gradient for StyblinskiTangBoxed<Array1<f64>> {
        type Gradient = Array1<f64>;
        fn gradient(&self, x: &Array1<f64>) -> Result<Array1<f64>, std::convert::Infallible> {
            let mut out = Array1::zeros(x.len());
            styblinski_tang_gradient(
                x.as_slice().expect("Array1 is contiguous"),
                out.as_slice_mut().expect("Array1 is contiguous"),
            );
            Ok(out)
        }
    }

    impl BoxConstraints for StyblinskiTangBoxed<Array1<f64>> {
        fn lower(&self) -> &Array1<f64> {
            &self.lower
        }
        fn upper(&self) -> &Array1<f64> {
            &self.upper
        }
    }
}

#[cfg(feature = "faer")]
mod faer_boxed_impl {
    use super::{StyblinskiTangBoxed, STANDARD_LOWER, STANDARD_UPPER};
    use crate::{BoxConstraints, CostFunction, Gradient};
    use faer::Col;

    impl StyblinskiTangBoxed<Col<f64>> {
        /// Build the canonical Styblinski-Tang instance on `[−5, 5]ⁿ` for the
        /// requested dimension `n`.
        pub fn with_standard_bounds(n: usize) -> Self {
            Self {
                lower: Col::<f64>::from_fn(n, |_| STANDARD_LOWER),
                upper: Col::<f64>::from_fn(n, |_| STANDARD_UPPER),
            }
        }
    }

    impl CostFunction for StyblinskiTangBoxed<Col<f64>> {
        type Param = Col<f64>;
        type Output = f64;
        type Error = std::convert::Infallible;
        fn cost(&self, x: &Col<f64>) -> Result<f64, std::convert::Infallible> {
            let mut s = 0.0;
            for i in 0..x.nrows() {
                let v = x[i];
                let v2 = v * v;
                s += v2 * v2 - 16.0 * v2 + 5.0 * v;
            }
            Ok(0.5 * s)
        }
    }

    impl Gradient for StyblinskiTangBoxed<Col<f64>> {
        type Gradient = Col<f64>;
        fn gradient(&self, x: &Col<f64>) -> Result<Col<f64>, std::convert::Infallible> {
            Ok(Col::<f64>::from_fn(x.nrows(), |i| {
                let v = x[i];
                2.0 * v * v * v - 16.0 * v + 2.5
            }))
        }
    }

    impl BoxConstraints for StyblinskiTangBoxed<Col<f64>> {
        fn lower(&self) -> &Col<f64> {
            &self.lower
        }
        fn upper(&self) -> &Col<f64> {
            &self.upper
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn value_zero_at_origin() {
        assert!(styblinski_tang(&[0.0]).abs() < 1e-12);
        assert!(styblinski_tang(&[0.0, 0.0, 0.0]).abs() < 1e-12);
    }

    #[test]
    fn known_value_at_ones() {
        // Per coordinate: ½(1 − 16 + 5) = −5. For n = 2 that's −10.
        assert!((styblinski_tang(&[1.0, 1.0]) - (-10.0)).abs() < 1e-12);
    }

    #[test]
    fn minimum_value_at_documented_optimum() {
        // f(MINIMIZER, …) ≈ −39.16599·n.
        let x = [MINIMIZER, MINIMIZER];
        let f = styblinski_tang(&x);
        assert!((f - (-39.16599 * 2.0)).abs() < 1e-2, "got {f}");
    }

    #[test]
    fn gradient_matches_finite_difference() {
        let x = [-1.2, 0.7, 2.3];
        let mut g = vec![0.0; x.len()];
        styblinski_tang_gradient(&x, &mut g);
        let h = 1e-6;
        for i in 0..x.len() {
            let mut xp = x;
            let mut xm = x;
            xp[i] += h;
            xm[i] -= h;
            let fd = (styblinski_tang(&xp) - styblinski_tang(&xm)) / (2.0 * h);
            assert!((g[i] - fd).abs() < 1e-5, "i={i}, g={}, fd={fd}", g[i]);
        }
    }

    #[test]
    fn spec_is_wired_up_via_has_spec_trait() {
        let spec = <StyblinskiTang<Vec<f64>> as HasSpec>::SPEC;
        assert_eq!(spec.name, "Styblinski-Tang");
        assert!(spec.properties.smooth);
        assert!(spec.properties.separable);
        assert!(spec.properties.scalable);
        assert!(matches!(spec.dim, Dimensionality::NDimensional { min: 1 }));
        assert!(!spec.references.is_empty());
    }

    #[test]
    fn boxed_form_exposes_standard_bounds_and_shares_math() {
        let p = StyblinskiTangBoxed::<Vec<f64>>::with_standard_bounds(3);
        let lo = <StyblinskiTangBoxed<Vec<f64>> as BoxConstraints>::lower(&p);
        let hi = <StyblinskiTangBoxed<Vec<f64>> as BoxConstraints>::upper(&p);
        assert!(lo.iter().all(|&v| v == STANDARD_LOWER));
        assert!(hi.iter().all(|&v| v == STANDARD_UPPER));

        let x = vec![0.3, -0.7, 1.2];
        assert!((p.cost(&x).unwrap() - styblinski_tang(&x)).abs() < 1e-12);
        let mut g = vec![0.0; x.len()];
        styblinski_tang_gradient(&x, &mut g);
        assert_eq!(p.gradient(&x).unwrap(), g);
    }

    #[test]
    fn boxed_form_reuses_spec() {
        let spec = <StyblinskiTangBoxed<Vec<f64>> as HasSpec>::SPEC;
        assert!(core::ptr::eq(spec, &STYBLINSKI_TANG_SPEC));
    }
}