liblevenshtein 0.9.1

Levenshtein/Universal Automata for approximate string matching using various dictionary backends
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
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
//! Rule application for phonetic rewrite systems.
//!
//! This module implements the rule application logic for phonetic rewrite rules,
//! with the core loop shape modeled in
//! `docs/verification/phonetic/rewrite_rules.v`. The current implementation
//! uses span-aware contexts and runtime extensions beyond the legacy proof
//! subset.
//!
//! # Functions
//!
//! - [`apply_rule_at`] - Apply a rule at a specific position
//! - [`find_first_match`] - Find first matching position
//! - [`apply_rules_seq`] - Sequential rule application
//!
//! # Constants
//!
//! - [`MAX_EXPANSION_FACTOR`] - Runtime per-application expansion guard
//!
//! # Formal Guarantees
//!
//! The legacy Rocq model proves theorem-shaped properties for its modeled
//! subset. The expanded Rust rule set is additionally checked by tests.
//!
//! - **Bounded Expansion** (Theorem 2, `zompist_rules.v:425`):
//!   Output length is bounded for modeled rules
//!
//! - **Termination** (Theorem 4, `zompist_rules.v:569`):
//!   Sequential application always terminates with sufficient fuel
//!
//! - **Idempotence** (Theorem 5, `zompist_rules.v:615`):
//!   Fixed points remain unchanged under further application

use super::common::PhoneticUnit;
use super::matching::{context_matches, pattern_matches_at};
use super::syllable::evaluate_syllable_expr;
use super::types::{Phone, RewriteRule};
use std::collections::HashSet;

// ============================================================================
// Backward compatibility type aliases
// ============================================================================

// Re-export concrete types for backward compatibility
pub use super::types::{
    ContextByte, ContextChar, PhoneByte, PhoneChar, RewriteRuleByte, RewriteRuleChar,
};

/// Result of applying phonetic rules with cycle awareness (byte-level).
pub type NormalizationResultByte = NormalizationResult<u8>;

/// Result of applying phonetic rules with cycle awareness (character-level).
pub type NormalizationResultChar = NormalizationResult<char>;

// ============================================================================
// Generic phones_to_string function
// ============================================================================

/// Convert a slice of Phone units to a string for syllable evaluation.
/// Extracts the characters from vowels, consonants, digraphs, trigraphs, tetragraphs,
/// pentagraphs, hexagraphs, heptagraphs, and sequences.
fn phones_to_string<U: PhoneticUnit>(phones: &[Phone<U>]) -> String {
    let mut result = String::with_capacity(phones.len() * 7);
    for phone in phones {
        match phone {
            Phone::Vowel(c) | Phone::Consonant(c) => result.push(U::to_char(*c)),
            Phone::Digraph(c1, c2) => {
                result.push(U::to_char(*c1));
                result.push(U::to_char(*c2));
            }
            Phone::Trigraph(c1, c2, c3) => {
                result.push(U::to_char(*c1));
                result.push(U::to_char(*c2));
                result.push(U::to_char(*c3));
            }
            Phone::Tetragraph(c1, c2, c3, c4) => {
                result.push(U::to_char(*c1));
                result.push(U::to_char(*c2));
                result.push(U::to_char(*c3));
                result.push(U::to_char(*c4));
            }
            Phone::Pentagraph(c1, c2, c3, c4, c5) => {
                result.push(U::to_char(*c1));
                result.push(U::to_char(*c2));
                result.push(U::to_char(*c3));
                result.push(U::to_char(*c4));
                result.push(U::to_char(*c5));
            }
            Phone::Hexagraph(c1, c2, c3, c4, c5, c6) => {
                result.push(U::to_char(*c1));
                result.push(U::to_char(*c2));
                result.push(U::to_char(*c3));
                result.push(U::to_char(*c4));
                result.push(U::to_char(*c5));
                result.push(U::to_char(*c6));
            }
            Phone::Heptagraph(c1, c2, c3, c4, c5, c6, c7) => {
                result.push(U::to_char(*c1));
                result.push(U::to_char(*c2));
                result.push(U::to_char(*c3));
                result.push(U::to_char(*c4));
                result.push(U::to_char(*c5));
                result.push(U::to_char(*c6));
                result.push(U::to_char(*c7));
            }
            Phone::Sequence(s) => {
                for c in s {
                    result.push(U::to_char(*c));
                }
            }
            Phone::Silent => {}
        }
    }
    result
}

#[cfg(feature = "perf-instrumentation")]
use std::sync::atomic::{AtomicUsize, Ordering};

#[cfg(feature = "perf-instrumentation")]
static BYTES_COPIED: AtomicUsize = AtomicUsize::new(0);

#[cfg(feature = "perf-instrumentation")]
static ALLOCATIONS: AtomicUsize = AtomicUsize::new(0);

/// Return the current performance counters as `(bytes_copied, allocations)`.
#[cfg(feature = "perf-instrumentation")]
pub fn get_perf_stats() -> (usize, usize) {
    (
        BYTES_COPIED.load(Ordering::Relaxed),
        ALLOCATIONS.load(Ordering::Relaxed),
    )
}

/// Reset the performance counters to zero.
#[cfg(feature = "perf-instrumentation")]
pub fn reset_perf_stats() {
    BYTES_COPIED.store(0, Ordering::Relaxed);
    ALLOCATIONS.store(0, Ordering::Relaxed);
}

/// Maximum per-application expansion allowance for phonetic rewrite rules.
///
/// **Legacy Formal Specification**: Theorem 2,
/// `docs/verification/phonetic/zompist_rules.v:425`
///
/// This constant bounds the maximum string growth from any single rule application.
/// Runtime tests assert that every current built-in Zompist rule stays within it:
///
/// ```text
/// length(output) ≤ length(input) + MAX_EXPANSION_FACTOR
/// ```
///
/// The legacy Rocq theorem proves the analogous property for the modeled subset.
pub const MAX_EXPANSION_FACTOR: usize = 20;

