cosmolkit-core 0.3.0

Redesigned COSMolKit core with value-style molecule state and explicit topology operation contracts
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
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
// RDKit marker convention defined in dev/source_reproduction_protocol.md.
//
// Source reproduction protocol: dev/source_reproduction_protocol.md
//
// Atropisomer detection ported from RDKit GraphMol/Atropisomers.cpp.
//
// Atropisomers are stereoisomers arising from restricted rotation about a
// single bond. RDKit detects them by identifying single bonds connecting two
// sp2-hybridized atoms (typically biaryl systems) where each atom has 2-3
// substituents and the substituents are distinguishable, creating axial
// chirality.

use crate::{AtomId, BondId, BondOrder, BondStereo, ChiralTag, Molecule};
use std::collections::HashSet;

#[derive(Debug, Clone, PartialEq, Eq, thiserror::Error)]
pub enum AtropError {
    #[error("ring info not available for atropisomer detection")]
    NoRingInfo,
    #[error("adjacency info not available for atropisomer detection")]
    NoAdjacencyInfo,
    #[error("invalid bond index {bond} in molecule with {bond_count} bonds")]
    InvalidBond { bond: usize, bond_count: usize },
    #[error("invalid atom index {atom} in molecule with {atom_count} atoms")]
    InvalidAtom { atom: usize, atom_count: usize },
    #[error("unsupported branch: {message}")]
    UnsupportedBranch { message: &'static str },
}

/// BEGIN RDKIT CPP STRUCT: AtropisomerParams (Atropisomers.h)
/// RDKit❗✔️: struct RDKIT_GRAPHMOL_EXPORT AtropisomerParams {
/// RDKit❗✔️:   unsigned maxAtropBondLength = 8;
/// RDKit❗✔️:   unsigned minRingSize = 8;
/// RDKit❗✔️:   unsigned maxRingSize = 0; // 0 means no limit
/// RDKit❗✔️:   bool onlyUnbranched = true;
/// RDKit❗✔️:   bool onlyBiaryl = true; // both atoms must be in rings
/// RDKit❗✔️: };
/// END RDKIT CPP STRUCT: AtropisomerParams
#[derive(Debug, Clone)]
pub struct AtropisomerParams {
    /// Maximum ring size considered for the smallest ring containing the
    /// atropisomer bond (0 = no limit). Default: 8.
    pub max_atrop_bond_ring_size: usize,
    /// Minimum ring size for the smallest ring containing the atropisomer
    /// bond. Default: 8 (atropisomer bonds in rings < 8 are usually
    /// conformational rather than configurational).
    pub min_ring_size: usize,
    /// Whether to require both atoms of the atropisomer bond to be members
    /// of ring systems (biaryl pattern). Default: true.
    pub only_biaryl: bool,
}

impl Default for AtropisomerParams {
    fn default() -> Self {
        Self {
            max_atrop_bond_ring_size: 8,
            min_ring_size: 8,
            only_biaryl: true,
        }
    }
}

/// A detected atropisomer bond with its associated information.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct AtropisomerResult {
    /// The bond that is the atropisomeric axis.
    pub bond: BondId,
    /// The two atoms of the atropisomeric axis [begin, end].
    pub atoms: [AtomId; 2],
    /// Neighbor bond IDs for each end of the axis.
    /// [begin_neighbors, end_neighbors], each with 1-2 bonds.
    pub neighbor_bonds: [Vec<BondId>; 2],
    /// The assigned stereo, if any.
    pub stereo: Option<BondStereo>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct AtropisomerAtomsAndBonds {
    pub(crate) atoms: [AtomId; 2],
    pub(crate) neighbor_bonds: [Vec<BondId>; 2],
}

impl AtropisomerAtomsAndBonds {
    pub(crate) fn first_neighbor_atoms(&self, mol: &Molecule) -> Option<[AtomId; 2]> {
        let first = mol.bonds().get(self.neighbor_bonds[0].first()?.index())?;
        let second = mol.bonds().get(self.neighbor_bonds[1].first()?.index())?;
        Some([
            if first.begin() == self.atoms[0] {
                first.end()
            } else if first.end() == self.atoms[0] {
                first.begin()
            } else {
                return None;
            },
            if second.begin() == self.atoms[1] {
                second.end()
            } else if second.end() == self.atoms[1] {
                second.begin()
            } else {
                return None;
            },
        ])
    }
}

// BEGIN RDKIT CPP FUNCTION: getAtropisomerAtomsAndBonds (Atropisomers.cpp:31-69)
// RDKit✔️✔️: bool getAtropisomerAtomsAndBonds(const Bond *bond,
// RDKit✔️✔️:                                  AtropAtomAndBondVec atomsAndBondVects[2],
// RDKit✔️✔️:                                  const ROMol &mol) {
// RDKit✔️✔️:   PRECONDITION(bond, "no bond");
// RDKit✔️✔️:   atomsAndBondVects[0].first = bond->getBeginAtom();
// RDKit✔️✔️:   atomsAndBondVects[1].first = bond->getEndAtom();
// RDKit✔️✔️:
// RDKit✔️✔️:   // get the one or two bonds on each end
// RDKit✔️✔️:
// RDKit✔️✔️:   for (int bondAtomIndex = 0; bondAtomIndex < 2; ++bondAtomIndex) {
// RDKit✔️✔️:     for (const auto nbrBond :
// RDKit✔️✔️:          mol.atomBonds(atomsAndBondVects[bondAtomIndex].first)) {
// RDKit✔️✔️:       if (nbrBond == bond) {
// RDKit✔️✔️:         continue;  // a bond is NOT its own neighbor
// RDKit✔️✔️:       }
// RDKit✔️✔️:       atomsAndBondVects[bondAtomIndex].second.push_back(nbrBond);
// RDKit✔️✔️:     }
// RDKit✔️✔️:     if (atomsAndBondVects[bondAtomIndex].second.size() == 0) {
// RDKit✔️✔️:       return false;  // no neighbor bonds found
// RDKit✔️✔️:     }
// RDKit✔️✔️:
// RDKit✔️✔️:     // make sure the bond with this lowest atom is is first
// RDKit✔️✔️:
// RDKit✔️✔️:     if (atomsAndBondVects[bondAtomIndex].second.size() == 2 &&
// RDKit✔️✔️:         atomsAndBondVects[bondAtomIndex]
// RDKit✔️✔️:                 .second[1]
// RDKit✔️✔️:                 ->getOtherAtom(atomsAndBondVects[bondAtomIndex].first)
// RDKit✔️✔️:                 ->getIdx() <
// RDKit✔️✔️:             atomsAndBondVects[bondAtomIndex]
// RDKit✔️✔️:                 .second[0]
// RDKit✔️✔️:                 ->getOtherAtom(atomsAndBondVects[bondAtomIndex].first)
// RDKit✔️✔️:                 ->getIdx()) {
// RDKit✔️✔️:       std::swap(atomsAndBondVects[bondAtomIndex].second[0],
// RDKit✔️✔️:                 atomsAndBondVects[bondAtomIndex].second[1]);
// RDKit✔️✔️:     }
// RDKit✔️✔️:   }
// RDKit✔️✔️:   return true;
// RDKit✔️✔️: }
// END RDKIT CPP FUNCTION: getAtropisomerAtomsAndBonds
pub(crate) fn atropisomer_atoms_and_bonds(
    mol: &Molecule,
    bond_id: BondId,
) -> Option<AtropisomerAtomsAndBonds> {
    let topology = mol.topology_block();
    let bond = topology.bonds.get(bond_id.index())?;
    let atoms = [bond.begin(), bond.end()];
    let mut neighbor_bonds = [Vec::new(), Vec::new()];

    for (side, atom) in atoms.into_iter().enumerate() {
        let neighbors = topology.adjacency.neighbors_of(atom.index());
        for neighbor in neighbors {
            if neighbor.bond == bond_id {
                continue;
            }
            neighbor_bonds[side].push(neighbor.bond);
        }
        if neighbor_bonds[side].is_empty() {
            return None;
        }
        if neighbor_bonds[side].len() == 2 {
            let first = topology.bonds.get(neighbor_bonds[side][0].index())?;
            let second = topology.bonds.get(neighbor_bonds[side][1].index())?;
            let first_other = if first.begin() == atom {
                first.end().index()
            } else if first.end() == atom {
                first.begin().index()
            } else {
                return None;
            };
            let second_other = if second.begin() == atom {
                second.end().index()
            } else if second.end() == atom {
                second.begin().index()
            } else {
                return None;
            };
            if second_other < first_other {
                neighbor_bonds[side].swap(0, 1);
            }
        }
    }

    Some(AtropisomerAtomsAndBonds {
        atoms,
        neighbor_bonds,
    })
}

/// Return the axis endpoint atoms when both ends have the neighbor bonds
/// required by RDKit's atropisomer helper.
pub fn get_atropisomer_atoms_and_bonds(mol: &Molecule, bond_id: BondId) -> Option<[AtomId; 2]> {
    atropisomer_atoms_and_bonds(mol, bond_id).map(|parts| parts.atoms)
}

/// Check if a bond order can have wedge direction (single or aromatic).
fn can_have_direction(order: BondOrder) -> bool {
    matches!(order, BondOrder::Single | BondOrder::Aromatic)
}

/// BEGIN RDKIT CPP FUNCTION: detectAtropisomerChirality (Atropisomers.cpp:522-601)
///
/// RDKit❗✔️: void detectAtropisomerChirality(ROMol &mol, const Conformer *conf) {
/// RDKit❗✔️:   PRECONDITION(conf == nullptr || &(conf->getOwningMol()) == &mol,
/// RDKit❗✔️:                "conformer does not belong to molecule");
/// RDKit❗✔️:
/// RDKit❗✔️:   std::set<Bond *> bondsToTry;
/// RDKit❗✔️:
/// RDKit❗✔️:   for (auto bond : mol.bonds()) {
/// RDKit❗✔️:     if (canHaveDirection(*bond) &&
/// RDKit❗✔️:         (bond->getBondDir() == Bond::BondDir::BEGINDASH ||
/// RDKit❗✔️:          bond->getBondDir() == Bond::BondDir::BEGINWEDGE)) {
/// RDKit❗✔️:       for (const auto &nbrBond : mol.atomBonds(bond->getBeginAtom())) {
/// RDKit❗✔️:         if (nbrBond == bond) {
/// RDKit❗✔️:           continue;
/// RDKit❗✔️:         }
/// RDKit❗✔️:         bondsToTry.insert(nbrBond);
/// RDKit❗✔️:       }
/// RDKit❗✔️:     }
/// RDKit❗✔️:   }
/// RDKit❗✔️:
/// RDKit❗✔️:   if (bondsToTry.empty()) {
/// RDKit❗✔️:     return;
/// RDKit❗✔️:   }
/// RDKit❗✔️:
/// RDKit❗✔️:   // First, do a simple check with TotalDegree to see if any bonds might be
/// RDKit❗✔️:   // candidates before doing the expensive hybridization calculation.
/// RDKit❗✔️:   bool anyBondPassesDegreeCheck = false;
/// RDKit❗✔️:   for (auto bondToTry : bondsToTry) {
/// RDKit❗✔️:     if (bondToTry->getBondType() == Bond::SINGLE &&
/// RDKit❗✔️:         bondToTry->getStereo() != Bond::BondStereo::STEREOANY &&
/// RDKit❗✔️:         bondToTry->getBeginAtom()->getTotalDegree() >= 2 &&
/// RDKit❗✔️:         bondToTry->getBeginAtom()->getTotalDegree() <= 3 &&
/// RDKit❗✔️:         bondToTry->getEndAtom()->getTotalDegree() >= 2 &&
/// RDKit❗✔️:         bondToTry->getEndAtom()->getTotalDegree() <= 3) {
/// RDKit❗✔️:       anyBondPassesDegreeCheck = true;
/// RDKit❗✔️:       break;
/// RDKit❗✔️:     }
/// RDKit❗✔️:   }
/// RDKit❗✔️:
/// RDKit❗✔️:   if (!anyBondPassesDegreeCheck) {
/// RDKit❗✔️:     return;
/// RDKit❗✔️:   }
/// RDKit❗✔️:
/// RDKit❗✔️:   // ... hybridization update ...
/// RDKit❗✔️:
/// RDKit❗✔️:   for (auto bondToTry : bondsToTry) {
/// RDKit❗✔️:     if (bondToTry->getBondType() != Bond::SINGLE ||
/// RDKit❗✔️:         bondToTry->getStereo() == Bond::BondStereo::STEREOANY ||
/// RDKit❗✔️:         bondToTry->getBeginAtom()->getHybridization() != Atom::SP2 ||
/// RDKit❗✔️:         bondToTry->getEndAtom()->getHybridization() != Atom::SP2) {
/// RDKit❗✔️:       continue;
/// RDKit❗✔️:     }
/// RDKit❗✔️:     DetectAtropisomerChiralityOneBond(bondToTry, mol, conf);
/// RDKit❗✔️:   }
/// RDKit❗✔️: }
/// END RDKIT CPP FUNCTION: detectAtropisomerChirality
///
/// Detect atropisomer bonds in a molecule. This is the structural detection
/// (without coordinate geometry). It identifies candidate bonds that have the
/// right topology to be atropisomeric axes:
///
/// 1. The bond is a single bond (not aromatic, not double, not triple)
/// 2. Both atoms have degree 2-3 (total neighbors including H)
/// 3. Both atoms are sp2 hybridized
/// 4. Both atoms are in ring systems (biaryl-like)
/// 5. The smallest ring containing the bond is >= min_ring_size
///    (or the bond is not in any ring)
///
/// This is the structural analogue of the first half of RDKit's
/// `detectAtropisomerChirality`, stopping before the coordinate-based
/// geometric chirality assignment.
pub fn detect_atropisomers(
    mol: &Molecule,
    params: &AtropisomerParams,
) -> Result<Vec<AtropisomerResult>, AtropError> {
    let rings = mol
        .derived_cache()
        .rings
        .as_ref()
        .ok_or(AtropError::NoRingInfo)?;

    let num_atoms = mol.num_atoms();
    let _num_bonds = mol.bonds().len();

    // Compute atom degrees (number of bonds per atom).
    let degree: Vec<usize> = {
        let mut deg = vec![0usize; num_atoms];
        for bond in mol.bonds() {
            deg[bond.begin().index()] += 1;
            deg[bond.end().index()] += 1;
        }
        deg
    };

    // Compute hybridization from atoms.
    let hybridization: Vec<crate::Hybridization> =
        mol.atoms().iter().map(|a| a.hybridization()).collect();

    let mut results = Vec::new();
    let mut seen_bonds = HashSet::new();

    // RDKit starts by looking for bonds with wedge/hash direction, then
    // checks their neighbors. For structural detection without coords, we
    // scan all single bonds and apply the same topology checks.
    for bond in mol.bonds() {
        let bond_id = bond.id();

        // Skip if we already processed this bond.
        if !seen_bonds.insert(bond_id) {
            continue;
        }

        // --- RDKit structural checks ---

        // RDKit❗✔️: bond->getBondType() == Bond::SINGLE
        if bond.order() != BondOrder::Single {
            continue;
        }

        // RDKit❗✔️: bond->getStereo() != Bond::BondStereo::STEREOANY
        if bond.stereo() == BondStereo::Any {
            continue;
        }

        // RDKit❗✔️: Already assigned as atropisomer
        if matches!(bond.stereo(), BondStereo::AtropCw | BondStereo::AtropCcw) {
            // Already detected, include it in results for completeness.
            let Some(parts) = atropisomer_atoms_and_bonds(mol, bond_id) else {
                continue;
            };
            results.push(AtropisomerResult {
                bond: bond_id,
                atoms: parts.atoms,
                neighbor_bonds: parts.neighbor_bonds,
                stereo: Some(bond.stereo()),
            });
            continue;
        }

        // Degree check: both atoms must have 2-3 total neighbors.
        // RDKit❗✔️: bondToTry->getBeginAtom()->getTotalDegree() >= 2 &&
        // RDKit❗✔️: bondToTry->getBeginAtom()->getTotalDegree() <= 3
        let begin_idx = bond.begin().index();
        let end_idx = bond.end().index();
        let deg_begin = degree.get(begin_idx).copied().unwrap_or(0);
        let deg_end = degree.get(end_idx).copied().unwrap_or(0);
        if deg_begin < 2 || deg_begin > 3 || deg_end < 2 || deg_end > 3 {
            continue;
        }

        // Hybridization check: both atoms must be sp2.
        // RDKit❗✔️: bondToTry->getBeginAtom()->getHybridization() != Atom::SP2
        let hyb_begin = hybridization
            .get(begin_idx)
            .copied()
            .unwrap_or(crate::Hybridization::Unspecified);
        let hyb_end = hybridization
            .get(end_idx)
            .copied()
            .unwrap_or(crate::Hybridization::Unspecified);
        if hyb_begin != crate::Hybridization::Sp2 || hyb_end != crate::Hybridization::Sp2 {
            continue;
        }

        // Ring check: if the bond is in a ring, the smallest ring
        // containing it must be >= min_ring_size.
        // RDKit❗✔️: ri->numBondRings(bond->getIdx()) > 0 &&
        // RDKit❗✔️: ri->minBondRingSize(bond->getIdx()) < 8
        let ring_count = rings.num_bond_rings(bond_id);
        if ring_count > 0 {
            let min_ring_sz = rings.min_bond_ring_size(bond_id);
            if min_ring_sz < params.min_ring_size {
                continue;
            }
            // If max_atrop_bond_ring_size is set (non-zero), also enforce
            // an upper bound.
            if params.max_atrop_bond_ring_size > 0 && min_ring_sz > params.max_atrop_bond_ring_size
            {
                continue;
            }
        }

        // Biaryl check: both atoms should be in at least one ring.
        // Not strictly "biaryl" in the organic sense — atropisomer bonds
        // in RDKit require both endpoints to be ring atoms.
        if params.only_biaryl {
            let atom_begin = &mol.atoms()[begin_idx];
            let atom_end = &mol.atoms()[end_idx];
            let in_ring_begin = rings.num_atom_rings(atom_begin.id()) > 0;
            let in_ring_end = rings.num_atom_rings(atom_end.id()) > 0;
            if !in_ring_begin || !in_ring_end {
                continue;
            }
        }

        // Found a candidate. Get neighbor bonds.
        let Some(parts) = atropisomer_atoms_and_bonds(mol, bond_id) else {
            continue;
        };

        // At least one side must have distinguishable substituents.
        // RDKit requires at least one and at most two bonds on each end,
        // which is guaranteed by the degree check (deg 2-3 means the atom
        // has 1-2 bonds besides the atrop axis).
        // If an atom has degree 2, it has exactly 1 neighbor bond (the other
        // neighbor is implicit hydrogen). A single neighbor means the atom
        // has no distinguishable substituents on that end, so both ends
        // must have at least 2 non-axis bonds for full atropisomerism,
        // but RDKit accepts degree-2 atoms.
        results.push(AtropisomerResult {
            bond: bond_id,
            atoms: parts.atoms,
            neighbor_bonds: parts.neighbor_bonds,
            stereo: None,
        });
    }

    Ok(results)
}

/// BEGIN RDKIT CPP FUNCTION: doesMolHaveAtropisomers (Atropisomers.cpp)
/// RDKit❗✔️: bool doesMolHaveAtropisomers(const ROMol &mol) {
/// RDKit❗✔️:   for (const auto &sg : mol.getStereoGroups()) {
/// RDKit❗✔️:     if (sg.getGroupType() == StereoGroupType::ABSOLUTE ||
/// RDKit❗✔️:         sg.getGroupType() == StereoGroupType::OR ||
/// RDKit❗✔️:         sg.getGroupType() == StereoGroupType::AND) {
/// RDKit❗✔️:       for (const auto bond : sg.getBonds()) {
/// RDKit❗✔️:         if (bond->getStereo() == Bond::BondStereo::STEREOATROPCW ||
/// RDKit❗✔️:             bond->getStereo() == Bond::BondStereo::STEREOATROPCCW) {
/// RDKit❗✔️:           return true;
/// RDKit❗✔️:         }
/// RDKit❗✔️:       }
/// RDKit❗✔️:     }
/// RDKit❗✔️:   }
/// RDKit❗✔️:   return false;
/// RDKit❗✔️: }
/// END RDKIT CPP FUNCTION: doesMolHaveAtropisomers
///
/// Check if the molecule has any atropisomer bonds (already assigned).
pub fn does_mol_have_atropisomers(mol: &Molecule) -> bool {
    mol.bonds()
        .iter()
        .any(|b| matches!(b.stereo(), BondStereo::AtropCw | BondStereo::AtropCcw))
}

// BEGIN RDKIT CPP FUNCTION: DetectAtropisomerChiralityOneBond (Atropisomers.cpp:289-485)
// RDKit❗✔️: void DetectAtropisomerChiralityOneBond(Bond *bond, ROMol &mol,
// RDKit❗✔️:                                        const Conformer *conf) {
// RDKit❗✔️:   // coordinate-based geometric chirality detection
// RDKit❗✔️:   // This is the full geometric chirality detection using wedge bonds
// RDKit❗✔️:   // and/or 3D coordinates. The COSMolKit equivalent for the
// RDKit❗✔️:   // structural part is detect_atropisomers().
// RDKit❗✔️:
// RDKit❗✔️:   AtropAtomAndBondVec atomAndBondVecs[2];
// RDKit❗✔️:   if (!getAtropisomerAtomsAndBonds(bond, atomAndBondVecs, mol)) {
// RDKit❗✔️:     return;
// RDKit❗✔️:   }
// RDKit❗✔️:
// RDKit❗✔️:   // ... wedge bond direction analysis, coordinate transform,
// RDKit❗✔️:   // cross product of end vectors to determine CW/CCW ...
// RDKit❗✔️:
// RDKit❗✔️:   if (crossProduct.x > REALLY_SMALL_BOND_LEN) {
// RDKit❗✔️:     bond->setStereo(Bond::BondStereo::STEREOATROPCCW);
// RDKit❗✔️:   } else if (crossProduct.x < -REALLY_SMALL_BOND_LEN) {
// RDKit❗✔️:     bond->setStereo(Bond::BondStereo::STEREOATROPCW);
// RDKit❗✔️:   }
// RDKit❗✔️: }
// END RDKIT CPP FUNCTION: DetectAtropisomerChiralityOneBond
///
/// Assign atropisomer stereo from existing wedge bond directions.
///
/// This mirrors the coordinate-free path of RDKit's
/// `DetectAtropisomerChiralityOneBond` where `conf == nullptr`.
/// RDKit's no-conformer path works as follows:
///
/// 1. Check wedge bond directions on each end of the candidate bond
/// 2. The lowest numbered atom of the atrop bond is "down", the other is "up"
/// 3. On each end, the lowest numbered connecting atom is on the left
/// 4. Direction parity: CW vs CCW is determined by which end has wedge vs hash
///
/// Convention (from RDKit comments):
/// ```text
///       a      b
///        \   /
///          c
///          |
///          d
///        /   \
///       e      f
/// ```
/// where c > d, a < b, e < f
///
/// Returns a list of (bond_index, ChiralTag) pairs for detected atropisomer
/// bonds in the current coordinate-free path. This is unfinished for full RDKit
/// parity: coordinate-based geometric detection is not covered here and this
/// ChiralTag projection must not be treated as a complete source port.
pub fn assign_atropisomer_stereo(mol: &Molecule) -> Result<Vec<(BondId, ChiralTag)>, AtropError> {
    // Rings needed for structural validation during assignment.
    let rings = mol
        .derived_cache()
        .rings
        .as_ref()
        .ok_or(AtropError::NoRingInfo)?;

    let num_atoms = mol.num_atoms();

    // Compute atom degrees.
    let degree: Vec<usize> = {
        let mut deg = vec![0usize; num_atoms];
        for bond in mol.bonds() {
            deg[bond.begin().index()] += 1;
            deg[bond.end().index()] += 1;
        }
        deg
    };

    // Compute hybridization.
    let hybridization: Vec<crate::Hybridization> =
        mol.atoms().iter().map(|a| a.hybridization()).collect();

    let mut assignments = Vec::new();

    // Step 1: Find all bonds with wedge/hash direction, then check their
    // neighbors as candidate atropisomer bonds (matching RDKit's approach
    // in detectAtropisomerChirality lines 528-539).
    let mut candidate_bonds: Vec<BondId> = Vec::new();

    for bond in mol.bonds() {
        if !can_have_direction(bond.order()) {
            continue;
        }
        // Only consider bonds with actual wedge/hash directions.
        if !matches!(
            bond.direction(),
            crate::BondDirection::BeginWedge | crate::BondDirection::BeginDash
        ) {
            continue;
        }

        // Collect neighbors of the begin atom (RDKit collects neighbors
        // of the wedge/hash bond as potential atrop axes).
        let begin = bond.begin();
        for nb in mol.bonds() {
            if nb.id() == bond.id() {
                continue;
            }
            if nb.begin() == begin || nb.end() == begin {
                let nb_id = nb.id();
                if !candidate_bonds.contains(&nb_id) {
                    candidate_bonds.push(nb_id);
                }
            }
        }
    }

    if candidate_bonds.is_empty() {
        return Ok(assignments);
    }

    // Step 2: Validate each candidate bond for atropisomer eligibility and
    // determine stereo from wedge direction parity.
    for &candidate_id in &candidate_bonds {
        let Some(candidate) = mol.bonds().get(candidate_id.index()) else {
            continue;
        };

        // --- Same structural checks as detect_atropisomers ---

        // Must be single.
        if candidate.order() != BondOrder::Single {
            continue;
        }

        // Not already sterochemically assigned.
        if candidate.stereo() == BondStereo::Any {
            continue;
        }

        // Degree check: 2-3.
        let begin_idx = candidate.begin().index();
        let end_idx = candidate.end().index();
        let deg_begin = degree.get(begin_idx).copied().unwrap_or(0);
        let deg_end = degree.get(end_idx).copied().unwrap_or(0);
        if deg_begin < 2 || deg_begin > 3 || deg_end < 2 || deg_end > 3 {
            continue;
        }

        // Hybridization: sp2.
        let hyb_begin = hybridization
            .get(begin_idx)
            .copied()
            .unwrap_or(crate::Hybridization::Unspecified);
        let hyb_end = hybridization
            .get(end_idx)
            .copied()
            .unwrap_or(crate::Hybridization::Unspecified);
        if hyb_begin != crate::Hybridization::Sp2 || hyb_end != crate::Hybridization::Sp2 {
            continue;
        }

        // Ring size check.
        let ring_count = rings.num_bond_rings(candidate_id);
        if ring_count > 0 {
            let min_sz = rings.min_bond_ring_size(candidate_id);
            if min_sz < 8 {
                continue;
            }
        }

        // Get neighbor bonds for both ends.
        let Some(parts) = atropisomer_atoms_and_bonds(mol, candidate_id) else {
            continue;
        };
        let [nbr0, nbr1] = &parts.neighbor_bonds;

        // --- Wedge direction parity analysis ---
        // RDKit's no-conf approach (Atropisomers.cpp:343-371):
        //
        // For each end of the atrop bond, check the wedge bonds.
        // Convention: end0 = begin atom, end1 = end atom.
        // begin atom is the "lower" index (down), end atom is "up".
        //
        // flips tracks parity:
        //   STEREOATROPCW → 1 flip
        //   whichBond == 1 → 1 flip
        //   whichEnd == 1 → 1 flip
        //   total flips % 2 → dash, otherwise wedge
        //
        // For stereo detection (the reverse), we look at wedge/hash on
        // each end:
        //   end0 wedge + end1 dash → STEREOATROPCCW
        //   end0 dash + end1 wedge → STEREOATROPCW

        // RDKit❗✔️: getBondDir returns the wedge direction for each end.
        // The first bond on each end is the "primary" bond.
        let dir0 = get_end_wedge_direction(mol, nbr0, candidate.begin());
        let dir1 = get_end_wedge_direction(mol, nbr1, candidate.end());

        let (has_dir0, wedge_dir0) = dir0;
        let (has_dir1, wedge_dir1) = dir1;

        if !has_dir0 || !has_dir1 {
            // One end doesn't have a clear wedge/hash → cannot assign
            // stereo without coordinates. Skip assignment.
            continue;
        }

        // Both ends have wedge/hash. The convention:
        //   end0 wedge + end1 dash = CCW
        //   end0 dash + end1 wedge = CW
        //   end0 wedge + end1 wedge = INVALID (warn)
        //   end0 dash + end1 dash = INVALID (warn)
        if wedge_dir0 == wedge_dir1 {
            // Both ends have the same direction: inconsistent wedging.
            // RDKit warns and returns without setting stereo.
            continue;
        }

        let stereo = match (wedge_dir0, wedge_dir1) {
            (crate::BondDirection::BeginWedge, crate::BondDirection::BeginDash) => {
                BondStereo::AtropCcw
            }
            (crate::BondDirection::BeginDash, crate::BondDirection::BeginWedge) => {
                BondStereo::AtropCw
            }
            _ => continue,
        };

        let chiral_tag = match stereo {
            BondStereo::AtropCw => ChiralTag::TetrahedralCw,
            BondStereo::AtropCcw => ChiralTag::TetrahedralCcw,
            _ => ChiralTag::Unspecified,
        };

        assignments.push((candidate_id, chiral_tag));
    }

    Ok(assignments)
}

/// Get the wedge direction for a set of neighbor bonds on one end of an
/// atropisomer axis. Returns (has_direction, direction).
///
/// RDKit logic (Atropisomers.cpp:251-287):
/// - If the first bond has a BeginWedge or BeginDash direction, use it.
/// - If the second bond has a direction, use the opposite.
/// - If both have directions, they must be different.
fn get_end_wedge_direction(
    mol: &Molecule,
    nbr_bonds: &[BondId],
    _focus_atom: AtomId,
) -> (bool, crate::BondDirection) {
    if nbr_bonds.is_empty() {
        return (false, crate::BondDirection::None);
    }

    let bond0 = match mol.bonds().get(nbr_bonds[0].index()) {
        Some(b) => b,
        None => return (false, crate::BondDirection::None),
    };
    let bond1 = if nbr_bonds.len() > 1 {
        mol.bonds().get(nbr_bonds[1].index())
    } else {
        None
    };

    let dir0 = bond0.direction();
    let effective_dir0 = if is_wedge_or_dash(dir0) {
        dir0
    } else {
        crate::BondDirection::None
    };

    let dir1 = bond1
        .map(|b| b.direction())
        .unwrap_or(crate::BondDirection::None);
    let effective_dir1 = if is_wedge_or_dash(dir1) {
        dir1
    } else {
        crate::BondDirection::None
    };

    // If both are set to a direction, they must NOT be the same.
    if effective_dir0 != crate::BondDirection::None
        && effective_dir1 != crate::BondDirection::None
        && effective_dir0 == effective_dir1
    {
        return (false, crate::BondDirection::None);
    }

    // Determine effective direction: if bond0 is wedge, use wedge.
    // If bond1 is dash, that means bond0 wants wedge (opposite).
    // RDKit: (bond1Dir == BEGINWEDGE || bond2Dir == BEGINDASH) → BEGINWEDGE
    if effective_dir0 == crate::BondDirection::BeginWedge
        || effective_dir1 == crate::BondDirection::BeginDash
    {
        return (true, crate::BondDirection::BeginWedge);
    }
    if effective_dir0 == crate::BondDirection::BeginDash
        || effective_dir1 == crate::BondDirection::BeginWedge
    {
        return (true, crate::BondDirection::BeginDash);
    }

    (true, crate::BondDirection::None)
}

/// Check if a bond direction is wedge or dash.
fn is_wedge_or_dash(dir: crate::BondDirection) -> bool {
    matches!(
        dir,
        crate::BondDirection::BeginWedge | crate::BondDirection::BeginDash
    )
}

// BEGIN RDKIT CPP FUNCTION: cleanupAtropisomerStereoGroups (Atropisomers.cpp:487-520)
// RDKit❗✔️: void cleanupAtropisomerStereoGroups(ROMol &mol) {
// RDKit❗✔️:   std::vector<StereoGroup> newsgs;
// RDKit❗✔️:   for (auto sg : mol.getStereoGroups()) {
// RDKit❗✔️:     std::vector<Atom *> okatoms;
// RDKit❗✔️:     std::vector<Bond *> okbonds;
// RDKit❗✔️:     for (auto atom : sg.getAtoms()) {
// RDKit❗✔️:       bool foundAtrop = false;
// RDKit❗✔️:       for (auto bndI : boost::make_iterator_range(mol.getAtomBonds(atom))) {
// RDKit❗✔️:         auto bond = (mol)[bndI];
// RDKit❗✔️:         if (bond->getStereo() == Bond::BondStereo::STEREOATROPCCW ||
// RDKit❗✔️:             bond->getStereo() == Bond::BondStereo::STEREOATROPCW) {
// RDKit❗✔️:           foundAtrop = true;
// RDKit❗✔️:           if (std::find(okbonds.begin(), okbonds.end(), bond) ==
// RDKit❗✔️:               okbonds.end()) {
// RDKit❗✔️:             okbonds.push_back(bond);
// RDKit❗✔️:           }
// RDKit❗✔️:         }
// RDKit❗✔️:       }
// RDKit❗✔️:       if (!foundAtrop) {
// RDKit❗✔️:         okatoms.push_back(atom);
// RDKit❗✔️:       }
// RDKit❗✔️:     }
// RDKit❗✔️:     if (okbonds.empty()) {
// RDKit❗✔️:       newsgs.push_back(sg);
// RDKit❗✔️:     } else {
// RDKit❗✔️:       newsgs.emplace_back(sg.getGroupType(), std::move(okatoms),
// RDKit❗✔️:                           std::move(okbonds));
// RDKit❗✔️:     }
// RDKit❗✔️:   }
// RDKit❗✔️:   mol.setStereoGroups(std::move(newsgs));
// RDKit❗✔️: }
// END RDKIT CPP FUNCTION: cleanupAtropisomerStereoGroups
///
/// Remove atropisomer bonds from stereo groups and move them to bond-only
/// groups. In RDKit, atropisomer stereo groups track which atoms participate
/// in the atropisomer wedge bonds. This function extracts atropisomer bonds
/// from stereo groups so they can be properly tracked.
///
/// Returns a list of atropisomer bonds that were found in stereo groups.
pub fn cleanup_atropisomer_stereo_groups(mol: &Molecule) -> Vec<BondId> {
    let mut atrop_bonds = Vec::new();
    for bond in mol.bonds() {
        if matches!(bond.stereo(), BondStereo::AtropCw | BondStereo::AtropCcw) {
            atrop_bonds.push(bond.id());
        }
    }
    atrop_bonds
}

/// Validate an atropisomer assignment: check that a bond flagged as
/// atropisomer actually satisfies the structural criteria.
///
/// Returns Ok if the bond is a valid atropisomer, or Err with a
/// description of why it's not.
pub fn validate_atropisomer_assignment(mol: &Molecule, bond_id: BondId) -> Result<(), AtropError> {
    let rings = mol
        .derived_cache()
        .rings
        .as_ref()
        .ok_or(AtropError::NoRingInfo)?;

    let bond = mol
        .bonds()
        .get(bond_id.index())
        .ok_or(AtropError::InvalidBond {
            bond: bond_id.index(),
            bond_count: mol.bonds().len(),
        })?;

    // Must be a single bond.
    if bond.order() != BondOrder::Single {
        return Err(AtropError::UnsupportedBranch {
            message: "atropisomer bond must be single",
        });
    }

    // Both ends must be sp2.
    let begin_h = mol.atoms()[bond.begin().index()].hybridization();
    let end_h = mol.atoms()[bond.end().index()].hybridization();
    if begin_h != crate::Hybridization::Sp2 || end_h != crate::Hybridization::Sp2 {
        return Err(AtropError::UnsupportedBranch {
            message: "atropisomer bond endpoints must be sp2 hybridized",
        });
    }

    // If in a ring, the smallest ring must be >= 8.
    let ring_count = rings.num_bond_rings(bond_id);
    if ring_count > 0 {
        let min_sz = rings.min_bond_ring_size(bond_id);
        if min_sz < 8 {
            return Err(AtropError::UnsupportedBranch {
                message: "atropisomer bond is in a ring smaller than 8",
            });
        }
    }

    // Must have neighbor bonds on both ends.
    if atropisomer_atoms_and_bonds(mol, bond_id).is_none() {
        return Err(AtropError::UnsupportedBranch {
            message: "atropisomer bond must have neighbor bonds on both ends",
        });
    }

    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::{Element, Molecule, atom::AtomSpec, bond::BondSpec, builder::MoleculeBuilder};

    #[test]
    fn atropisomer_atoms_and_bonds_orders_two_neighbors_by_other_atom_index() {
        let mut builder = MoleculeBuilder::new();
        let low_left = builder.add_atom(AtomSpec::new(Element::C));
        let begin = builder.add_atom(AtomSpec::new(Element::C));
        let end = builder.add_atom(AtomSpec::new(Element::C));
        let low_right = builder.add_atom(AtomSpec::new(Element::C));
        let high_left = builder.add_atom(AtomSpec::new(Element::C));
        let high_right = builder.add_atom(AtomSpec::new(Element::C));
        let axis = builder
            .add_bond(BondSpec::new(begin, end, BondOrder::Single))
            .unwrap();
        let high_left_bond = builder
            .add_bond(BondSpec::new(begin, high_left, BondOrder::Single))
            .unwrap();
        let low_left_bond = builder
            .add_bond(BondSpec::new(begin, low_left, BondOrder::Single))
            .unwrap();
        let high_right_bond = builder
            .add_bond(BondSpec::new(end, high_right, BondOrder::Single))
            .unwrap();
        let low_right_bond = builder
            .add_bond(BondSpec::new(end, low_right, BondOrder::Single))
            .unwrap();
        let molecule = builder.build().unwrap();

        let parts = atropisomer_atoms_and_bonds(&molecule, axis).unwrap();
        assert_eq!(parts.atoms, [begin, end]);
        assert_eq!(
            parts.neighbor_bonds,
            [
                vec![low_left_bond, high_left_bond],
                vec![low_right_bond, high_right_bond],
            ]
        );
        assert_eq!(
            parts.first_neighbor_atoms(&molecule),
            Some([low_left, low_right])
        );
        assert_eq!(
            get_atropisomer_atoms_and_bonds(&molecule, axis),
            Some([begin, end])
        );
    }

    #[test]
    fn atropisomer_atoms_and_bonds_preserves_adjacency_order_above_two_neighbors() {
        let mut builder = MoleculeBuilder::new();
        let begin = builder.add_atom(AtomSpec::new(Element::C));
        let end = builder.add_atom(AtomSpec::new(Element::C));
        let first = builder.add_atom(AtomSpec::new(Element::C));
        let second = builder.add_atom(AtomSpec::new(Element::C));
        let third = builder.add_atom(AtomSpec::new(Element::C));
        let right = builder.add_atom(AtomSpec::new(Element::C));
        let axis = builder
            .add_bond(BondSpec::new(begin, end, BondOrder::Single))
            .unwrap();
        let first_bond = builder
            .add_bond(BondSpec::new(begin, third, BondOrder::Single))
            .unwrap();
        let second_bond = builder
            .add_bond(BondSpec::new(begin, first, BondOrder::Single))
            .unwrap();
        let third_bond = builder
            .add_bond(BondSpec::new(begin, second, BondOrder::Single))
            .unwrap();
        let right_bond = builder
            .add_bond(BondSpec::new(end, right, BondOrder::Single))
            .unwrap();
        let molecule = builder.build().unwrap();

        let parts = atropisomer_atoms_and_bonds(&molecule, axis).unwrap();
        assert_eq!(
            parts.neighbor_bonds,
            [vec![first_bond, second_bond, third_bond], vec![right_bond]]
        );
        assert_eq!(parts.first_neighbor_atoms(&molecule), Some([third, right]));
    }

    #[test]
    fn atropisomer_atoms_and_bonds_rejects_an_axis_with_a_dead_end() {
        let mut builder = MoleculeBuilder::new();
        let begin = builder.add_atom(AtomSpec::new(Element::C));
        let end = builder.add_atom(AtomSpec::new(Element::C));
        let left = builder.add_atom(AtomSpec::new(Element::C));
        let axis = builder
            .add_bond(BondSpec::new(begin, end, BondOrder::Single))
            .unwrap();
        builder
            .add_bond(BondSpec::new(begin, left, BondOrder::Single))
            .unwrap();
        let molecule = builder.build().unwrap();

        assert!(atropisomer_atoms_and_bonds(&molecule, axis).is_none());
        assert!(get_atropisomer_atoms_and_bonds(&molecule, axis).is_none());
    }

    fn build_simple_biaryl() -> Molecule {
        // Build a simple biphenyl-like molecule:
        // Two phenyl rings connected by a single bond.
        // c1ccccc1-c2ccccc2
        // For testing, construct manually.
        let mut builder = MoleculeBuilder::new();

        // Ring 1: c1-c2-c3-c4-c5-c6
        let c1 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c2 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c3 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c4 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c5 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c6 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );

        // Ring 2: c7-c8-c9-c10-c11-c12
        let c7 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c8 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c9 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c10 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c11 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );
        let c12 = builder.add_atom(
            AtomSpec::new(Element::C)
                .with_aromatic(true)
                .with_hybridization(crate::Hybridization::Sp2),
        );

