chematic-3d 0.1.94

3D coordinate generation, DREIDING force field, velocity Verlet MD, PDB/XYZ I/O, conformer RMSD — pure Rust, WASM-compatible
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
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
//! Distance geometry with eigenvalue decomposition for 3D coordinate generation.
//!
//! Implements the distance geometry approach:
//! 1. Build bound matrix from bond lengths and angle constraints
//! 2. Convert distances to Gram matrix (inner products)
//! 3. Eigenvalue decomposition to extract coordinates
//! 4. Metrization to enforce Euclidean distances
//!
//! This provides more accurate geometry than rule-based placement, especially
//! for complex molecules with many torsion degrees of freedom.

#![allow(dead_code)]

use std::f64::consts::PI;

use chematic_core::{AtomIdx, BondOrder, Molecule};

use crate::coords::{Coords3D, Point3};

// ---------------------------------------------------------------------------
// Bound matrix construction
// ---------------------------------------------------------------------------

/// Build a bound matrix (lower and upper distance bounds) from molecular constraints.
///
/// Returns (lower_bounds, upper_bounds) as n×n matrices where:
/// - lower_bounds[i][j] = minimum allowed distance
/// - upper_bounds[i][j] = maximum allowed distance
///
/// Constraints include:
/// - Bond lengths (from ideal values ± tolerance)
/// - Angle constraints (from ideal angles)
/// - Van der Waals (from VDW radii sum)
fn build_bound_matrix(mol: &Molecule) -> (Vec<Vec<f64>>, Vec<Vec<f64>>) {
    let n = mol.atom_count();
    let mut lower = vec![vec![0.0; n]; n];
    let mut upper = vec![vec![f64::INFINITY; n]; n];

    // Diagonal: distance to self = 0
    for i in 0..n {
        lower[i][i] = 0.0;
        upper[i][i] = 0.0;
    }

    // Bond length constraints (distance = 1)
    for (_, bond) in mol.bonds() {
        let a = bond.atom1;
        let b = bond.atom2;
        let dist = ideal_bond_length(mol, a, b);
        let tolerance = 0.05; // ±0.05 Å tolerance
        lower[a.0 as usize][b.0 as usize] = (dist - tolerance).max(0.5);
        upper[a.0 as usize][b.0 as usize] = dist + tolerance;
        lower[b.0 as usize][a.0 as usize] = lower[a.0 as usize][b.0 as usize];
        upper[b.0 as usize][a.0 as usize] = upper[a.0 as usize][b.0 as usize];
    }

    // Angle constraints (distance = 2)
    for center_idx in 0..n {
        let center = AtomIdx(center_idx as u32);
        let neighbors: Vec<AtomIdx> = mol.neighbors(center).map(|(nb, _)| nb).collect();

        for i in 0..neighbors.len() {
            for j in (i + 1)..neighbors.len() {
                let a = neighbors[i];
                let b = neighbors[j];
                let bond_len_1 = ideal_bond_length(mol, center, a);
                let bond_len_2 = ideal_bond_length(mol, center, b);
                let angle = ideal_bond_angle(mol, center);

                // Distance = sqrt(r1^2 + r2^2 - 2*r1*r2*cos(angle))
                let dist_sq = bond_len_1.powi(2) + bond_len_2.powi(2)
                    - 2.0 * bond_len_1 * bond_len_2 * angle.cos();
                let dist = dist_sq.max(0.0).sqrt();
                let tolerance = 0.1;

                let idx_a = a.0 as usize;
                let idx_b = b.0 as usize;
                lower[idx_a][idx_b] = lower[idx_a][idx_b].max((dist - tolerance).max(0.5));
                upper[idx_a][idx_b] = upper[idx_a][idx_b].min(dist + tolerance);
                lower[idx_b][idx_a] = lower[idx_a][idx_b];
                upper[idx_b][idx_a] = upper[idx_a][idx_b];
            }
        }
    }

    // Van der Waals bounds (non-bonded distance >= sum of VDW radii).
    // Skip pairs where an angle constraint has already set a tighter (smaller)
    // upper bound — applying VDW there would make lower > upper.
    for i in 0..n {
        for j in (i + 1)..n {
            let a = AtomIdx(i as u32);
            let b = AtomIdx(j as u32);

            // Skip if bonded
            if mol.bond_between(a, b).is_some() {
                continue;
            }

            let vdw_sum = vdw_distance(mol, a, b);
            // Only raise the lower bound if it would not exceed the upper bound.
            if lower[i][j] < vdw_sum && vdw_sum <= upper[i][j] {
                lower[i][j] = vdw_sum;
                lower[j][i] = vdw_sum;
            }
        }
    }

    (lower, upper)
}