/// Maximum total expansion allowed during normalization.
///
/// This is a defensive safeguard against runaway expansion caused by
/// pathological rule interactions (e.g., expansion rules that create
/// patterns matching other expansion rules).
///
/// If the result exceeds `input.len() + MAX_TOTAL_EXPANSION`, normalization
/// is aborted and the current state is returned with a warning.
pub const MAX_TOTAL_EXPANSION: usize = 100;

// ============================================================================
// Position-dependent context checks (generic)
// ============================================================================

/// Check if any rules have position-dependent contexts.
///
/// **Formal Specification**: `docs/verification/phonetic/position_skipping_proof.v:3453`
///
/// Returns `true` if position skipping is UNSAFE (any rule uses `Context::Final`).
/// Returns `false` if position skipping is SAFE.
///
/// # Position Skipping Safety
///
/// Position skipping optimization starts the next rule search from the last match
/// position instead of position 0. This is SAFE when no rules use `Context::Final`
/// because:
///
/// - All other contexts (Initial, BeforeVowel, AfterConsonant, etc.) depend only
///   on local structure, not on the overall string length
/// - `Final` depends on `pos == s.len()`, which changes when the string is shortened
///
/// # Example
///
/// ```rust,ignore
/// use liblevenshtein::phonetic::{has_position_dependent_rules, orthography_rules, phonetic_rules};
///
/// // orthography_rules contains rule_silent_e_final with Context::Final
/// assert!(has_position_dependent_rules(&orthography_rules()));
///
/// // phonetic_rules has no Final context - safe for optimization
/// assert!(!has_position_dependent_rules(&phonetic_rules()));
/// ```
#[inline]
pub fn has_position_dependent_rules<U: PhoneticUnit>(rules: &[RewriteRule<U>]) -> bool {
    rules.iter().any(|r| r.context.is_position_dependent())
}

// ============================================================================
// Rule application (generic)
// ============================================================================

/// Check if a rewrite rule can be applied at a specific position.
///
/// **Performance Optimization**: This function checks rule applicability without
/// allocating a result vector, making it much faster for position scanning.
///
/// # Arguments
///
/// - `rule` - The rewrite rule to check
/// - `s` - The phonetic string
/// - `pos` - The position to check
///
/// # Returns
///
/// - `true` if the rule can be applied at the position
/// - `false` otherwise
#[inline]
pub fn can_apply_at<U: PhoneticUnit>(rule: &RewriteRule<U>, s: &[Phone<U>], pos: usize) -> bool {
    // Check pattern matches first (quick rejection)
    if !pattern_matches_at(&rule.pattern, s, pos) {
        return false;
    }

    // Check context - context_matches now handles position computation internally
    // based on context type (Initial/After* check at start, Final/Before* check at end)
    if !context_matches(&rule.context, s, pos, rule.pattern.len()) {
        return false;
    }

    // Check syllable condition if present
    if let Some(ref syllable_expr) = rule.syllable_condition {
        // Convert Phone slice to string for syllable evaluation
        let word = phones_to_string(s);
        if !evaluate_syllable_expr(syllable_expr, &word, pos) {
            return false;
        }
    }

    true
}

/// Apply a rewrite rule at a specific position if possible.
///
/// **Legacy Formal Specification**:
/// `docs/verification/phonetic/rewrite_rules.v` (`apply_rule_at_span`)
///
/// Attempts to apply a rule at the given position in the phonetic string.
/// Returns `Some(new_string)` if the rule applies, `None` otherwise.
///
/// # Algorithm
///
/// 1. Check if the context is satisfied at the position
/// 2. Check if the pattern matches at the position
/// 3. If both conditions hold, replace the pattern with the replacement
///
/// # Arguments
///
/// - `rule` - The rewrite rule to apply
/// - `s` - The phonetic string
/// - `pos` - The position to attempt application
///
/// # Returns
///
/// - `Some(new_string)` if the rule applies at the position
/// - `None` if the rule does not apply
///
/// # Examples
///
/// ```rust,ignore
/// use liblevenshtein::phonetic::{apply_rule_at, Phone, Context, RewriteRule};
///
/// let rule = RewriteRule {
///     rule_id: 1,
///     rule_name: "gh → f".to_string(),
///     pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
///     replacement: vec![Phone::Consonant(b'f')],
///     context: Context::Anywhere,
///     weight: 0.15,
///     syllable_condition: None,
/// };
///
/// let s = vec![
///     Phone::Vowel(b'e'),
///     Phone::Consonant(b'g'),
///     Phone::Consonant(b'h'),
/// ];
///
/// let result = apply_rule_at(&rule, &s, 1);
/// assert_eq!(result, Some(vec![Phone::Vowel(b'e'), Phone::Consonant(b'f')]));
/// ```
pub fn apply_rule_at<U: PhoneticUnit>(
    rule: &RewriteRule<U>,
    s: &[Phone<U>],
    pos: usize,
) -> Option<Vec<Phone<U>>> {
    // Check if rule can be applied (no allocation)
    if !can_apply_at(rule, s, pos) {
        return None;
    }

    // Build result: prefix + replacement + suffix
    let mut result = Vec::with_capacity(s.len() + MAX_EXPANSION_FACTOR);

    #[cfg(feature = "perf-instrumentation")]
    {
        ALLOCATIONS.fetch_add(1, Ordering::Relaxed);
        // Count bytes copied: prefix + replacement + suffix
        let bytes_copied = pos + rule.replacement.len() + (s.len() - pos - rule.pattern.len());
        BYTES_COPIED.fetch_add(bytes_copied, Ordering::Relaxed);
    }

    result.extend_from_slice(&s[..pos]);
    result.extend_from_slice(&rule.replacement);
    result.extend_from_slice(&s[(pos + rule.pattern.len())..]);

    Some(result)
}