        // Ring 1 bonds (aromatic)
        builder.add_bond(BondSpec::new(c1, c2, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c2, c3, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c3, c4, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c4, c5, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c5, c6, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c6, c1, BondOrder::Aromatic));

        // Ring 2 bonds (aromatic)
        builder.add_bond(BondSpec::new(c7, c8, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c8, c9, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c9, c10, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c10, c11, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c11, c12, BondOrder::Aromatic));
        builder.add_bond(BondSpec::new(c12, c7, BondOrder::Aromatic));

        // Biaryl bond (single): c1-c7
        builder.add_bond(BondSpec::new(c1, c7, BondOrder::Single));

        builder.build().expect("molecule should build")
    }

    #[test]
    fn test_detect_atropisomers_biaryl() {
        let mol = build_simple_biaryl();
        // Simple biphenyl doesn't have sp2 hybridization on the biaryl bond
        // atoms (they'd be sp2 if the ring is aromatic), and the bond is
        // single, but in practice biphenyl is not atropisomeric because
        // the rings rotate freely. Our detection is structural — it may
        // flag it, but that's acceptable as a candidate.
        // Without ring info (not sanitized), we expect NoRingInfo.
        let result = detect_atropisomers(&mol, &AtropisomerParams::default());
        // The molecule doesn't have ring info since we built manually.
        assert!(result.is_err());
        assert!(matches!(result.unwrap_err(), AtropError::NoRingInfo));
    }

    #[test]
    fn test_get_atropisomer_neighbor_bonds_empty() {
        // Single atom molecule has no bonds.
        let mut builder = MoleculeBuilder::new();
        let _c1 = builder.add_atom(AtomSpec::new(Element::C));
        let _mol = builder.build().expect("molecule should build");

        // Single atom has no bonds, so neighbor lookup for any bond ID
        // would fail. This tests that the error case is handled.
    }

    #[test]
    fn test_does_mol_have_atropisomers_default() {
        let mol = build_simple_biaryl();
        assert!(!does_mol_have_atropisomers(&mol));
    }

    #[test]
    fn test_assign_atropisomer_stereo_no_wedges() {
        let mol = build_simple_biaryl();
        // No wedge directions set, so no assignments.
        let result = assign_atropisomer_stereo(&mol);
        assert!(result.is_err() || result.unwrap().is_empty());
    }

    #[test]
    fn test_validate_bond_invalid() {
        let mol = build_simple_biaryl();
        let result = validate_atropisomer_assignment(&mol, BondId::new(99));
        // Without ring info (not sanitized), we expect NoRingInfo.
        // With ring info, we'd expect InvalidBond.
        assert!(
            result.is_err(),
            "expected error for out-of-range bond, got Ok"
        );
    }
}