scirs2-optimize 0.4.2

Optimization module for SciRS2 (scirs2-optimize)
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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
//! SR1 (Symmetric Rank-1) quasi-Newton optimizer with trust-region globalization.
//!
//! Implements the SR1 update rule and a limited-memory variant (LSR1) using
//! a compact representation. Trust-region subproblem is solved by bisection
//! on the Levenberg–Marquardt regularization parameter λ.
//!
//! ## References
//!
//! - Byrd, R.H., Khalfan, H.F., Schnabel, R.B. (1994).
//!   "Analysis of a symmetric rank-one trust region method."
//!   SIAM J. Optim. 4(1): 1–21.
//! - Conn, A.R., Gould, N.I.M., Toint, Ph.L. (1991).
//!   "Convergence of quasi-Newton matrices generated by the symmetric
//!   rank one update." Math. Program. 50: 177–195.

use super::types::{OptResult, Sr1Config};
use crate::error::OptimizeError;

// ─── Dense matrix utilities (small n) ────────────────────────────────────────

/// Matrix-vector product y = A x (row-major, n×n dense matrix).
fn mat_vec(a: &[f64], x: &[f64], n: usize) -> Vec<f64> {
    (0..n)
        .map(|i| (0..n).map(|j| a[i * n + j] * x[j]).sum::<f64>())
        .collect()
}

/// Symmetric matrix-vector product for dense upper triangle (stored as full row-major).
fn sym_mat_vec(a: &[f64], x: &[f64], n: usize) -> Vec<f64> {
    mat_vec(a, x, n)
}

/// Add outer product s · v^T + v · s^T scaled by `scale` to dense matrix `a` (in-place).
fn add_outer(a: &mut Vec<f64>, u: &[f64], v: &[f64], n: usize, scale: f64) {
    for i in 0..n {
        for j in 0..n {
            a[i * n + j] += scale * u[i] * v[j];
        }
    }
}

// ─── SR1 update ──────────────────────────────────────────────────────────────

/// Apply one SR1 update to the dense Hessian approximation B (n×n, row-major).
///
/// Update rule:
///   B_{k+1} = B_k + (y - B_k s)(y - B_k s)^T / ((y - B_k s)^T s)
///
/// Skip condition (Byrd et al.): skip if
///   |(y - B s)^T s| < skip_tol · ‖s‖ · ‖y - B s‖
pub fn sr1_update_dense(b: &mut Vec<f64>, s: &[f64], y: &[f64], n: usize, skip_tol: f64) -> bool {
    let bs = sym_mat_vec(b, s, n);
    let r: Vec<f64> = (0..n).map(|i| y[i] - bs[i]).collect(); // r = y - B s

    let rs: f64 = r.iter().zip(s.iter()).map(|(ri, si)| ri * si).sum(); // r^T s
    let r_norm = r.iter().map(|ri| ri * ri).sum::<f64>().sqrt();
    let s_norm = s.iter().map(|si| si * si).sum::<f64>().sqrt();

    // Skip if r is essentially zero (y ≈ Bs, no new curvature information) OR
    // if the denominator is too small relative to ‖s‖·‖r‖ (Byrd et al. skip condition).
    if r_norm < 1e-14 || rs.abs() < skip_tol * s_norm * r_norm {
        return false; // skip update
    }

    let inv_rs = 1.0 / rs;
    add_outer(b, &r, &r, n, inv_rs);
    true
}

// ─── Limited-memory SR1 ───────────────────────────────────────────────────────