/// Find the first position where a rule can be applied.
///
/// **Formal Specification**: `docs/verification/phonetic/rewrite_rules.v:190-198`
///
/// Scans the string from left to right to find the first position where
/// the rule can be applied.
///
/// # Arguments
///
/// - `rule` - The rewrite rule to match
/// - `s` - The phonetic string
///
/// # Returns
///
/// - `Some(pos)` if the rule can be applied at position `pos`
/// - `None` if the rule cannot be applied anywhere
pub fn find_first_match<U: PhoneticUnit>(rule: &RewriteRule<U>, s: &[Phone<U>]) -> Option<usize> {
    find_first_match_from(rule, s, 0)
}

/// Find the first position where a rule can be applied, starting from a given position.
///
/// This is an optimization helper for sequential rule application.
///
/// # Arguments
///
/// - `rule` - The rewrite rule to match
/// - `s` - The phonetic string
/// - `start_pos` - The position to start scanning from (0-based)
///
/// # Returns
///
/// - `Some(pos)` if the rule can be applied at position `pos >= start_pos`
/// - `None` if the rule cannot be applied anywhere from `start_pos` onward
#[inline]
pub fn find_first_match_from<U: PhoneticUnit>(
    rule: &RewriteRule<U>,
    s: &[Phone<U>],
    start_pos: usize,
) -> Option<usize> {
    // Try each position from start_pos to s.len()
    // Optimization: use can_apply_at() to avoid allocating vectors during search
    for pos in start_pos..=s.len() {
        if can_apply_at(rule, s, pos) {
            return Some(pos);
        }
    }
    None
}

/// Apply a list of rules sequentially until fixed point or fuel exhausted.
///
/// **Formal Specification**: `docs/verification/phonetic/rewrite_rules.v:203-227`
///
/// Applies rules in order, restarting from the first rule after each successful
/// application, until no rules can be applied or fuel is exhausted.
///
/// # Formal Guarantees
///
/// - **Termination** (Theorem 4, `zompist_rules.v:569`):
///   Always terminates with sufficient fuel
///
/// - **Idempotence** (Theorem 5, `zompist_rules.v:615`):
///   Result is a fixed point (applying rules again produces the same result)
///
/// # Algorithm
///
/// ```text
/// loop:
///   for each rule r in rules:
///     if r can be applied:
///       apply r
///       restart loop
///   no rules applied → return fixed point
/// ```
///
/// # Arguments
///
/// - `rules` - The list of rewrite rules to apply
/// - `s` - The phonetic string
/// - `fuel` - Maximum number of iterations (prevents infinite loops)
///
/// # Returns
///
/// - `Some(result)` with the transformed string
/// - `Some(current)` if fuel is exhausted before a fixed point is reached
///
/// # Fuel Calculation
///
/// The legacy proof model uses this sufficient-fuel shape:
///
/// Sufficient fuel is:
/// ```text
/// fuel >= length(s) * length(rules) * MAX_EXPANSION_FACTOR
/// ```
///
/// For practical use, `fuel = s.len() * rules.len() * 100` is recommended.
pub fn apply_rules_seq<U: PhoneticUnit>(
    rules: &[RewriteRule<U>],
    s: &[Phone<U>],
    fuel: usize,
) -> Option<Vec<Phone<U>>> {
    let mut current = s.to_vec();
    let original_len = s.len();

    #[cfg(feature = "perf-instrumentation")]
    {
        ALLOCATIONS.fetch_add(1, Ordering::Relaxed);
        BYTES_COPIED.fetch_add(s.len(), Ordering::Relaxed);
    }

    let mut remaining_fuel = fuel;

    loop {
        if remaining_fuel == 0 {
            // Out of fuel - return current state
            return Some(current);
        }

        let mut applied = false;

        // Try each rule in order
        for rule in rules {
            if let Some(pos) = find_first_match(rule, &current) {
                if let Some(new_s) = apply_rule_at(rule, &current, pos) {
                    // Defensive safeguard: abort if expansion exceeds limit
                    if new_s.len() > original_len + MAX_TOTAL_EXPANSION {
                        eprintln!(
                            "[phonetic] Warning: Normalization exceeded expansion limit \
                             ({} > {} + {}). Returning current state to prevent runaway expansion. \
                             Consider revising rules to avoid pathological interactions.",
                            new_s.len(),
                            original_len,
                            MAX_TOTAL_EXPANSION
                        );
                        return Some(current);
                    }
                    current = new_s;
                    remaining_fuel -= 1;
                    applied = true;
                    break; // Restart from first rule
                }
            }
        }

        if !applied {
            // Fixed point reached - no rules can be applied
            return Some(current);
        }
    }
}

// ============================================================================
// Cycle-aware rule application with equivalence set recovery (generic)
// ============================================================================

/// Result of applying phonetic rules with cycle awareness.
///
/// This enum distinguishes between three outcomes:
/// - `FixedPoint`: No more rules can be applied (normal termination)
/// - `Cycle`: A cycle was detected, returning all equivalent forms
/// - `FuelExhausted`: Ran out of fuel before termination (shouldn't happen with sufficient fuel)
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum NormalizationResult<U: PhoneticUnit> {
    /// Reached a fixed point where no rules can be applied.
    FixedPoint(Vec<Phone<U>>),

    /// Detected a cycle - all forms in the set are equivalent.
    /// The cycle may include forms that are not directly reachable from each other,
    /// but all appeared on the path to detecting the cycle.
    Cycle(HashSet<Vec<Phone<U>>>),

    /// Fuel exhausted before reaching a fixed point or detecting a cycle.
    FuelExhausted(Vec<Phone<U>>),
}