/// Ideal bond length (Å) from atom pair and bond order.
fn ideal_bond_length(mol: &Molecule, a: AtomIdx, b: AtomIdx) -> f64 {
    let ea = mol.atom(a).element.atomic_number();
    let eb = mol.atom(b).element.atomic_number();
    let order = mol
        .bond_between(a, b)
        .map(|(_, bond)| bond.order)
        .unwrap_or(chematic_core::BondOrder::Single);

    // Simplified table (same as current DG implementation)
    match (ea.min(eb), ea.max(eb), order) {
        (6, 6, BondOrder::Single) => 1.54,
        (6, 6, BondOrder::Double) => 1.34,
        (6, 6, BondOrder::Triple) => 1.20,
        (6, 7, BondOrder::Single) => 1.47,
        (6, 8, BondOrder::Single) => 1.43,
        (6, 9, _) => 1.35,
        (1, 6, _) => 1.09,
        (1, 7, _) => 1.01,
        (1, 8, _) => 0.96,
        _ => 1.54,
    }
}

/// Ideal bond angle (radians) at center atom.
fn ideal_bond_angle(mol: &Molecule, center: AtomIdx) -> f64 {
    let atom = mol.atom(center);

    // Simplified: aromatic/double → ~120°, else ~109.5°
    if atom.aromatic {
        2.0 * PI / 3.0 // 120°
    } else {
        let has_double = mol
            .neighbors(center)
            .any(|(_, bidx)| matches!(mol.bond(bidx).order, BondOrder::Double));
        if has_double {
            2.0 * PI / 3.0
        } else {
            1.91 // ~109.5°
        }
    }
}

/// Van der Waals distance (sum of VDW radii, Å).
fn vdw_distance(mol: &Molecule, a: AtomIdx, b: AtomIdx) -> f64 {
    let r_a = vdw_radius(mol.atom(a).element.atomic_number());
    let r_b = vdw_radius(mol.atom(b).element.atomic_number());
    r_a + r_b
}

fn vdw_radius(atomic_num: u8) -> f64 {
    match atomic_num {
        1 => 1.20,  // H
        6 => 1.70,  // C
        7 => 1.55,  // N
        8 => 1.52,  // O
        9 => 1.47,  // F
        16 => 1.80, // S
        17 => 1.75, // Cl
        _ => 1.70,
    }
}

// ---------------------------------------------------------------------------
// Eigenvalue decomposition & coordinate generation
// ---------------------------------------------------------------------------

/// Generate 3D coordinates via distance geometry (ETDKG-style).
///
/// Algorithm:
/// 1. Build distance bounds from bond lengths and angles
/// 2. Create target distance matrix (average of bounds)
/// 3. Compute Gram matrix from distances
/// 4. Eigenvalue decomposition via Jacobi method
/// 5. Extract 3D coordinates from top 3 eigenvectors
/// 6. Center molecule at origin
/// Maximum atom count accepted by the DG coordinate generator.
///
/// O(n²) memory and O(n³) Floyd-Warshall make larger molecules prohibitive;
/// callers that need coordinates for bigger structures must use an external tool.
pub const DG_MAX_ATOMS: usize = 500;