/// Limited-memory SR1: compute H^{-1} g approximation from stored (s, y) pairs.
///
/// Uses the compact representation of Byrd et al. (1994).  For small m the
/// n×m matrices Ψ = [s₁ … s_m] and the m×m upper triangular L are computed
/// explicitly.
///
/// For each stored pair:
///   r_i = s_i − H₀ y_i   (where H₀ = gamma * I)
///
/// The update is:
///   H^{-1} g ≈ H₀ g + Ψ (Ψ^T Y)^{-1} Ψ^T g
///
/// where Ψ = S − H₀ Y and the solve is done via Cholesky-like forward/back
/// substitution on the symmetric matrix Ψ^T Y.
pub fn lsr1_hv_product(
    g: &[f64],
    s_hist: &[Vec<f64>],
    y_hist: &[Vec<f64>],
    gamma: f64,
) -> Vec<f64> {
    let n = g.len();
    let m = s_hist.len();

    // H₀ g = gamma * g
    let mut r: Vec<f64> = g.iter().map(|gi| gamma * gi).collect();

    if m == 0 {
        return r;
    }

    // Build Ψ = S - H₀ Y  (each column: s_i - gamma * y_i)
    let psi: Vec<Vec<f64>> = (0..m)
        .map(|i| {
            (0..n)
                .map(|j| s_hist[i][j] - gamma * y_hist[i][j])
                .collect::<Vec<f64>>()
        })
        .collect();

    // Build M = Ψ^T Y  (m×m matrix)
    let mut big_m = vec![0.0_f64; m * m];
    for i in 0..m {
        for j in 0..m {
            big_m[i * m + j] = psi[i]
                .iter()
                .zip(y_hist[j].iter())
                .map(|(pi, yj)| pi * yj)
                .sum();
        }
    }

    // Ψ^T g  (m-vector)
    let psi_g: Vec<f64> = (0..m)
        .map(|i| psi[i].iter().zip(g.iter()).map(|(pi, gi)| pi * gi).sum())
        .collect();

    // Solve M v = Ψ^T g via Gaussian elimination (small system)
    let v = match gaussian_solve(&big_m, &psi_g, m) {
        Some(x) => x,
        None => return r, // singular — use H₀ g
    };

    // r += Ψ v
    for i in 0..m {
        for j in 0..n {
            r[j] += psi[i][j] * v[i];
        }
    }

    r
}

/// Gaussian elimination with partial pivoting to solve A x = b (m×m).
fn gaussian_solve(a: &[f64], b: &[f64], m: usize) -> Option<Vec<f64>> {
    let mut aug = vec![0.0_f64; m * (m + 1)];
    for i in 0..m {
        for j in 0..m {
            aug[i * (m + 1) + j] = a[i * m + j];
        }
        aug[i * (m + 1) + m] = b[i];
    }

    for col in 0..m {
        // Find pivot
        let mut max_row = col;
        let mut max_val = aug[col * (m + 1) + col].abs();
        for row in (col + 1)..m {
            let v = aug[row * (m + 1) + col].abs();
            if v > max_val {
                max_val = v;
                max_row = row;
            }
        }
        if max_val < 1e-14 {
            return None; // singular
        }
        // Swap rows
        if max_row != col {
            for j in 0..=(m) {
                aug.swap(col * (m + 1) + j, max_row * (m + 1) + j);
            }
        }
        // Eliminate
        let pivot = aug[col * (m + 1) + col];
        for row in (col + 1)..m {
            let factor = aug[row * (m + 1) + col] / pivot;
            for j in col..=(m) {
                let val = aug[col * (m + 1) + j] * factor;
                aug[row * (m + 1) + j] -= val;
            }
        }
    }

    // Back substitution
    let mut x = vec![0.0_f64; m];
    for i in (0..m).rev() {
        let rhs = aug[i * (m + 1) + m];
        let diag = aug[i * (m + 1) + i];
        if diag.abs() < 1e-14 {
            return None;
        }
        let sum: f64 = ((i + 1)..m).map(|j| aug[i * (m + 1) + j] * x[j]).sum();
        x[i] = (rhs - sum) / diag;
    }
    Some(x)
}

// ─── Trust-region subproblem ──────────────────────────────────────────────────