impl<U: PhoneticUnit> NormalizationResult<U> {
    /// Get a canonical representative form.
    ///
    /// For fixed points and fuel exhaustion, returns the result.
    /// For cycles, returns the shortest form.
    pub fn canonical(&self) -> Vec<Phone<U>> {
        match self {
            NormalizationResult::FixedPoint(s) => s.clone(),
            NormalizationResult::FuelExhausted(s) => s.clone(),
            NormalizationResult::Cycle(set) => {
                // Pick shortest form
                set.iter()
                    .min_by_key(|v| v.len())
                    .cloned()
                    .unwrap_or_default()
            }
        }
    }

    /// Get all equivalent forms.
    ///
    /// For fixed points and fuel exhaustion, returns a singleton set.
    /// For cycles, returns all forms that appeared in the cycle.
    pub fn all_forms(&self) -> HashSet<Vec<Phone<U>>> {
        match self {
            NormalizationResult::FixedPoint(s) => {
                let mut set = HashSet::new();
                set.insert(s.clone());
                set
            }
            NormalizationResult::FuelExhausted(s) => {
                let mut set = HashSet::new();
                set.insert(s.clone());
                set
            }
            NormalizationResult::Cycle(set) => set.clone(),
        }
    }

    /// Returns `true` if a cycle was detected.
    pub fn is_cycle(&self) -> bool {
        matches!(self, NormalizationResult::Cycle(_))
    }

    /// Returns `true` if a fixed point was reached.
    pub fn is_fixed_point(&self) -> bool {
        matches!(self, NormalizationResult::FixedPoint(_))
    }
}

/// Apply rules with cycle detection and equivalence set recovery.
///
/// This function tracks all intermediate forms and detects when a previously
/// seen form is reached again (indicating a cycle). When a cycle is detected,
/// all forms seen on the path are returned as an equivalence set.
///
/// # Algorithm
///
/// ```text
/// seen = {s}
/// current = s
/// loop:
///   for each rule r in rules:
///     if r can be applied:
///       new = apply r to current
///       if new in seen:
///         log warning and return Cycle(seen)
///       seen.insert(new)
///       current = new
///       restart loop
///   no rules applied → return FixedPoint(current)
/// ```
///
/// # Arguments
///
/// - `rules` - The list of rewrite rules to apply
/// - `s` - The phonetic string
/// - `fuel` - Maximum number of iterations (prevents infinite loops in degenerate cases)
///
/// # Returns
///
/// - `FixedPoint(result)` if no rules can be applied
/// - `Cycle(set)` if a previously seen form is reached (all forms in cycle)
/// - `FuelExhausted(current)` if fuel runs out (rare with proper fuel calculation)
///
/// # Example
///
/// ```rust,ignore
/// // With rules u -> you and you -> u:
/// // Input "u" will detect a cycle and return {u, you}
/// match apply_rules_with_cycle_detection(&rules, &phones, fuel) {
///     NormalizationResult::Cycle(forms) => {
///         // forms contains all equivalent normalizations
///         let canonical = forms.iter().min_by_key(|f| f.len()).unwrap();
///     }
///     NormalizationResult::FixedPoint(result) => {
///         // Normal case - no cycle
///     }
///     _ => {}
/// }
/// ```
pub fn apply_rules_with_cycle_detection<U: PhoneticUnit>(
    rules: &[RewriteRule<U>],
    s: &[Phone<U>],
    fuel: usize,
) -> NormalizationResult<U> {
    let mut current = s.to_vec();
    let mut seen: HashSet<Vec<Phone<U>>> = HashSet::new();
    let mut remaining_fuel = fuel;

    seen.insert(current.clone());

    loop {
        if remaining_fuel == 0 {
            return NormalizationResult::FuelExhausted(current);
        }

        let mut applied = false;

        for rule in rules {
            if let Some(pos) = find_first_match(rule, &current) {
                if let Some(new_s) = apply_rule_at(rule, &current, pos) {
                    // Check for cycle BEFORE updating current
                    if seen.contains(&new_s) {
                        // Cycle detected! Log warning and return all forms
                        eprintln!(
                            "[phonetic] Warning: Cycle detected in rule application. \
                             {} equivalent forms found and will all be indexed. \
                             Consider revising rules to avoid cycles.",
                            seen.len()
                        );
                        return NormalizationResult::Cycle(seen);
                    }

                    seen.insert(new_s.clone());
                    current = new_s;
                    remaining_fuel -= 1;
                    applied = true;
                    break; // Restart from first rule
                }
            }
        }

        if !applied {
            return NormalizationResult::FixedPoint(current);
        }
    }
}

// ============================================================================
// Optimized rule application with conditional position skipping (generic)
// ============================================================================

/// Apply rules with position skipping optimization enabled.
///
/// **Formal Specification**: `docs/verification/phonetic/position_skipping_proof.v`
///
/// **SAFETY**: This function MUST only be called when no rules use `Context::Final`.
/// Verify with [`has_position_dependent_rules`] before calling this function directly.
///
/// # Algorithm
///
/// ```text
/// last_pos = 0
/// loop:
///   for each rule r in rules:
///     if r can be applied at pos >= last_pos:
///       apply r at pos
///       last_pos = pos  // Key optimization: skip positions [0, last_pos)
///       restart loop
///   no rules applied → return fixed point
/// ```
///
/// # Performance
///
/// Position skipping reduces redundant position checks. When rules repeatedly
/// apply near the same position, this can significantly reduce iterations.
///
/// # Arguments
///
/// - `rules` - The list of rewrite rules (MUST NOT contain `Context::Final`)
/// - `s` - The phonetic string
/// - `fuel` - Maximum number of iterations
///
/// # Returns
///
/// - `Some(result)` with the transformed string
/// - `None` if fuel is exhausted
pub fn apply_rules_seq_optimized<U: PhoneticUnit>(
    rules: &[RewriteRule<U>],
    s: &[Phone<U>],
    fuel: usize,
) -> Option<Vec<Phone<U>>> {
    debug_assert!(
        !has_position_dependent_rules(rules),
        "apply_rules_seq_optimized requires no position-dependent rules (Context::Final)"
    );

    let mut current = s.to_vec();

    #[cfg(feature = "perf-instrumentation")]
    {
        ALLOCATIONS.fetch_add(1, Ordering::Relaxed);
        BYTES_COPIED.fetch_add(s.len(), Ordering::Relaxed);
    }

    let mut remaining_fuel = fuel;
    let mut last_pos: usize = 0; // Position skipping: start from here

    loop {
        if remaining_fuel == 0 {
            // Out of fuel - return current state
            return Some(current);
        }

        let mut applied = false;

        // Try each rule in order, starting from last_pos
        for rule in rules {
            // Key optimization: search from last_pos instead of 0
            if let Some(pos) = find_first_match_from(rule, &current, last_pos) {
                if let Some(new_s) = apply_rule_at(rule, &current, pos) {
                    current = new_s;
                    remaining_fuel -= 1;
                    last_pos = pos; // Next iteration starts from here
                    applied = true;
                    break; // Restart from first rule
                }
            }
        }

        if !applied {
            // Fixed point reached - no rules can be applied
            return Some(current);
        }
    }
}