pub fn generate_coords_dg(mol: &Molecule) -> Coords3D {
    let n = mol.atom_count();

    if n == 0 {
        return Coords3D::new_zeroed(0);
    }

    if n > DG_MAX_ATOMS {
        return Coords3D::new_zeroed(n);
    }

    if n == 1 {
        let mut coords = Coords3D::new_zeroed(1);
        coords.set(AtomIdx(0), Point3 { x: 0.0, y: 0.0, z: 0.0 });
        return coords;
    }

    // Step 1: Build bounds + smooth to give finite upper bounds for all pairs.
    let (mut lower, mut upper) = build_bound_matrix(mol);
    smooth_bounds(&mut lower, &mut upper);

    // Step 2: Create target distance matrix (average of smoothed bounds).
    // After smoothing, upper[i][j] is finite for all connected pairs; clamp
    // any remaining infinity (disconnected graph edge case) to 4× the largest
    // finite upper bound so the Gram matrix stays numerically well-conditioned.
    let max_finite: f64 = upper
        .iter()
        .flat_map(|row| row.iter())
        .filter(|&&v| v.is_finite())
        .cloned()
        .fold(0.0f64, f64::max);
    let fallback = (max_finite * 4.0).max(10.0);

    let mut dist_matrix = vec![vec![0.0; n]; n];
    for i in 0..n {
        for j in 0..n {
            if i == j {
                dist_matrix[i][j] = 0.0;
            } else {
                let u = if upper[i][j].is_finite() { upper[i][j] } else { fallback };
                dist_matrix[i][j] = (lower[i][j] + u) / 2.0;
            }
        }
    }

    // Step 3: Compute Gram matrix
    let gram = distance_to_gram_matrix(&dist_matrix);

    // Step 4: Eigenvalue decomposition (Jacobi method)
    let (eigenvalues, eigenvectors) = jacobi_eigendecompose(&gram);

    // Step 5: Extract 3D coordinates from top 3 positive eigenvectors
    let mut coords = Coords3D::new_zeroed(n);

    // Collect the 3 largest *positive* eigenvalues, sorted descending.
    // Negative eigenvalues are excluded; if fewer than 3 positive values exist
    // the remaining coordinate axes are left at zero.
    let mut pos_evals: Vec<usize> = (0..n)
        .filter(|&i| eigenvalues[i] > 1e-10)
        .collect();
    pos_evals.sort_by(|&a, &b| {
        eigenvalues[b].partial_cmp(&eigenvalues[a]).unwrap_or(std::cmp::Ordering::Equal)
    });
    let use_indices: Vec<usize> = pos_evals.into_iter().take(3).collect();

    // Set coordinates using only positive eigenvalues (no .abs() hack).
    for i in 0..n {
        let coord = |dim: usize| -> f64 {
            use_indices.get(dim).map_or(0.0, |&idx| {
                eigenvalues[idx].sqrt() * eigenvectors[i][idx]
            })
        };
        coords.set(AtomIdx(i as u32), Point3 { x: coord(0), y: coord(1), z: coord(2) });
    }

    // Step 6: Center molecule
    center_coordinates(&mut coords);

    // Step 7: Refinement — push/pull atom pairs to satisfy distance bounds.
    // Classical MDS is an initial guess only; ring molecules produce frustrated
    // distance matrices that the rank-3 truncation cannot reproduce exactly.
    // Each pass moves both atoms by half the violation along their axis.
    refine_coords(&mut coords, &lower, &upper, 300);

    coords
}

/// Iterative bounds-driven refinement (SHAKE-like).
///
/// For each atom pair whose current distance violates [lower, upper], move
/// both atoms half the violation along their connecting axis. After enough
/// iterations every pair converges inside its bounds. Classical MDS is used
/// only as the initial placement; this step enforces the geometry.
fn refine_coords(
    coords: &mut Coords3D,
    lower: &[Vec<f64>],
    upper: &[Vec<f64>],
    n_iter: usize,
) {
    let n = coords.atom_count();
    for _ in 0..n_iter {
        for i in 0..n {
            for j in (i + 1)..n {
                let pi = coords.get(AtomIdx(i as u32));
                let pj = coords.get(AtomIdx(j as u32));
                let dx = pj.x - pi.x;
                let dy = pj.y - pi.y;
                let dz = pj.z - pi.z;
                let d = (dx * dx + dy * dy + dz * dz).sqrt();
                if d < 1e-10 {
                    continue;
                }

                let lo = lower[i][j];
                let hi = upper[i][j];
                let target = if d < lo {
                    lo
                } else if hi.is_finite() && d > hi {
                    hi
                } else {
                    continue;
                };

                // half the signed correction along the i→j axis
                let half = (target - d) * 0.5;
                let ux = dx / d;
                let uy = dy / d;
                let uz = dz / d;

                // i moves away from j when target > d (stretch), toward j when compress
                coords.set(AtomIdx(i as u32), Point3 {
                    x: pi.x - half * ux,
                    y: pi.y - half * uy,
                    z: pi.z - half * uz,
                });
                coords.set(AtomIdx(j as u32), Point3 {
                    x: pj.x + half * ux,
                    y: pj.y + half * uy,
                    z: pj.z + half * uz,
                });
            }
        }
    }
}