/// Solve the trust-region subproblem: minimise g^T d + 0.5 d^T B d  s.t. ‖d‖ ≤ δ.
///
/// Uses bisection on the Levenberg–Marquardt regularization λ:
///   (B + λI) d = −g,  with λ chosen so that ‖d(λ)‖ ≤ δ.
///
/// If B + λI is not positive-definite for the initial λ, λ is increased.
pub fn trust_region_step(b: &[f64], g: &[f64], delta: f64, n: usize) -> Vec<f64> {
    // Try Newton step (λ = 0)
    let b_vec = b.to_vec();
    if let Some(d) = solve_linear_system(&b_vec, g, n) {
        let d_neg: Vec<f64> = d.iter().map(|di| -di).collect();
        let dnorm = d_neg.iter().map(|di| di * di).sum::<f64>().sqrt();
        if dnorm <= delta {
            return d_neg; // unconstrained step is within trust region
        }
    }

    // Bisect on λ to find the boundary step
    let mut lam_lo = 0.0_f64;
    let mut lam_hi = {
        // Upper bound: λ ≥ ‖g‖/δ − σ_min(B)
        let g_norm = g.iter().map(|gi| gi * gi).sum::<f64>().sqrt();
        g_norm / delta
            + b.iter()
                .enumerate()
                .filter(|(idx, _)| idx % (n + 1) == 0)
                .map(|(_, v)| v.abs())
                .fold(0.0_f64, f64::max)
    };
    lam_hi = lam_hi.max(1.0);

    for _ in 0..50 {
        let lam_mid = 0.5 * (lam_lo + lam_hi);
        let mut b_reg = b_vec.clone();
        for i in 0..n {
            b_reg[i * n + i] += lam_mid;
        }
        if let Some(d) = solve_linear_system(&b_reg, g, n) {
            let d_neg: Vec<f64> = d.iter().map(|di| -di).collect();
            let dnorm = d_neg.iter().map(|di| di * di).sum::<f64>().sqrt();
            if dnorm <= delta {
                lam_hi = lam_mid;
            } else {
                lam_lo = lam_mid;
            }
            if (lam_hi - lam_lo).abs() < 1e-12 * (1.0 + lam_mid) {
                return d_neg;
            }
        } else {
            lam_lo = lam_mid;
        }
    }

    // Fall back to steepest descent scaled to trust radius
    let g_norm = g.iter().map(|gi| gi * gi).sum::<f64>().sqrt();
    if g_norm < 1e-14 {
        return vec![0.0; n];
    }
    g.iter().map(|gi| -gi * delta / g_norm).collect()
}

/// Solve A x = b for a dense n×n system (same as gaussian_solve).
fn solve_linear_system(a: &[f64], b: &[f64], n: usize) -> Option<Vec<f64>> {
    gaussian_solve(a, b, n)
}

// ─── SR1 optimizer ───────────────────────────────────────────────────────────

/// SR1 optimizer with limited-memory Hessian and trust-region globalization.
pub struct Sr1Optimizer {
    /// Algorithm configuration.
    pub config: Sr1Config,
}

impl Sr1Optimizer {
    /// Create with given configuration.
    pub fn new(config: Sr1Config) -> Self {
        Self { config }
    }

    /// Create with default configuration.
    pub fn default_config() -> Self {
        Self {
            config: Sr1Config::default(),
        }
    }