// ============================================================================
// Backward compatibility aliases (byte-level)
// ============================================================================

/// Check if any rules have position-dependent contexts (byte-level).
///
/// Backward-compatible alias for [`has_position_dependent_rules::<u8>`].
#[inline]
pub fn has_position_dependent_rules_byte(rules: &[RewriteRule<u8>]) -> bool {
    has_position_dependent_rules(rules)
}

/// Check if a rewrite rule can be applied at a specific position (byte-level).
///
/// Backward-compatible alias for [`can_apply_at::<u8>`].
#[inline]
pub fn can_apply_at_byte(rule: &RewriteRule<u8>, s: &[Phone<u8>], pos: usize) -> bool {
    can_apply_at(rule, s, pos)
}

/// Apply a rewrite rule at a specific position if possible (byte-level).
///
/// Backward-compatible alias for [`apply_rule_at::<u8>`].
#[inline]
pub fn apply_rule_at_byte(
    rule: &RewriteRule<u8>,
    s: &[Phone<u8>],
    pos: usize,
) -> Option<Vec<Phone<u8>>> {
    apply_rule_at(rule, s, pos)
}

/// Find the first position where a rule can be applied (byte-level).
///
/// Backward-compatible alias for [`find_first_match::<u8>`].
#[inline]
pub fn find_first_match_byte(rule: &RewriteRule<u8>, s: &[Phone<u8>]) -> Option<usize> {
    find_first_match(rule, s)
}

/// Find the first position where a rule can be applied, starting from a given position (byte-level).
///
/// Backward-compatible alias for [`find_first_match_from::<u8>`].
#[inline]
pub fn find_first_match_from_byte(
    rule: &RewriteRule<u8>,
    s: &[Phone<u8>],
    start_pos: usize,
) -> Option<usize> {
    find_first_match_from(rule, s, start_pos)
}

/// Apply a list of rules sequentially until fixed point or fuel exhausted (byte-level).
///
/// Backward-compatible alias for [`apply_rules_seq::<u8>`].
#[inline]
pub fn apply_rules_seq_byte(
    rules: &[RewriteRule<u8>],
    s: &[Phone<u8>],
    fuel: usize,
) -> Option<Vec<Phone<u8>>> {
    apply_rules_seq(rules, s, fuel)
}

/// Apply rules with cycle detection (byte-level).
///
/// Backward-compatible alias for [`apply_rules_with_cycle_detection::<u8>`].
#[inline]
pub fn apply_rules_with_cycle_detection_byte(
    rules: &[RewriteRule<u8>],
    s: &[Phone<u8>],
    fuel: usize,
) -> NormalizationResult<u8> {
    apply_rules_with_cycle_detection(rules, s, fuel)
}

/// Apply rules with position skipping optimization (byte-level).
///
/// Backward-compatible alias for [`apply_rules_seq_optimized::<u8>`].
#[inline]
pub fn apply_rules_seq_optimized_byte(
    rules: &[RewriteRule<u8>],
    s: &[Phone<u8>],
    fuel: usize,
) -> Option<Vec<Phone<u8>>> {
    apply_rules_seq_optimized(rules, s, fuel)
}

// ============================================================================
// Backward compatibility aliases (character-level)
// ============================================================================

/// Check if any rules have position-dependent contexts (character-level).
///
/// Backward-compatible alias for [`has_position_dependent_rules::<char>`].
#[inline]
pub fn has_position_dependent_rules_char(rules: &[RewriteRule<char>]) -> bool {
    has_position_dependent_rules(rules)
}

/// Check if a rewrite rule can be applied at a specific position (character-level).
///
/// Backward-compatible alias for [`can_apply_at::<char>`].
#[inline]
pub fn can_apply_at_char(rule: &RewriteRule<char>, s: &[Phone<char>], pos: usize) -> bool {
    can_apply_at(rule, s, pos)
}

/// Apply a rewrite rule at a specific position if possible (character-level).
///
/// Backward-compatible alias for [`apply_rule_at::<char>`].
#[inline]
pub fn apply_rule_at_char(
    rule: &RewriteRule<char>,
    s: &[Phone<char>],
    pos: usize,
) -> Option<Vec<Phone<char>>> {
    apply_rule_at(rule, s, pos)
}

/// Find the first position where a rule can be applied (character-level).
///
/// Backward-compatible alias for [`find_first_match::<char>`].
#[inline]
pub fn find_first_match_char(rule: &RewriteRule<char>, s: &[Phone<char>]) -> Option<usize> {
    find_first_match(rule, s)
}

/// Find the first position where a rule can be applied, starting from a given position (character-level).
///
/// Backward-compatible alias for [`find_first_match_from::<char>`].
#[inline]
pub fn find_first_match_from_char(
    rule: &RewriteRule<char>,
    s: &[Phone<char>],
    start_pos: usize,
) -> Option<usize> {
    find_first_match_from(rule, s, start_pos)
}