/// Apply triangle-inequality bounds smoothing (Floyd-Warshall).
///
/// Propagates finite upper bounds to all pairs:
///   upper[i][j] ≤ upper[i][k] + upper[k][j]
/// and tightens lower bounds:
///   lower[i][j] ≥ max(0, lower[i][k] − upper[k][j])
///
/// After smoothing, upper[i][j] is finite for all atom pairs in a connected
/// molecule, eliminating the infinity entries that would produce NaN in the
/// Gram matrix.
fn smooth_bounds(lower: &mut [Vec<f64>], upper: &mut [Vec<f64>]) {
    let n = lower.len();
    for k in 0..n {
        for i in 0..n {
            if upper[i][k].is_infinite() { continue; }
            for j in 0..n {
                if i == j { continue; }
                // Tighten upper bound via k
                let via_k_upper = upper[i][k] + upper[k][j];
                if via_k_upper < upper[i][j] {
                    upper[i][j] = via_k_upper;
                    upper[j][i] = via_k_upper;
                }
                // Tighten lower bound via k
                let via_k_lower = lower[i][k] - upper[k][j];
                if via_k_lower > lower[i][j] {
                    lower[i][j] = via_k_lower.max(0.0);
                    lower[j][i] = lower[i][j];
                }
            }
        }
    }
}

/// Convert distance matrix to Gram matrix using classical MDS double-centering.
///
/// B[i,j] = −0.5 · (D[i,j]² − μ_row[i] − μ_col[j] + μ_all)
///
/// where μ_row[i] = (1/n) Σ_k D[i,k]² and μ_all = (1/n) Σ_i μ_row[i].
/// This is equivalent to centering the inner-product matrix at the centroid
/// of all atoms, which distributes the reference symmetrically rather than
/// anchoring at atom 0.
fn distance_to_gram_matrix(dist: &[Vec<f64>]) -> Vec<Vec<f64>> {
    let n = dist.len();
    if n == 0 { return vec![]; }

    // D² row means
    let row_means: Vec<f64> = dist
        .iter()
        .map(|row| row.iter().map(|&d| d * d).sum::<f64>() / n as f64)
        .collect();
    let total_mean: f64 = row_means.iter().sum::<f64>() / n as f64;

    let mut gram = vec![vec![0.0; n]; n];
    for i in 0..n {
        for j in 0..n {
            let d2 = dist[i][j] * dist[i][j];
            gram[i][j] = -0.5 * (d2 - row_means[i] - row_means[j] + total_mean);
        }
    }
    gram
}

/// Jacobi eigendecomposition for symmetric matrices.
///
/// Returns (eigenvalues, eigenvectors) where eigenvectors[i][j] is the
/// i-th component of the j-th eigenvector.
fn jacobi_eigendecompose(mat: &[Vec<f64>]) -> (Vec<f64>, Vec<Vec<f64>>) {
    let n = mat.len();
    let mut a = mat.to_vec();
    let mut v = vec![vec![0.0; n]; n];

    // Initialize eigenvector matrix to identity
    for i in 0..n {
        v[i][i] = 1.0;
    }

    // Need at least n*(n-1)/2 rotations per sweep; 5 sweeps is typical for convergence.
    let max_iterations = (n * (n + 1) / 2 * 5).max(100);
    let tolerance = 1e-10;

    for _iteration in 0..max_iterations {
        // Find largest off-diagonal element
        let mut max_val = 0.0;
        let mut p = 0;
        let mut q = 1;

        for i in 0..n {
            for j in (i + 1)..n {
                if a[i][j].abs() > max_val {
                    max_val = a[i][j].abs();
                    p = i;
                    q = j;
                }
            }
        }

        if max_val < tolerance {
            break;
        }

        // Compute rotation angle
        let apq = a[p][q];
        let app = a[p][p];
        let aqq = a[q][q];

        let theta = 0.5 * (2.0 * apq / (app - aqq)).atan();
        let c = theta.cos();
        let s = theta.sin();

        // Apply Givens rotation
        for i in 0..n {
            if i == p || i == q {
                continue;
            }

            let aip = a[i][p];
            let aiq = a[i][q];

            a[i][p] = c * aip - s * aiq;
            a[p][i] = a[i][p];
            a[i][q] = s * aip + c * aiq;
            a[q][i] = a[i][q];
        }

        // Update diagonal
        a[p][p] = c * c * app - 2.0 * s * c * apq + s * s * aqq;
        a[q][q] = s * s * app + 2.0 * s * c * apq + c * c * aqq;
        a[p][q] = 0.0;
        a[q][p] = 0.0;

        // Update eigenvectors
        for i in 0..n {
            let vip = v[i][p];
            let viq = v[i][q];
            v[i][p] = c * vip - s * viq;
            v[i][q] = s * vip + c * viq;
        }
    }

    let eigenvalues: Vec<f64> = (0..n).map(|i| a[i][i]).collect();
    (eigenvalues, v)
}