    /// Minimize `f_and_g` (unconstrained) using the SR1 method.
    ///
    /// Uses a limited-memory Hessian approximation and a trust-region
    /// framework for globalization.
    ///
    /// # Arguments
    /// * `f_and_g` — closure returning (f(x), ∇f(x))
    /// * `x0` — starting point
    pub fn minimize<F>(&self, f_and_g: &F, x0: &[f64]) -> Result<OptResult, OptimizeError>
    where
        F: Fn(&[f64]) -> (f64, Vec<f64>),
    {
        let n = x0.len();
        let cfg = &self.config;
        let m = cfg.m;

        let mut x = x0.to_vec();
        let (mut f_val, mut g) = f_and_g(&x);

        // Limited-memory storage
        let mut s_hist: Vec<Vec<f64>> = Vec::with_capacity(m);
        let mut y_hist: Vec<Vec<f64>> = Vec::with_capacity(m);

        // Hessian scaling parameter
        let mut gamma = 1.0_f64;

        // Trust-region radius
        let mut delta = cfg.delta_init;

        let mut n_iter = 0usize;
        let mut converged = false;

        for iter in 0..cfg.max_iter {
            n_iter = iter;
            let g_norm = g.iter().map(|gi| gi * gi).sum::<f64>().sqrt();
            if g_norm < cfg.tol {
                converged = true;
                break;
            }

            // Compute descent direction using limited-memory SR1 inverse Hessian
            let hg = lsr1_hv_product(&g, &s_hist, &y_hist, gamma);

            // Normalize and scale to trust-region radius
            let hg_norm = hg.iter().map(|v| v * v).sum::<f64>().sqrt();
            let d: Vec<f64> = if hg_norm > delta {
                hg.iter().map(|v| -v * delta / hg_norm).collect()
            } else {
                hg.iter().map(|v| -v).collect()
            };

            // Check if proposed step is a descent direction
            let slope: f64 = g.iter().zip(d.iter()).map(|(gi, di)| gi * di).sum();
            let d = if slope >= 0.0 {
                // Fallback to steepest descent
                let gn = g_norm.max(1e-14);
                let sc = delta / gn;
                g.iter().map(|gi| -gi * sc).collect::<Vec<f64>>()
            } else {
                d
            };

            let x_new: Vec<f64> = x.iter().zip(d.iter()).map(|(xi, di)| xi + di).collect();
            let (f_new, g_new) = f_and_g(&x_new);

            // Actual reduction
            let actual_red = f_val - f_new;
            // Predicted reduction: -g^T d - 0.5 d^T B d ≈ -g^T d (simplified)
            let gd: f64 = g.iter().zip(d.iter()).map(|(gi, di)| gi * di).sum();
            let predicted_red = -gd; // simplified (ignores second-order term)

            let rho = if predicted_red.abs() < 1e-14 {
                0.0
            } else {
                actual_red / predicted_red
            };

            // Accept or reject step
            if rho > cfg.eta {
                // Update curvature pair
                let s: Vec<f64> = d.clone();
                let y: Vec<f64> = (0..n).map(|i| g_new[i] - g[i]).collect();

                // SR1 skip condition
                let bs = lsr1_hv_product(&s, &s_hist, &y_hist, 1.0 / gamma);
                let r: Vec<f64> = (0..n).map(|i| y[i] - bs[i]).collect();
                let rs: f64 = r.iter().zip(s.iter()).map(|(ri, si)| ri * si).sum();
                let r_norm = r.iter().map(|ri| ri * ri).sum::<f64>().sqrt();
                let s_norm = s.iter().map(|si| si * si).sum::<f64>().sqrt();

                if rs.abs() >= cfg.skip_tol * s_norm * r_norm {
                    let sy: f64 = s.iter().zip(y.iter()).map(|(si, yi)| si * yi).sum();
                    let yy: f64 = y.iter().map(|yi| yi * yi).sum::<f64>();
                    if yy > 1e-14 {
                        gamma = sy / yy; // update scaling
                    }
                    if s_hist.len() == m {
                        s_hist.remove(0);
                        y_hist.remove(0);
                    }
                    s_hist.push(s);
                    y_hist.push(y);
                }

                x = x_new;
                f_val = f_new;
                g = g_new;
            }

            // Update trust-region radius
            if rho < 0.25 {
                delta *= 0.25;
            } else if rho > 0.75
                && (d.iter().map(|di| di * di).sum::<f64>().sqrt() - delta).abs() < 1e-10
            {
                delta = (2.0 * delta).min(cfg.delta_max);
            }

            if delta < 1e-12 {
                break; // trust region too small
            }
        }

        let grad_norm = g.iter().map(|gi| gi * gi).sum::<f64>().sqrt();
        Ok(OptResult {
            x,
            f_val,
            grad_norm,
            n_iter,
            converged,
        })
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::second_order::types::Sr1Config;

    fn quadratic(x: &[f64]) -> (f64, Vec<f64>) {
        let f: f64 = x
            .iter()
            .enumerate()
            .map(|(i, xi)| 0.5 * (i as f64 + 1.0) * xi * xi)
            .sum();
        let g: Vec<f64> = x
            .iter()
            .enumerate()
            .map(|(i, xi)| (i as f64 + 1.0) * xi)
            .collect();
        (f, g)
    }

    #[test]
    fn test_sr1_update_formula() {
        let n = 3;
        let mut b = vec![0.0_f64; n * n];
        // Initialize to identity
        for i in 0..n {
            b[i * n + i] = 1.0;
        }
        let s = vec![1.0, 0.0, 0.0];
        let y = vec![2.0, 0.0, 0.0]; // y - Bs = y - s = [1, 0, 0]
        let updated = sr1_update_dense(&mut b, &s, &y, n, 1e-8);
        assert!(updated, "SR1 update should proceed");
        // After update: B_new[0,0] should be 2.0
        assert!(
            (b[0] - 2.0).abs() < 1e-10,
            "B[0,0] should be 2, got {}",
            b[0]
        );
    }

    #[test]
    fn test_sr1_skip_bad_curvature() {
        let n = 2;
        let mut b = vec![1.0, 0.0, 0.0, 1.0]; // identity
                                              // y = B s → y - B s = 0 → skip
        let s = vec![1.0, 0.0];
        let y = vec![1.0, 0.0]; // Bs = s, so r = 0
        let updated = sr1_update_dense(&mut b, &s, &y, n, 1e-8);
        assert!(!updated, "SR1 update should be skipped (zero denominator)");
    }

    #[test]
    fn test_sr1_trust_region() {
        let n = 2;
        let b = vec![2.0, 0.0, 0.0, 3.0]; // positive definite
        let g = vec![1.0, 1.0];
        let delta = 0.5_f64;
        let d = trust_region_step(&b, &g, delta, n);
        let d_norm = d.iter().map(|di| di * di).sum::<f64>().sqrt();
        assert!(
            d_norm <= delta + 1e-9,
            "Trust region violated: ‖d‖={} > δ={}",
            d_norm,
            delta
        );
    }

    #[test]
    fn test_sr1_quadratic() {
        let opt = Sr1Optimizer::default_config();
        let x0 = vec![3.0, -2.0, 1.0];
        let result = opt.minimize(&quadratic, &x0).expect("SR1 minimize failed");
        for xi in &result.x {
            assert!(xi.abs() < 0.01, "Expected x≈0, got {}", xi);
        }
    }

    #[test]
    fn test_sr1_positive_definite_approx() {
        // After several SR1 updates on a convex problem, check that the
        // Hessian approximation is at least "positive in the s direction"
        let n = 2;
        let mut b = vec![1.0, 0.0, 0.0, 1.0];
        let pairs = vec![
            (vec![1.0, 0.0], vec![2.0, 0.0]),
            (vec![0.0, 1.0], vec![0.0, 3.0]),
        ];
        for (s, y) in &pairs {
            sr1_update_dense(&mut b, s, y, n, 1e-8);
        }
        // B s_i should have positive inner product with s_i
        for (s, _y) in &pairs {
            let bs = mat_vec(&b, s, n);
            let sts: f64 = s.iter().zip(bs.iter()).map(|(si, bsi)| si * bsi).sum();
            assert!(sts > 0.0, "B should be positive in s direction");
        }
    }

    #[test]
    fn test_sr1_symmetric_update() {
        let n = 3;
        let mut b = vec![2.0, 1.0, 0.0, 1.0, 3.0, 0.5, 0.0, 0.5, 4.0];
        let s = vec![0.5, -0.3, 0.1];
        let y = vec![1.5, 0.2, 0.4];
        sr1_update_dense(&mut b, &s, &y, n, 1e-8);
        // Check symmetry: B[i,j] == B[j,i]
        for i in 0..n {
            for j in 0..n {
                assert!(
                    (b[i * n + j] - b[j * n + i]).abs() < 1e-10,
                    "B not symmetric at ({},{}) vs ({},{}) : {} vs {}",
                    i,
                    j,
                    j,
                    i,
                    b[i * n + j],
                    b[j * n + i]
                );
            }
        }
    }
}