/// Apply a list of rules sequentially until fixed point or fuel exhausted (character-level).
///
/// Backward-compatible alias for [`apply_rules_seq::<char>`].
#[inline]
pub fn apply_rules_seq_char(
    rules: &[RewriteRule<char>],
    s: &[Phone<char>],
    fuel: usize,
) -> Option<Vec<Phone<char>>> {
    apply_rules_seq(rules, s, fuel)
}

/// Apply rules with cycle detection (character-level).
///
/// Backward-compatible alias for [`apply_rules_with_cycle_detection::<char>`].
#[inline]
pub fn apply_rules_with_cycle_detection_char(
    rules: &[RewriteRule<char>],
    s: &[Phone<char>],
    fuel: usize,
) -> NormalizationResult<char> {
    apply_rules_with_cycle_detection(rules, s, fuel)
}

/// Apply rules with position skipping optimization (character-level).
///
/// Backward-compatible alias for [`apply_rules_seq_optimized::<char>`].
#[inline]
pub fn apply_rules_seq_optimized_char(
    rules: &[RewriteRule<char>],
    s: &[Phone<char>],
    fuel: usize,
) -> Option<Vec<Phone<char>>> {
    apply_rules_seq_optimized(rules, s, fuel)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::phonetic::types::{Context, Phone};

    // ========================================================================
    // Byte-level tests
    // ========================================================================

    #[test]
    fn test_apply_rule_at_success() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel(b'e'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
        ];

        let result = apply_rule_at(&rule, &s, 1);
        assert_eq!(
            result,
            Some(vec![Phone::Vowel(b'e'), Phone::Consonant(b'f')])
        );
    }

    #[test]
    fn test_apply_rule_at_no_match() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![Phone::Vowel(b'e'), Phone::Consonant(b'k')];

        let result = apply_rule_at(&rule, &s, 0);
        assert_eq!(result, None);
    }

    #[test]
    fn test_apply_rule_at_context_fail() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f (initial only)".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Initial,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel(b'e'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
        ];

        // Should fail at pos=1 because not initial
        let result = apply_rule_at(&rule, &s, 1);
        assert_eq!(result, None);

        // Should succeed at pos=0 if pattern were there
        let s2 = vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')];
        let result2 = apply_rule_at(&rule, &s2, 0);
        assert_eq!(result2, Some(vec![Phone::Consonant(b'f')]));
    }

    #[test]
    fn test_find_first_match() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel(b'e'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
            Phone::Vowel(b'o'),
        ];

        let pos = find_first_match(&rule, &s);
        assert_eq!(pos, Some(1));
    }

    #[test]
    fn test_find_first_match_none() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![Phone::Vowel(b'e'), Phone::Consonant(b'k')];

        let pos = find_first_match(&rule, &s);
        assert_eq!(pos, None);
    }

    #[test]
    fn test_apply_rules_seq_single_rule() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel(b'e'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
        ];

        let result = apply_rules_seq(&[rule], &s, 100);
        assert_eq!(
            result,
            Some(vec![Phone::Vowel(b'e'), Phone::Consonant(b'f')])
        );
    }

    #[test]
    fn test_apply_rules_seq_multiple_applications() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        // "ghgh" → "fgh" → "ff"
        let s = vec![
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
        ];

        let result = apply_rules_seq(&[rule], &s, 100);
        assert_eq!(
            result,
            Some(vec![Phone::Consonant(b'f'), Phone::Consonant(b'f')])
        );
    }

    #[test]
    fn test_apply_rules_seq_fixed_point() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        // Already a fixed point (no 'gh')
        let s = vec![Phone::Vowel(b'e'), Phone::Consonant(b'f')];

        let result = apply_rules_seq(&[rule], &s, 100);
        assert_eq!(
            result,
            Some(vec![Phone::Vowel(b'e'), Phone::Consonant(b'f')])
        );
    }

    // ========================================================================
    // Character-level tests
    // ========================================================================

    #[test]
    fn test_apply_rule_at_char_success() {
        let rule = RewriteRule::<char> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant('g'), Phone::Consonant('h')],
            replacement: vec![Phone::Consonant('f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel('e'),
            Phone::Consonant('g'),
            Phone::Consonant('h'),
        ];

        let result = apply_rule_at(&rule, &s, 1);
        assert_eq!(result, Some(vec![Phone::Vowel('e'), Phone::Consonant('f')]));
    }

    #[test]
    fn test_apply_rules_seq_char() {
        let rule = RewriteRule::<char> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant('g'), Phone::Consonant('h')],
            replacement: vec![Phone::Consonant('f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel('e'),
            Phone::Consonant('g'),
            Phone::Consonant('h'),
        ];

        let result = apply_rules_seq(&[rule], &s, 100);
        assert_eq!(result, Some(vec![Phone::Vowel('e'), Phone::Consonant('f')]));
    }

    // ========================================================================
    // Position skipping optimization tests (byte-level)
    // ========================================================================

    #[test]
    fn test_has_position_dependent_rules_empty() {
        let rules: Vec<RewriteRule<u8>> = vec![];
        assert!(!has_position_dependent_rules(&rules));
    }

    #[test]
    fn test_has_position_dependent_rules_no_final() {
        let rules = vec![
            RewriteRule::<u8> {
                rule_id: 1,
                rule_name: "test".to_string(),
                pattern: vec![Phone::Consonant(b'g')],
                replacement: vec![Phone::Consonant(b'k')],
                context: Context::Anywhere,
                weight: 1.0,
                syllable_condition: None,
            },
            RewriteRule::<u8> {
                rule_id: 2,
                rule_name: "test2".to_string(),
                pattern: vec![Phone::Consonant(b'c')],
                replacement: vec![Phone::Consonant(b's')],
                context: Context::Initial,
                weight: 1.0,
                syllable_condition: None,
            },
        ];
        assert!(!has_position_dependent_rules(&rules));
    }

    #[test]
    fn test_has_position_dependent_rules_with_final() {
        let rules = vec![
            RewriteRule::<u8> {
                rule_id: 1,
                rule_name: "test".to_string(),
                pattern: vec![Phone::Consonant(b'g')],
                replacement: vec![Phone::Consonant(b'k')],
                context: Context::Anywhere,
                weight: 1.0,
                syllable_condition: None,
            },
            RewriteRule::<u8> {
                rule_id: 2,
                rule_name: "final_rule".to_string(),
                pattern: vec![Phone::Vowel(b'e')],
                replacement: vec![],
                context: Context::Final,
                weight: 1.0,
                syllable_condition: None,
            },
        ];
        assert!(has_position_dependent_rules(&rules));
    }

    #[test]
    fn test_find_first_match_from_start() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel(b'e'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
            Phone::Vowel(b'o'),
        ];

        // Search from start
        assert_eq!(find_first_match_from(&rule, &s, 0), Some(1));
        // Search from position 1 (should still find it)
        assert_eq!(find_first_match_from(&rule, &s, 1), Some(1));
        // Search from position 2 (should not find it)
        assert_eq!(find_first_match_from(&rule, &s, 2), None);
    }

    #[test]
    fn test_find_first_match_from_multiple_occurrences() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        // "e gh o gh a"
        let s = vec![
            Phone::Vowel(b'e'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
            Phone::Vowel(b'o'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
            Phone::Vowel(b'a'),
        ];

        // Search from start finds first occurrence
        assert_eq!(find_first_match_from(&rule, &s, 0), Some(1));
        // Search from position 2 finds second occurrence
        assert_eq!(find_first_match_from(&rule, &s, 2), Some(4));
        // Search from position 5 finds nothing
        assert_eq!(find_first_match_from(&rule, &s, 5), None);
    }

    #[test]
    fn test_apply_rules_seq_optimized_produces_same_result() {
        // Verify optimized version produces same result as non-optimized
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel(b'e'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
            Phone::Vowel(b'o'),
            Phone::Consonant(b'g'),
            Phone::Consonant(b'h'),
        ];

        let standard_result = apply_rules_seq(&[rule.clone()], &s, 100);
        let optimized_result = apply_rules_seq_optimized(&[rule], &s, 100);

        assert_eq!(standard_result, optimized_result);
    }

    #[test]
    fn test_apply_rules_seq_optimized_fixed_point() {
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant(b'g'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        // Already at fixed point
        let s = vec![Phone::Vowel(b'e'), Phone::Consonant(b'f')];

        let result = apply_rules_seq_optimized(&[rule], &s, 100);
        assert_eq!(
            result,
            Some(vec![Phone::Vowel(b'e'), Phone::Consonant(b'f')])
        );
    }

    // ========================================================================
    // Position skipping optimization tests (character-level)
    // ========================================================================

    #[test]
    fn test_has_position_dependent_rules_char_empty() {
        let rules: Vec<RewriteRule<char>> = vec![];
        assert!(!has_position_dependent_rules(&rules));
    }

    #[test]
    fn test_has_position_dependent_rules_char_no_final() {
        let rules = vec![RewriteRule::<char> {
            rule_id: 1,
            rule_name: "test".to_string(),
            pattern: vec![Phone::Consonant('g')],
            replacement: vec![Phone::Consonant('k')],
            context: Context::Anywhere,
            weight: 1.0,
            syllable_condition: None,
        }];
        assert!(!has_position_dependent_rules(&rules));
    }

    #[test]
    fn test_has_position_dependent_rules_char_with_final() {
        let rules = vec![RewriteRule::<char> {
            rule_id: 1,
            rule_name: "final_rule".to_string(),
            pattern: vec![Phone::Vowel('e')],
            replacement: vec![],
            context: Context::Final,
            weight: 1.0,
            syllable_condition: None,
        }];
        assert!(has_position_dependent_rules(&rules));
    }

    #[test]
    fn test_find_first_match_from_char() {
        let rule = RewriteRule::<char> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant('g'), Phone::Consonant('h')],
            replacement: vec![Phone::Consonant('f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel('e'),
            Phone::Consonant('g'),
            Phone::Consonant('h'),
            Phone::Vowel('o'),
        ];

        assert_eq!(find_first_match_from(&rule, &s, 0), Some(1));
        assert_eq!(find_first_match_from(&rule, &s, 1), Some(1));
        assert_eq!(find_first_match_from(&rule, &s, 2), None);
    }

    #[test]
    fn test_apply_rules_seq_optimized_char_produces_same_result() {
        let rule = RewriteRule::<char> {
            rule_id: 1,
            rule_name: "gh → f".to_string(),
            pattern: vec![Phone::Consonant('g'), Phone::Consonant('h')],
            replacement: vec![Phone::Consonant('f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let s = vec![
            Phone::Vowel('e'),
            Phone::Consonant('g'),
            Phone::Consonant('h'),
            Phone::Vowel('o'),
            Phone::Consonant('g'),
            Phone::Consonant('h'),
        ];

        let standard_result = apply_rules_seq(&[rule.clone()], &s, 100);
        let optimized_result = apply_rules_seq_optimized(&[rule], &s, 100);

        assert_eq!(standard_result, optimized_result);
    }

    // ========================================================================
    // Cycle detection tests
    // ========================================================================

    #[test]
    fn test_cycle_detection_simple_cycle() {
        // Rules: ab -> ba, ba -> ab (creates a true cycle)
        // Both patterns are same length, so no expansion happens
        let rule_ab_to_ba = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "ab → ba".to_string(),
            pattern: vec![Phone::Vowel(b'a'), Phone::Consonant(b'b')],
            replacement: vec![Phone::Consonant(b'b'), Phone::Vowel(b'a')],
            context: Context::Anywhere,
            weight: 0.0,
            syllable_condition: None,
        };

        let rule_ba_to_ab = RewriteRule::<u8> {
            rule_id: 2,
            rule_name: "ba → ab".to_string(),
            pattern: vec![Phone::Consonant(b'b'), Phone::Vowel(b'a')],
            replacement: vec![Phone::Vowel(b'a'), Phone::Consonant(b'b')],
            context: Context::Anywhere,
            weight: 0.0,
            syllable_condition: None,
        };

        let rules = vec![rule_ab_to_ba, rule_ba_to_ab];
        let input = vec![Phone::Vowel(b'a'), Phone::Consonant(b'b')];

        let result = apply_rules_with_cycle_detection(&rules, &input, 100);

        // Should detect cycle
        assert!(
            result.is_cycle(),
            "Expected cycle detection, got {:?}",
            result
        );

        if let NormalizationResult::Cycle(forms) = &result {
            // Should have both forms
            assert!(forms.contains(&vec![Phone::Vowel(b'a'), Phone::Consonant(b'b')]));
            assert!(forms.contains(&vec![Phone::Consonant(b'b'), Phone::Vowel(b'a')]));
            assert_eq!(forms.len(), 2, "Expected exactly 2 forms in cycle");
        }
    }

    #[test]
    fn test_cycle_detection_fixed_point() {
        // Rule that doesn't create a cycle: ph -> f
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "ph → f".to_string(),
            pattern: vec![Phone::Consonant(b'p'), Phone::Consonant(b'h')],
            replacement: vec![Phone::Consonant(b'f')],
            context: Context::Anywhere,
            weight: 0.15,
            syllable_condition: None,
        };

        let input = vec![
            Phone::Consonant(b'p'),
            Phone::Consonant(b'h'),
            Phone::Vowel(b'o'),
            Phone::Consonant(b'n'),
            Phone::Vowel(b'e'),
        ];

        let result = apply_rules_with_cycle_detection(&[rule], &input, 100);

        // Should reach fixed point, not cycle
        assert!(
            result.is_fixed_point(),
            "Expected fixed point, got {:?}",
            result
        );

        if let NormalizationResult::FixedPoint(form) = &result {
            assert_eq!(
                form,
                &vec![
                    Phone::Consonant(b'f'),
                    Phone::Vowel(b'o'),
                    Phone::Consonant(b'n'),
                    Phone::Vowel(b'e'),
                ]
            );
        }
    }

    #[test]
    fn test_cycle_detection_fuel_exhausted() {
        // Rule that keeps expanding (never terminates without fuel)
        let rule = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "a → aa".to_string(),
            pattern: vec![Phone::Vowel(b'a')],
            replacement: vec![Phone::Vowel(b'a'), Phone::Vowel(b'a')],
            context: Context::Anywhere,
            weight: 0.0,
            syllable_condition: None,
        };

        let input = vec![Phone::Vowel(b'a')];

        // With very limited fuel, should exhaust before cycle (never cycles)
        let result = apply_rules_with_cycle_detection(&[rule], &input, 3);

        // Should exhaust fuel (expansion doesn't cycle, just grows)
        assert!(
            matches!(result, NormalizationResult::FuelExhausted(_)),
            "Expected fuel exhaustion, got {:?}",
            result
        );
    }

    #[test]
    fn test_cycle_detection_all_forms() {
        // Three-way cycle: a -> b -> c -> a
        let rule_a_to_b = RewriteRule::<u8> {
            rule_id: 1,
            rule_name: "a → b".to_string(),
            pattern: vec![Phone::Vowel(b'a')],
            replacement: vec![Phone::Consonant(b'b')],
            context: Context::Anywhere,
            weight: 0.0,
            syllable_condition: None,
        };

        let rule_b_to_c = RewriteRule::<u8> {
            rule_id: 2,
            rule_name: "b → c".to_string(),
            pattern: vec![Phone::Consonant(b'b')],
            replacement: vec![Phone::Consonant(b'c')],
            context: Context::Anywhere,
            weight: 0.0,
            syllable_condition: None,
        };

        let rule_c_to_a = RewriteRule::<u8> {
            rule_id: 3,
            rule_name: "c → a".to_string(),
            pattern: vec![Phone::Consonant(b'c')],
            replacement: vec![Phone::Vowel(b'a')],
            context: Context::Anywhere,
            weight: 0.0,
            syllable_condition: None,
        };

        let rules = vec![rule_a_to_b, rule_b_to_c, rule_c_to_a];
        let input = vec![Phone::Vowel(b'a')];

        let result = apply_rules_with_cycle_detection(&rules, &input, 100);

        assert!(result.is_cycle());

        let all_forms = result.all_forms();
        assert_eq!(all_forms.len(), 3, "Expected 3 forms in cycle");
        assert!(all_forms.contains(&vec![Phone::Vowel(b'a')]));
        assert!(all_forms.contains(&vec![Phone::Consonant(b'b')]));
        assert!(all_forms.contains(&vec![Phone::Consonant(b'c')]));
    }

    #[test]
    fn test_normalization_result_canonical_shortest() {
        // Test that canonical() picks the shortest form
        let mut forms = HashSet::new();
        forms.insert(vec![Phone::<u8>::Vowel(b'a'), Phone::Vowel(b'a')]);
        forms.insert(vec![Phone::<u8>::Vowel(b'b')]);
        forms.insert(vec![
            Phone::<u8>::Vowel(b'c'),
            Phone::Vowel(b'c'),
            Phone::Vowel(b'c'),
        ]);

        let result = NormalizationResult::Cycle(forms);

        // Canonical should be the shortest: [b]
        assert_eq!(result.canonical(), vec![Phone::Vowel(b'b')]);
    }
}