/// Center coordinates at origin (centroid).
fn center_coordinates(coords: &mut Coords3D) {
    let n = coords.atom_count();
    if n == 0 {
        return;
    }

    let mut cx = 0.0;
    let mut cy = 0.0;
    let mut cz = 0.0;

    for i in 0..n {
        let p = coords.get(AtomIdx(i as u32));
        cx += p.x;
        cy += p.y;
        cz += p.z;
    }

    cx /= n as f64;
    cy /= n as f64;
    cz /= n as f64;

    for i in 0..n {
        let p = coords.get(AtomIdx(i as u32));
        coords.set(AtomIdx(i as u32), Point3 {
            x: p.x - cx,
            y: p.y - cy,
            z: p.z - cz,
        });
    }
}

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

    #[test]
    fn test_bound_matrix_ethane() {
        let mol = parse("CC").unwrap();
        let (lower, upper) = build_bound_matrix(&mol);
        assert_eq!(lower.len(), 2);
        assert_eq!(upper.len(), 2);
        // C-C bond should be ~1.54 Å
        assert!(lower[0][1] > 1.4 && lower[0][1] < 1.6);
        assert!(upper[0][1] > 1.4 && upper[0][1] < 1.6);
    }

    #[test]
    fn test_bound_matrix_benzene() {
        let mol = parse("c1ccccc1").unwrap();
        let (lower, _upper) = build_bound_matrix(&mol);
        assert_eq!(lower.len(), 6);
        // Aromatic C-C should be ~1.40 Å
        assert!(lower[0][1] > 1.3 && lower[0][1] < 1.5);
    }

    #[test]
    fn test_ideal_bond_length_cc() {
        assert!((ideal_bond_length_test(6, 6, BondOrder::Single) - 1.54).abs() < 0.01);
    }

    #[test]
    fn test_ideal_bond_angle_sp2() {
        let angle = ideal_bond_angle_test(true);
        assert!((angle - 2.0 * PI / 3.0).abs() < 0.01); // 120°
    }

    #[test]
    fn test_generate_coords_dg_ethane() {
        let mol = parse("CC").unwrap();
        let coords = generate_coords_dg(&mol);

        assert_eq!(coords.atom_count(), 2);

        let p0 = coords.get(AtomIdx(0));
        let p1 = coords.get(AtomIdx(1));

        // Should have non-zero distance
        let dist = p0.distance(&p1);
        assert!(dist > 1.4 && dist < 1.7, "C-C bond distance: {}", dist);
    }

    #[test]
    fn test_generate_coords_dg_finite() {
        let mol = parse("c1ccc(C)cc1").unwrap();
        let coords = generate_coords_dg(&mol);

        // All coordinates must be finite (no NaN, no Inf)
        for i in 0..mol.atom_count() {
            let p = coords.get(AtomIdx(i as u32));
            assert!(p.x.is_finite(), "atom {} x is not finite", i);
            assert!(p.y.is_finite(), "atom {} y is not finite", i);
            assert!(p.z.is_finite(), "atom {} z is not finite", i);
        }
    }

    #[test]
    fn test_generate_coords_dg_centered() {
        let mol = parse("CCC").unwrap();
        let coords = generate_coords_dg(&mol);

        // Calculate centroid
        let mut cx = 0.0;
        let mut cy = 0.0;
        let mut cz = 0.0;

        for i in 0..mol.atom_count() {
            let p = coords.get(AtomIdx(i as u32));
            cx += p.x;
            cy += p.y;
            cz += p.z;
        }

        cx /= mol.atom_count() as f64;
        cy /= mol.atom_count() as f64;
        cz /= mol.atom_count() as f64;

        // Centroid should be near origin
        assert!(cx.abs() < 1e-6, "centroid x: {}", cx);
        assert!(cy.abs() < 1e-6, "centroid y: {}", cy);
        assert!(cz.abs() < 1e-6, "centroid z: {}", cz);
    }

    #[test]
    fn test_generate_coords_dg_single_atom() {
        let mol = parse("C").unwrap();
        let coords = generate_coords_dg(&mol);

        assert_eq!(coords.atom_count(), 1);
        let p = coords.get(AtomIdx(0));
        assert_eq!(p.x, 0.0);
        assert_eq!(p.y, 0.0);
        assert_eq!(p.z, 0.0);
    }

    #[test]
    fn test_generate_coords_dg_ethene() {
        let mol = parse("C=C").unwrap();
        let coords = generate_coords_dg(&mol);

        let p0 = coords.get(AtomIdx(0));
        let p1 = coords.get(AtomIdx(1));
        let dist = p0.distance(&p1);

        // Double bond C=C is ~1.34 Å
        assert!(dist > 1.2 && dist < 1.5, "C=C bond distance: {}", dist);
    }

    #[test]
    fn test_generate_coords_dg_propane() {
        let mol = parse("CCC").unwrap();
        let coords = generate_coords_dg(&mol);

        assert_eq!(coords.atom_count(), 3);

        let p0 = coords.get(AtomIdx(0));
        let p1 = coords.get(AtomIdx(1));
        let p2 = coords.get(AtomIdx(2));

        // All bonds should have reasonable distances
        let d01 = p0.distance(&p1);
        let d12 = p1.distance(&p2);
        let d02 = p0.distance(&p2);

        assert!(d01 > 1.4 && d01 < 1.7);
        assert!(d12 > 1.4 && d12 < 1.7);
        assert!(d02 > 2.0 && d02 < 3.5);
    }

    #[test]
    fn test_generate_coords_dg_benzene() {
        let mol = parse("c1ccccc1").unwrap();
        let coords = generate_coords_dg(&mol);

        assert_eq!(coords.atom_count(), 6);

        // All atoms should have non-zero positions
        let mut all_nonzero = true;
        for i in 0..6 {
            let p = coords.get(AtomIdx(i as u32));
            if p.x.abs() < 1e-10 && p.y.abs() < 1e-10 && p.z.abs() < 1e-10 {
                all_nonzero = false;
            }
        }
        assert!(all_nonzero, "some atoms have zero coordinates");
    }

    #[test]
    fn test_gram_matrix_simple() {
        let dist = vec![
            vec![0.0, 1.5, 2.5],
            vec![1.5, 0.0, 1.6],
            vec![2.5, 1.6, 0.0],
        ];

        let gram = distance_to_gram_matrix(&dist);
        assert_eq!(gram.len(), 3);
        assert_eq!(gram[0].len(), 3);

        // Gram matrix should be symmetric
        for i in 0..3 {
            for j in 0..3 {
                assert!((gram[i][j] - gram[j][i]).abs() < 1e-10);
            }
        }
    }

    #[test]
    fn test_jacobi_eigendecompose_identity() {
        let mat = vec![vec![1.0, 0.0], vec![0.0, 1.0]];

        let (eigenvalues, _eigenvectors) = jacobi_eigendecompose(&mat);
        assert_eq!(eigenvalues.len(), 2);
        assert!((eigenvalues[0] - 1.0).abs() < 1e-6);
        assert!((eigenvalues[1] - 1.0).abs() < 1e-6);
    }

    // T1: Gram-matrix centering — verify bond lengths are reasonable for larger molecules.
    //
    // The atom-0-reference formula is mathematically equivalent to double-centering
    // for exact Euclidean distance matrices.  For approximate distances (as produced by
    // the bound matrix), the two differ only in numerical bias.  These tests confirm
    // that generated bond lengths are within ±0.3 Å of the target for molecules up to
    // 6 heavy atoms, establishing that the current implementation has no practical impact.

    #[test]
    fn test_gram_centering_butane_bond_lengths() {
        // Butane (4 atoms: 0-1-2-3). Atoms 0 and 3 have no angle constraint (4 bonds apart)
        // → dist_matrix[0][3] = infinity. This exercises the long-range infinity path.
        let mol = parse("CCCC").unwrap();
        let coords = generate_coords_dg(&mol);

        // All coords must be finite.
        for i in 0..4 {
            let p = coords.get(AtomIdx(i as u32));
            assert!(p.x.is_finite() && p.y.is_finite() && p.z.is_finite(),
                "butane atom {} has non-finite coords ({}, {}, {})", i, p.x, p.y, p.z);
        }

        // Bond distances should be within ±0.3 Å of the ideal 1.54 Å target.
        let check_bond = |a: u32, b: u32| {
            let pa = coords.get(AtomIdx(a));
            let pb = coords.get(AtomIdx(b));
            let d = pa.distance(&pb);
            (d > 1.2 && d < 1.9, d)
        };
        let (ok01, d01) = check_bond(0, 1);
        let (ok12, d12) = check_bond(1, 2);
        let (ok23, d23) = check_bond(2, 3);
        assert!(ok01, "butane C0-C1 bond = {d01:.3} Å (expected ~1.54)");
        assert!(ok12, "butane C1-C2 bond = {d12:.3} Å (expected ~1.54)");
        assert!(ok23, "butane C2-C3 bond = {d23:.3} Å (expected ~1.54)");
    }

    #[test]
    fn test_gram_centering_hexane_all_bonds() {
        // Hexane (6 atoms). Many long-range pairs (0-3, 0-4, 0-5, 1-4, 1-5, 2-5)
        // have upper = infinity in the bound matrix.
        let mol = parse("CCCCCC").unwrap();
        let coords = generate_coords_dg(&mol);

        for i in 0..6 {
            let p = coords.get(AtomIdx(i as u32));
            assert!(p.x.is_finite() && p.y.is_finite() && p.z.is_finite(),
                "hexane atom {} non-finite: ({}, {}, {})", i, p.x, p.y, p.z);
        }

        // All five C-C bonds should be reasonable.
        for i in 0..5u32 {
            let pa = coords.get(AtomIdx(i));
            let pb = coords.get(AtomIdx(i + 1));
            let d = pa.distance(&pb);
            assert!(d > 1.2 && d < 1.9,
                "hexane C{i}-C{} bond = {d:.3} Å", i + 1);
        }
    }

    #[test]
    fn test_gram_centering_toluene_bond_quality() {
        // Toluene has a methyl C that is ≥4 bonds from most ring atoms → many infinite
        // upper bounds. All coords must be finite and ring bonds reasonable.
        let mol = parse("c1ccc(C)cc1").unwrap();
        let coords = generate_coords_dg(&mol);

        for i in 0..mol.atom_count() {
            let p = coords.get(AtomIdx(i as u32));
            assert!(p.x.is_finite() && p.y.is_finite() && p.z.is_finite(),
                "toluene atom {i} non-finite");
        }

        // Check that BONDED atom pairs have distances within 1.0–2.0 Å.
        use chematic_core::BondIdx;
        for bi in 0..mol.bond_count() {
            let bond = mol.bond(BondIdx(bi as u32));
            let pa = coords.get(bond.atom1);
            let pb = coords.get(bond.atom2);
            let d = pa.distance(&pb);
            assert!(d > 1.0 && d < 2.0,
                "toluene bond {}-{} = {d:.3} Å", bond.atom1.0, bond.atom2.0);
        }
    }

    // Helper functions for testing
    fn ideal_bond_length_test(a: u8, b: u8, order: BondOrder) -> f64 {
        match (a.min(b), a.max(b), order) {
            (6, 6, BondOrder::Single) => 1.54,
            (6, 6, BondOrder::Double) => 1.34,
            (6, 6, BondOrder::Triple) => 1.20,
            _ => 1.54,
        }
    }

    fn ideal_bond_angle_test(aromatic: bool) -> f64 {
        if aromatic { 2.0 * PI / 3.0 } else { 1.91 }
    }
}