torsh-text 0.1.2

Natural language processing utilities for ToRSh deep learning framework
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
//! Cohesion analysis for discourse coherence
//!
//! This module provides comprehensive cohesion analysis including reference cohesion,
//! lexical cohesion, conjunctive cohesion, and temporal coherence analysis.

use std::collections::{HashMap, HashSet};
use thiserror::Error;

use super::config::{CohesionAnalysisConfig, CohesiveDeviceType, DiscourseCoherenceError};
use super::results::{
    CohesionAnalysis, CohesiveDevice, ComplexConjunction, ConjunctiveCohesionMetrics,
    LexicalCohesionMetrics, ReferenceChain, ReferenceCohesionMetrics, RepetitionAnalysis,
    SynonymCluster, SynonymNetworkMetrics, TemporalChain, TemporalCoherenceMetrics,
};

/// Errors specific to cohesion analysis
#[derive(Debug, Error)]
pub enum CohesionAnalysisError {
    #[error("Failed to analyze cohesive devices: {0}")]
    CohesiveDeviceAnalysisFailed(String),
    #[error("Reference resolution failed: {0}")]
    ReferenceResolutionFailed(String),
    #[error("Lexical cohesion analysis failed: {0}")]
    LexicalCohesionFailed(String),
    #[error("Temporal coherence analysis failed: {0}")]
    TemporalCoherenceFailed(String),
}

/// Specialized analyzer for cohesion
pub struct CohesionAnalyzer {
    config: CohesionAnalysisConfig,
    reference_patterns: HashSet<String>,
    conjunction_patterns: HashMap<String, String>,
    temporal_markers: HashSet<String>,
}

impl CohesionAnalyzer {
    /// Create a new cohesion analyzer
    pub fn new(config: CohesionAnalysisConfig) -> Self {
        let reference_patterns = Self::build_reference_patterns();
        let conjunction_patterns = Self::build_conjunction_patterns();
        let temporal_markers = Self::build_temporal_markers();

        Self {
            config,
            reference_patterns,
            conjunction_patterns,
            temporal_markers,
        }
    }

    /// Analyze cohesion in text
    pub fn analyze_cohesion(
        &self,
        sentences: &[String],
    ) -> Result<CohesionAnalysis, CohesionAnalysisError> {
        let cohesive_devices = self.identify_cohesive_devices(sentences)?;
        let overall_cohesion_score =
            self.calculate_overall_cohesion_score(&cohesive_devices, sentences);

        let reference_cohesion = if self.config.analyze_reference_cohesion {
            self.analyze_reference_cohesion(sentences)?
        } else {
            ReferenceCohesionMetrics::default()
        };

        let lexical_cohesion = if self.config.analyze_lexical_cohesion {
            self.analyze_lexical_cohesion(sentences)?
        } else {
            LexicalCohesionMetrics::default()
        };

        let conjunctive_cohesion = if self.config.analyze_conjunctive_cohesion {
            self.analyze_conjunctive_cohesion(sentences)?
        } else {
            ConjunctiveCohesionMetrics::default()
        };

        let temporal_coherence = self.analyze_temporal_coherence(sentences)?;

        Ok(CohesionAnalysis {
            overall_cohesion_score,
            cohesive_devices,
            reference_cohesion,
            lexical_cohesion,
            conjunctive_cohesion,
            temporal_coherence,
        })
    }

    /// Identify cohesive devices in text
    fn identify_cohesive_devices(
        &self,
        sentences: &[String],
    ) -> Result<Vec<CohesiveDevice>, CohesionAnalysisError> {
        let mut devices = Vec::new();

        // Analyze reference devices
        devices.extend(self.analyze_reference_devices(sentences));

        // Analyze conjunction devices
        devices.extend(self.analyze_conjunction_devices(sentences));

        // Analyze lexical cohesion devices
        devices.extend(self.analyze_lexical_cohesion_devices(sentences));

        Ok(devices)
    }

    /// Analyze reference cohesive devices
    fn analyze_reference_devices(&self, sentences: &[String]) -> Vec<CohesiveDevice> {
        let mut devices = Vec::new();

        for (sent_idx, sentence) in sentences.iter().enumerate() {
            let words: Vec<&str> = sentence.split_whitespace().collect();

            for (word_idx, word) in words.iter().enumerate() {
                if let Some(device_type) = self.classify_reference_device(word) {
                    let device = self.create_cohesive_device(
                        device_type,
                        word.to_string(),
                        sent_idx,
                        word_idx,
                        sentences,
                    );
                    devices.push(device);
                }
            }
        }

        devices
    }

    /// Classify reference cohesive device
    fn classify_reference_device(&self, word: &str) -> Option<CohesiveDeviceType> {
        let normalized = word
            .to_lowercase()
            .trim_matches(|c: char| !c.is_alphabetic())
            .to_string();

        match normalized.as_str() {
            "he" | "she" | "it" | "they" | "him" | "her" | "them" | "his" | "hers" | "its"
            | "their" => Some(CohesiveDeviceType::PersonalPronoun),
            "this" | "that" | "these" | "those" => Some(CohesiveDeviceType::Demonstrative),
            "such" | "same" | "other" | "another" | "similar" | "different" => {
                Some(CohesiveDeviceType::Comparative)
            }
            "one" | "ones" | "so" | "not" => Some(CohesiveDeviceType::Substitution),
            _ => None,
        }
    }

    /// Analyze conjunction cohesive devices
    fn analyze_conjunction_devices(&self, sentences: &[String]) -> Vec<CohesiveDevice> {
        let mut devices = Vec::new();

        for (sent_idx, sentence) in sentences.iter().enumerate() {
            let words: Vec<&str> = sentence.split_whitespace().collect();

            for (word_idx, word) in words.iter().enumerate() {
                if let Some(conjunction_type) = self.conjunction_patterns.get(&word.to_lowercase())
                {
                    let device = CohesiveDevice {
                        device_type: CohesiveDeviceType::Conjunction,
                        elements: vec![word.to_string()],
                        positions: vec![(sent_idx, word_idx)],
                        strength: self.calculate_conjunction_strength(word),
                        local_contribution: 0.7,
                        global_contribution: 0.5,
                        resolution_confidence: 0.8,
                        distance: 0, // Conjunctions typically have local effect
                    };
                    devices.push(device);
                }
            }

            // Check for multiword conjunctions
            devices.extend(self.find_multiword_conjunctions(sent_idx, &words));
        }

        devices
    }

    /// Find multiword conjunction patterns
    fn find_multiword_conjunctions(&self, sent_idx: usize, words: &[&str]) -> Vec<CohesiveDevice> {
        let mut devices = Vec::new();
        let multiword_conjunctions = [
            "in addition",
            "on the other hand",
            "as a result",
            "for example",
            "in contrast",
            "furthermore",
            "moreover",
            "however",
        ];

        let sentence = words.join(" ").to_lowercase();
        for pattern in &multiword_conjunctions {
            if sentence.contains(pattern) {
                let device = CohesiveDevice {
                    device_type: CohesiveDeviceType::Conjunction,
                    elements: vec![pattern.to_string()],
                    positions: vec![(sent_idx, 0)], // Simplified position
                    strength: 0.8,                  // Multiword conjunctions are typically strong
                    local_contribution: 0.8,
                    global_contribution: 0.7,
                    resolution_confidence: 0.9,
                    distance: 1,
                };
                devices.push(device);
            }
        }

        devices
    }

    /// Calculate conjunction strength
    fn calculate_conjunction_strength(&self, conjunction: &str) -> f64 {
        match conjunction.to_lowercase().as_str() {
            "however" | "nevertheless" | "nonetheless" => 0.9,
            "therefore" | "thus" | "consequently" => 0.85,
            "furthermore" | "moreover" | "additionally" => 0.8,
            "but" | "yet" | "although" => 0.75,
            "and" | "or" => 0.6,
            "so" | "then" => 0.7,
            _ => 0.5,
        }
    }

    /// Analyze lexical cohesion devices
    fn analyze_lexical_cohesion_devices(&self, sentences: &[String]) -> Vec<CohesiveDevice> {
        let mut devices = Vec::new();

        // Find repetitions
        devices.extend(self.find_lexical_repetitions(sentences));

        // Find synonymy relations
        devices.extend(self.find_synonym_relations(sentences));

        // Find collocation patterns
        devices.extend(self.find_collocation_patterns(sentences));

        devices
    }

    /// Find lexical repetitions
    fn find_lexical_repetitions(&self, sentences: &[String]) -> Vec<CohesiveDevice> {
        let mut devices = Vec::new();
        let mut word_positions: HashMap<String, Vec<(usize, usize)>> = HashMap::new();

        // Collect word positions
        for (sent_idx, sentence) in sentences.iter().enumerate() {
            for (word_idx, word) in sentence.split_whitespace().enumerate() {
                let normalized = word
                    .to_lowercase()
                    .trim_matches(|c: char| !c.is_alphabetic())
                    .to_string();
                if normalized.len() > 3 {
                    // Only consider content words
                    word_positions
                        .entry(normalized)
                        .or_insert_with(Vec::new)
                        .push((sent_idx, word_idx));
                }
            }
        }

        // Create devices for repeated words
        for (word, positions) in word_positions {
            if positions.len() > 1 {
                let distance = if positions.len() > 1 {
                    positions[positions.len() - 1].0 - positions[0].0
                } else {
                    0
                };

                let device = CohesiveDevice {
                    device_type: CohesiveDeviceType::Repetition,
                    elements: vec![word],
                    positions,
                    strength: 0.7,
                    local_contribution: 0.6,
                    global_contribution: 0.4,
                    resolution_confidence: 1.0, // Repetition is always certain
                    distance,
                };
                devices.push(device);
            }
        }

        devices
    }

    /// Find synonym relations (simplified)
    fn find_synonym_relations(&self, sentences: &[String]) -> Vec<CohesiveDevice> {
        let mut devices = Vec::new();
        let synonym_pairs = self.get_common_synonym_pairs();

        for (word1, word2) in synonym_pairs {
            let positions1 = self.find_word_positions(sentences, &word1);
            let positions2 = self.find_word_positions(sentences, &word2);

            if !positions1.is_empty() && !positions2.is_empty() {
                let all_positions = [positions1, positions2].concat();
                let distance = self.calculate_max_distance(&all_positions);

                let device = CohesiveDevice {
                    device_type: CohesiveDeviceType::Synonymy,
                    elements: vec![word1, word2],
                    positions: all_positions,
                    strength: 0.8,
                    local_contribution: 0.7,
                    global_contribution: 0.6,
                    resolution_confidence: 0.7,
                    distance,
                };
                devices.push(device);
            }
        }

        devices
    }

    /// Get common synonym pairs
    fn get_common_synonym_pairs(&self) -> Vec<(String, String)> {
        vec![
            ("big".to_string(), "large".to_string()),
            ("small".to_string(), "little".to_string()),
            ("good".to_string(), "great".to_string()),
            ("bad".to_string(), "poor".to_string()),
            ("start".to_string(), "begin".to_string()),
            ("end".to_string(), "finish".to_string()),
            ("important".to_string(), "significant".to_string()),
            ("problem".to_string(), "issue".to_string()),
        ]
    }

    /// Find collocation patterns
    fn find_collocation_patterns(&self, sentences: &[String]) -> Vec<CohesiveDevice> {
        let mut devices = Vec::new();
        let collocations = self.get_common_collocations();

        for (sent_idx, sentence) in sentences.iter().enumerate() {
            let normalized = sentence.to_lowercase();
            for (word1, word2) in &collocations {
                if normalized.contains(word1) && normalized.contains(word2) {
                    let device = CohesiveDevice {
                        device_type: CohesiveDeviceType::Collocation,
                        elements: vec![word1.clone(), word2.clone()],
                        positions: vec![(sent_idx, 0)], // Simplified positioning
                        strength: 0.6,
                        local_contribution: 0.5,
                        global_contribution: 0.3,
                        resolution_confidence: 0.6,
                        distance: 0,
                    };
                    devices.push(device);
                }
            }
        }

        devices
    }

    /// Get common collocations
    fn get_common_collocations(&self) -> Vec<(String, String)> {
        vec![
            ("make".to_string(), "decision".to_string()),
            ("take".to_string(), "action".to_string()),
            ("pay".to_string(), "attention".to_string()),
            ("conduct".to_string(), "research".to_string()),
            ("strong".to_string(), "evidence".to_string()),
            ("clear".to_string(), "example".to_string()),
        ]
    }

    /// Find positions of a word in sentences
    fn find_word_positions(&self, sentences: &[String], target_word: &str) -> Vec<(usize, usize)> {
        let mut positions = Vec::new();

        for (sent_idx, sentence) in sentences.iter().enumerate() {
            for (word_idx, word) in sentence.split_whitespace().enumerate() {
                let normalized = word
                    .to_lowercase()
                    .trim_matches(|c: char| !c.is_alphabetic())
                    .to_string();
                if normalized == target_word.to_lowercase() {
                    positions.push((sent_idx, word_idx));
                }
            }
        }

        positions
    }

    /// Calculate maximum distance between positions
    fn calculate_max_distance(&self, positions: &[(usize, usize)]) -> usize {
        if positions.len() < 2 {
            return 0;
        }

        let min_sent = positions.iter().map(|(sent, _)| *sent).min().unwrap_or(0);
        let max_sent = positions.iter().map(|(sent, _)| *sent).max().unwrap_or(0);
        max_sent - min_sent
    }

    /// Create a cohesive device
    fn create_cohesive_device(
        &self,
        device_type: CohesiveDeviceType,
        element: String,
        sent_idx: usize,
        word_idx: usize,
        sentences: &[String],
    ) -> CohesiveDevice {
        let strength = self.calculate_device_strength(&device_type);
        let (local_contribution, global_contribution) = self.calculate_contributions(&device_type);
        let resolution_confidence =
            self.calculate_resolution_confidence(&device_type, &element, sent_idx, sentences);
        let distance = self.calculate_reference_distance(&device_type, sent_idx, sentences);

        CohesiveDevice {
            device_type,
            elements: vec![element],
            positions: vec![(sent_idx, word_idx)],
            strength,
            local_contribution,
            global_contribution,
            resolution_confidence,
            distance,
        }
    }

    /// Calculate device strength based on type
    fn calculate_device_strength(&self, device_type: &CohesiveDeviceType) -> f64 {
        self.config
            .device_weights
            .get(device_type)
            .cloned()
            .unwrap_or(0.5)
    }

    /// Calculate local and global contributions
    fn calculate_contributions(&self, device_type: &CohesiveDeviceType) -> (f64, f64) {
        match device_type {
            CohesiveDeviceType::PersonalPronoun => (0.8, 0.6),
            CohesiveDeviceType::Demonstrative => (0.9, 0.5),
            CohesiveDeviceType::Conjunction => (0.7, 0.8),
            CohesiveDeviceType::Repetition => (0.6, 0.7),
            CohesiveDeviceType::Synonymy => (0.7, 0.8),
            _ => (0.5, 0.5),
        }
    }

    /// Calculate resolution confidence
    fn calculate_resolution_confidence(
        &self,
        device_type: &CohesiveDeviceType,
        element: &str,
        sent_idx: usize,
        sentences: &[String],
    ) -> f64 {
        match device_type {
            CohesiveDeviceType::PersonalPronoun => {
                // Higher confidence if there are clear antecedents nearby
                self.calculate_antecedent_clarity(element, sent_idx, sentences)
            }
            CohesiveDeviceType::Demonstrative => 0.7,
            CohesiveDeviceType::Conjunction => 0.9,
            CohesiveDeviceType::Repetition => 1.0,
            _ => 0.6,
        }
    }

    /// Calculate antecedent clarity for pronouns
    fn calculate_antecedent_clarity(
        &self,
        pronoun: &str,
        sent_idx: usize,
        sentences: &[String],
    ) -> f64 {
        // Simplified antecedent detection
        let search_window = 3; // Look back up to 3 sentences
        let start_idx = sent_idx.saturating_sub(search_window);

        let mut potential_antecedents = 0;
        for i in start_idx..sent_idx {
            if let Some(sentence) = sentences.get(i) {
                potential_antecedents += self.count_potential_antecedents(sentence, pronoun);
            }
        }

        // More potential antecedents = lower clarity (more ambiguity)
        match potential_antecedents {
            0 => 0.3, // No clear antecedent
            1 => 0.9, // Clear single antecedent
            2 => 0.6, // Some ambiguity
            _ => 0.4, // High ambiguity
        }
    }

    /// Count potential antecedents for a pronoun
    fn count_potential_antecedents(&self, sentence: &str, pronoun: &str) -> usize {
        let normalized_pronoun = pronoun.to_lowercase();
        let words: Vec<&str> = sentence.split_whitespace().collect();

        words
            .iter()
            .filter(|word| {
                let normalized = word.to_lowercase();
                match normalized_pronoun.as_str() {
                    "he" | "him" | "his" => self.is_masculine_noun(&normalized),
                    "she" | "her" | "hers" => self.is_feminine_noun(&normalized),
                    "it" | "its" => self.is_neuter_noun(&normalized),
                    "they" | "them" | "their" => self.is_plural_noun(&normalized),
                    _ => false,
                }
            })
            .count()
    }

    /// Check if word is a masculine noun (simplified)
    fn is_masculine_noun(&self, word: &str) -> bool {
        ["man", "boy", "father", "brother", "son", "grandfather"].contains(&word)
    }

    /// Check if word is a feminine noun (simplified)
    fn is_feminine_noun(&self, word: &str) -> bool {
        [
            "woman",
            "girl",
            "mother",
            "sister",
            "daughter",
            "grandmother",
        ]
        .contains(&word)
    }

    /// Check if word is a neuter noun (simplified)
    fn is_neuter_noun(&self, word: &str) -> bool {
        ["thing", "object", "item", "concept", "idea", "system"].contains(&word)
    }

    /// Check if word is a plural noun (simplified)
    fn is_plural_noun(&self, word: &str) -> bool {
        word.ends_with('s') && !word.ends_with("ss") && word.len() > 3
    }

    /// Calculate reference distance
    fn calculate_reference_distance(
        &self,
        device_type: &CohesiveDeviceType,
        sent_idx: usize,
        _sentences: &[String],
    ) -> usize {
        match device_type {
            CohesiveDeviceType::PersonalPronoun | CohesiveDeviceType::Demonstrative => {
                // These typically refer to something in previous sentences
                1 + sent_idx.saturating_sub(1)
            }
            _ => 0,
        }
    }

    /// Calculate overall cohesion score
    fn calculate_overall_cohesion_score(
        &self,
        devices: &[CohesiveDevice],
        sentences: &[String],
    ) -> f64 {
        if devices.is_empty() || sentences.is_empty() {
            return 0.0;
        }

        let total_strength: f64 = devices.iter().map(|d| d.strength).sum();
        let device_density = devices.len() as f64 / sentences.len() as f64;

        // Normalize by expected values
        let normalized_strength = total_strength / devices.len() as f64;
        let normalized_density = device_density.min(2.0) / 2.0; // Cap at 2 devices per sentence

        (normalized_strength * 0.7 + normalized_density * 0.3).min(1.0)
    }

    /// Analyze reference cohesion
    fn analyze_reference_cohesion(
        &self,
        sentences: &[String],
    ) -> Result<ReferenceCohesionMetrics, CohesionAnalysisError> {
        let reference_chains = self.build_reference_chains(sentences)?;
        let total_references = self.count_total_references(sentences);
        let reference_density = total_references as f64 / sentences.len() as f64;
        let resolution_success_rate = self.calculate_resolution_success_rate(&reference_chains);
        let average_reference_distance =
            self.calculate_average_reference_distance(&reference_chains);
        let ambiguous_references = self.count_ambiguous_references(sentences);
        let complexity_score = self.calculate_reference_complexity(&reference_chains);

        Ok(ReferenceCohesionMetrics {
            total_references,
            reference_density,
            resolution_success_rate,
            average_reference_distance,
            ambiguous_references,
            complexity_score,
            reference_chains,
        })
    }

    /// Build reference chains (simplified)
    fn build_reference_chains(
        &self,
        sentences: &[String],
    ) -> Result<Vec<ReferenceChain>, CohesionAnalysisError> {
        let mut chains = Vec::new();

        // This is a simplified implementation
        // A full implementation would use coreference resolution

        for (chain_id, sentence) in sentences.iter().enumerate() {
            if self.contains_pronouns(sentence) {
                let chain = ReferenceChain {
                    chain_id,
                    entity: format!("entity_{}", chain_id),
                    referring_expressions: vec![sentence.clone()],
                    positions: vec![(chain_id, 0)],
                    coherence_score: 0.7,
                    completeness_score: 0.6,
                };
                chains.push(chain);
            }
        }

        Ok(chains)
    }

    /// Check if sentence contains pronouns
    fn contains_pronouns(&self, sentence: &str) -> bool {
        let pronouns = [
            "he", "she", "it", "they", "him", "her", "them", "his", "hers", "its", "their",
        ];
        let words: Vec<&str> = sentence.split_whitespace().collect();
        words
            .iter()
            .any(|word| pronouns.contains(&word.to_lowercase().as_str()))
    }

    /// Count total references in text
    fn count_total_references(&self, sentences: &[String]) -> usize {
        sentences
            .iter()
            .map(|sentence| self.count_references_in_sentence(sentence))
            .sum()
    }

    /// Count references in a single sentence
    fn count_references_in_sentence(&self, sentence: &str) -> usize {
        let reference_words = ["he", "she", "it", "they", "this", "that", "these", "those"];
        sentence
            .split_whitespace()
            .filter(|word| reference_words.contains(&word.to_lowercase().as_str()))
            .count()
    }

    /// Calculate resolution success rate
    fn calculate_resolution_success_rate(&self, chains: &[ReferenceChain]) -> f64 {
        if chains.is_empty() {
            return 0.0;
        }

        let successful_chains = chains
            .iter()
            .filter(|chain| chain.coherence_score > 0.5)
            .count();
        successful_chains as f64 / chains.len() as f64
    }

    /// Calculate average reference distance
    fn calculate_average_reference_distance(&self, chains: &[ReferenceChain]) -> f64 {
        if chains.is_empty() {
            return 0.0;
        }

        let total_distance: usize = chains
            .iter()
            .map(|chain| {
                if chain.positions.len() > 1 {
                    let first_pos = chain.positions[0].0;
                    let last_pos = chain.positions[chain.positions.len() - 1].0;
                    last_pos - first_pos
                } else {
                    0
                }
            })
            .sum();

        total_distance as f64 / chains.len() as f64
    }

    /// Count ambiguous references
    fn count_ambiguous_references(&self, sentences: &[String]) -> usize {
        // Simplified: count sentences with multiple potential antecedents
        sentences
            .iter()
            .enumerate()
            .filter(|(i, sentence)| {
                self.contains_pronouns(sentence)
                    && self.has_multiple_potential_antecedents(*i, sentences)
            })
            .count()
    }

    /// Check if there are multiple potential antecedents
    fn has_multiple_potential_antecedents(&self, sent_idx: usize, sentences: &[String]) -> bool {
        if sent_idx == 0 {
            return false;
        }

        let search_window = 2;
        let start_idx = sent_idx.saturating_sub(search_window);

        let mut antecedent_count = 0;
        for i in start_idx..sent_idx {
            if let Some(sentence) = sentences.get(i) {
                antecedent_count += self.count_potential_antecedents_general(sentence);
            }
        }

        antecedent_count > 1
    }

    /// Count general potential antecedents in sentence
    fn count_potential_antecedents_general(&self, sentence: &str) -> usize {
        sentence
            .split_whitespace()
            .filter(|word| {
                let normalized = word.to_lowercase();
                self.is_potential_antecedent(&normalized)
            })
            .count()
    }

    /// Check if word could be a potential antecedent
    fn is_potential_antecedent(&self, word: &str) -> bool {
        // Simplified: nouns that could be referred to by pronouns
        word.len() > 3
            && ![
                "the", "and", "that", "this", "with", "from", "they", "have", "been", "were",
            ]
            .contains(&word)
            && word.chars().all(|c| c.is_alphabetic())
    }

    /// Calculate reference complexity
    fn calculate_reference_complexity(&self, chains: &[ReferenceChain]) -> f64 {
        if chains.is_empty() {
            return 0.0;
        }

        let avg_chain_length: f64 = chains
            .iter()
            .map(|chain| chain.referring_expressions.len() as f64)
            .sum::<f64>()
            / chains.len() as f64;

        let avg_distance = self.calculate_average_reference_distance(chains);

        // Complexity increases with longer chains and greater distances
        (avg_chain_length / 5.0 + avg_distance / 10.0).min(1.0)
    }

    /// Analyze lexical cohesion
    fn analyze_lexical_cohesion(
        &self,
        sentences: &[String],
    ) -> Result<LexicalCohesionMetrics, CohesionAnalysisError> {
        let lexical_ties = self.count_lexical_ties(sentences);
        let lexical_density = lexical_ties as f64 / sentences.len() as f64;
        let repetition_analysis = self.analyze_repetition_patterns(sentences);
        let synonym_networks = self.analyze_synonym_networks(sentences);
        let semantic_field_coherence = self.calculate_semantic_field_coherence(sentences);
        let sophistication_score = self.calculate_lexical_sophistication(sentences);

        Ok(LexicalCohesionMetrics {
            lexical_ties,
            lexical_density,
            repetition_analysis,
            synonym_networks,
            semantic_field_coherence,
            sophistication_score,
        })
    }

    /// Count lexical ties between sentences
    fn count_lexical_ties(&self, sentences: &[String]) -> usize {
        let mut ties = 0;
        let mut word_positions: HashMap<String, Vec<usize>> = HashMap::new();

        // Collect word positions
        for (sent_idx, sentence) in sentences.iter().enumerate() {
            for word in sentence.split_whitespace() {
                let normalized = word
                    .to_lowercase()
                    .trim_matches(|c: char| !c.is_alphabetic())
                    .to_string();
                if normalized.len() > 3 {
                    word_positions
                        .entry(normalized)
                        .or_insert_with(Vec::new)
                        .push(sent_idx);
                }
            }
        }

        // Count ties (words appearing in multiple sentences)
        for positions in word_positions.values() {
            if positions.len() > 1 {
                ties += positions.len() - 1; // n positions create n-1 ties
            }
        }

        ties
    }

    /// Analyze repetition patterns
    fn analyze_repetition_patterns(&self, sentences: &[String]) -> RepetitionAnalysis {
        let mut word_counts: HashMap<String, usize> = HashMap::new();
        let mut morphological_variants: HashMap<String, HashSet<String>> = HashMap::new();

        for sentence in sentences {
            for word in sentence.split_whitespace() {
                let normalized = word
                    .to_lowercase()
                    .trim_matches(|c: char| !c.is_alphabetic())
                    .to_string();
                if normalized.len() > 3 {
                    *word_counts.entry(normalized.clone()).or_insert(0) += 1;

                    // Track morphological variants (simplified)
                    let stem = self.simple_stem(&normalized);
                    morphological_variants
                        .entry(stem)
                        .or_insert_with(HashSet::new)
                        .insert(normalized);
                }
            }
        }

        let exact_repetitions = word_counts.values().filter(|&&count| count > 1).count();
        let morphological_variations = morphological_variants
            .values()
            .filter(|variants| variants.len() > 1)
            .count();

        let mut frequent_terms: Vec<(String, usize)> = word_counts
            .into_iter()
            .filter(|(_, count)| *count > 1)
            .collect();
        frequent_terms.sort_by(|a, b| b.1.cmp(&a.1));
        frequent_terms.truncate(10);

        let distribution_score = self.calculate_repetition_distribution(&frequent_terms);

        RepetitionAnalysis {
            exact_repetitions,
            morphological_variations,
            frequent_terms,
            distribution_score,
        }
    }

    /// Simple stemming function
    fn simple_stem(&self, word: &str) -> String {
        if word.ends_with("ing") && word.len() > 6 {
            word[..word.len() - 3].to_string()
        } else if word.ends_with("ed") && word.len() > 5 {
            word[..word.len() - 2].to_string()
        } else if word.ends_with("s") && word.len() > 4 {
            word[..word.len() - 1].to_string()
        } else {
            word.to_string()
        }
    }

    /// Calculate repetition distribution score
    fn calculate_repetition_distribution(&self, frequent_terms: &[(String, usize)]) -> f64 {
        if frequent_terms.is_empty() {
            return 0.0;
        }

        let total_repetitions: usize = frequent_terms.iter().map(|(_, count)| count).sum();
        let unique_terms = frequent_terms.len();

        // Calculate entropy of distribution
        let mut entropy = 0.0;
        for (_, count) in frequent_terms {
            let probability = *count as f64 / total_repetitions as f64;
            if probability > 0.0 {
                entropy -= probability * probability.log2();
            }
        }

        let max_entropy = (unique_terms as f64).log2();
        if max_entropy > 0.0 {
            entropy / max_entropy
        } else {
            0.0
        }
    }

    /// Analyze synonym networks (simplified)
    fn analyze_synonym_networks(&self, sentences: &[String]) -> SynonymNetworkMetrics {
        let synonym_pairs = self.get_common_synonym_pairs();
        let mut clusters = Vec::new();
        let mut cluster_id = 0;

        for (word1, word2) in synonym_pairs {
            let positions1 = self.find_word_positions(sentences, &word1);
            let positions2 = self.find_word_positions(sentences, &word2);

            if !positions1.is_empty() && !positions2.is_empty() {
                let cluster = SynonymCluster {
                    cluster_id,
                    words: vec![word1, word2],
                    coherence_score: 0.8,
                    similarity_threshold: 0.7,
                };
                clusters.push(cluster);
                cluster_id += 1;
            }
        }

        let cluster_count = clusters.len();
        let average_cluster_size = if cluster_count > 0 {
            clusters.iter().map(|c| c.words.len()).sum::<usize>() as f64 / cluster_count as f64
        } else {
            0.0
        };

        let connectivity_score = cluster_count as f64 / 10.0; // Normalize by expected max
        let major_clusters = clusters.into_iter().take(5).collect();

        SynonymNetworkMetrics {
            cluster_count,
            average_cluster_size,
            connectivity_score: connectivity_score.min(1.0),
            major_clusters,
        }
    }

    /// Calculate semantic field coherence
    fn calculate_semantic_field_coherence(&self, sentences: &[String]) -> f64 {
        // This is a simplified implementation
        // A full implementation would use semantic similarity models
        0.6 // Placeholder value
    }

    /// Calculate lexical sophistication
    fn calculate_lexical_sophistication(&self, sentences: &[String]) -> f64 {
        let mut total_words = 0;
        let mut sophisticated_words = 0;
        let sophisticated_patterns = ["tion", "sion", "ment", "ness", "ity", "ency"];

        for sentence in sentences {
            for word in sentence.split_whitespace() {
                let normalized = word
                    .to_lowercase()
                    .trim_matches(|c: char| !c.is_alphabetic())
                    .to_string();
                if normalized.len() > 3 {
                    total_words += 1;
                    if normalized.len() > 7
                        || sophisticated_patterns
                            .iter()
                            .any(|pattern| normalized.contains(pattern))
                    {
                        sophisticated_words += 1;
                    }
                }
            }
        }

        if total_words > 0 {
            sophisticated_words as f64 / total_words as f64
        } else {
            0.0
        }
    }

    /// Analyze conjunctive cohesion
    fn analyze_conjunctive_cohesion(
        &self,
        sentences: &[String],
    ) -> Result<ConjunctiveCohesionMetrics, CohesionAnalysisError> {
        let conjunction_counts = self.count_conjunctions_by_type(sentences);
        let conjunctive_density =
            self.calculate_conjunctive_density(&conjunction_counts, sentences.len());
        let logical_flow_score = self.calculate_logical_flow_score(sentences);
        let conjunction_effectiveness = self.calculate_conjunction_effectiveness(sentences);
        let complex_conjunctions = self.analyze_complex_conjunctions(sentences);

        Ok(ConjunctiveCohesionMetrics {
            conjunction_counts,
            conjunctive_density,
            logical_flow_score,
            conjunction_effectiveness,
            complex_conjunctions,
        })
    }

    /// Count conjunctions by type
    fn count_conjunctions_by_type(&self, sentences: &[String]) -> HashMap<String, usize> {
        let mut counts = HashMap::new();

        for sentence in sentences {
            for word in sentence.split_whitespace() {
                let normalized = word
                    .to_lowercase()
                    .trim_matches(|c: char| !c.is_alphabetic())
                    .to_string();
                if let Some(conjunction_type) = self.conjunction_patterns.get(&normalized) {
                    *counts.entry(conjunction_type.clone()).or_insert(0) += 1;
                }
            }
        }

        counts
    }

    /// Calculate conjunctive density
    fn calculate_conjunctive_density(
        &self,
        conjunction_counts: &HashMap<String, usize>,
        sentence_count: usize,
    ) -> f64 {
        let total_conjunctions: usize = conjunction_counts.values().sum();
        if sentence_count > 0 {
            total_conjunctions as f64 / sentence_count as f64
        } else {
            0.0
        }
    }

    /// Calculate logical flow score
    fn calculate_logical_flow_score(&self, sentences: &[String]) -> f64 {
        // Simplified logical flow analysis
        if sentences.len() < 2 {
            return 1.0;
        }

        let mut flow_score = 0.0;
        for i in 1..sentences.len() {
            flow_score += self.calculate_sentence_pair_flow(&sentences[i - 1], &sentences[i]);
        }

        flow_score / (sentences.len() - 1) as f64
    }

    /// Calculate flow between sentence pair
    fn calculate_sentence_pair_flow(&self, sent1: &str, sent2: &str) -> f64 {
        // Check for logical connectors at the beginning of the second sentence
        let logical_connectors = [
            "however",
            "therefore",
            "furthermore",
            "moreover",
            "consequently",
            "thus",
        ];
        let sent2_lower = sent2.to_lowercase();

        for connector in &logical_connectors {
            if sent2_lower.starts_with(connector) {
                return 0.8; // High flow with explicit connector
            }
        }

        // Check for implicit logical flow (simplified)
        let lexical_overlap = self.calculate_lexical_overlap_simple(sent1, sent2);
        lexical_overlap * 0.6 // Implicit flow based on lexical connection
    }

    /// Simple lexical overlap calculation
    fn calculate_lexical_overlap_simple(&self, sent1: &str, sent2: &str) -> f64 {
        let words1: HashSet<&str> = sent1.split_whitespace().collect();
        let words2: HashSet<&str> = sent2.split_whitespace().collect();

        let intersection = words1.intersection(&words2).count();
        let union = words1.union(&words2).count();

        if union > 0 {
            intersection as f64 / union as f64
        } else {
            0.0
        }
    }

    /// Calculate conjunction effectiveness
    fn calculate_conjunction_effectiveness(&self, sentences: &[String]) -> f64 {
        let mut total_effectiveness = 0.0;
        let mut conjunction_count = 0;

        for sentence in sentences {
            for word in sentence.split_whitespace() {
                let normalized = word.to_lowercase();
                if self.conjunction_patterns.contains_key(&normalized) {
                    total_effectiveness += self.calculate_conjunction_strength(&word);
                    conjunction_count += 1;
                }
            }
        }

        if conjunction_count > 0 {
            total_effectiveness / conjunction_count as f64
        } else {
            0.0
        }
    }

    /// Analyze complex conjunctions
    fn analyze_complex_conjunctions(&self, sentences: &[String]) -> Vec<ComplexConjunction> {
        let mut complex_conjunctions = Vec::new();
        let complex_patterns = [
            ("on the other hand", "contrast"),
            ("in addition to", "addition"),
            ("as a result of", "causation"),
            ("in spite of", "concession"),
            ("for the purpose of", "purpose"),
        ];

        for (sent_idx, sentence) in sentences.iter().enumerate() {
            let normalized = sentence.to_lowercase();
            for (pattern, relation) in &complex_patterns {
                if normalized.contains(pattern) {
                    let conjunction = ComplexConjunction {
                        text: pattern.to_string(),
                        logical_relation: relation.to_string(),
                        position: (sent_idx, 0), // Simplified position
                        effectiveness: 0.8,
                        scope: 2, // Affects current and next sentence
                    };
                    complex_conjunctions.push(conjunction);
                }
            }
        }

        complex_conjunctions
    }

    /// Analyze temporal coherence
    fn analyze_temporal_coherence(
        &self,
        sentences: &[String],
    ) -> Result<TemporalCoherenceMetrics, CohesionAnalysisError> {
        let temporal_marker_frequency = self.calculate_temporal_marker_frequency(sentences);
        let sequence_coherence = self.calculate_sequence_coherence(sentences);
        let anchoring_score = self.calculate_temporal_anchoring(sentences);
        let timeline_consistency = self.calculate_timeline_consistency(sentences);
        let temporal_disruptions = self.count_temporal_disruptions(sentences);
        let temporal_chains = self.identify_temporal_chains(sentences)?;

        Ok(TemporalCoherenceMetrics {
            temporal_marker_frequency,
            sequence_coherence,
            anchoring_score,
            timeline_consistency,
            temporal_disruptions,
            temporal_chains,
        })
    }

    /// Calculate temporal marker frequency
    fn calculate_temporal_marker_frequency(&self, sentences: &[String]) -> f64 {
        let mut temporal_marker_count = 0;
        let total_sentences = sentences.len();

        for sentence in sentences {
            for word in sentence.split_whitespace() {
                if self.temporal_markers.contains(&word.to_lowercase()) {
                    temporal_marker_count += 1;
                    break; // Count at most one per sentence
                }
            }
        }

        if total_sentences > 0 {
            temporal_marker_count as f64 / total_sentences as f64
        } else {
            0.0
        }
    }

    /// Calculate sequence coherence
    fn calculate_sequence_coherence(&self, sentences: &[String]) -> f64 {
        if sentences.len() < 2 {
            return 1.0;
        }

        let mut coherence_sum = 0.0;
        for i in 1..sentences.len() {
            coherence_sum +=
                self.calculate_temporal_coherence_pair(&sentences[i - 1], &sentences[i]);
        }

        coherence_sum / (sentences.len() - 1) as f64
    }

    /// Calculate temporal coherence between sentence pair
    fn calculate_temporal_coherence_pair(&self, sent1: &str, sent2: &str) -> f64 {
        let temporal_score1 = self.calculate_sentence_temporal_score(sent1);
        let temporal_score2 = self.calculate_sentence_temporal_score(sent2);

        // Higher coherence if both sentences have temporal elements
        if temporal_score1 > 0.0 && temporal_score2 > 0.0 {
            0.8
        } else if temporal_score1 > 0.0 || temporal_score2 > 0.0 {
            0.6
        } else {
            0.4 // Neutral temporal coherence
        }
    }

    /// Calculate temporal score for a sentence
    fn calculate_sentence_temporal_score(&self, sentence: &str) -> f64 {
        let temporal_markers_count = sentence
            .split_whitespace()
            .filter(|word| self.temporal_markers.contains(&word.to_lowercase()))
            .count();

        (temporal_markers_count as f64).min(1.0)
    }

    /// Calculate temporal anchoring
    fn calculate_temporal_anchoring(&self, sentences: &[String]) -> f64 {
        // Count sentences with specific temporal references
        let anchored_sentences = sentences
            .iter()
            .filter(|sentence| self.has_specific_temporal_reference(sentence))
            .count();

        if sentences.is_empty() {
            0.0
        } else {
            anchored_sentences as f64 / sentences.len() as f64
        }
    }

    /// Check if sentence has specific temporal reference
    fn has_specific_temporal_reference(&self, sentence: &str) -> bool {
        let specific_temporal_patterns = [
            "yesterday",
            "today",
            "tomorrow",
            "monday",
            "tuesday",
            "wednesday",
            "january",
            "february",
            "march",
            "2023",
            "2024",
            "morning",
            "evening",
        ];

        let normalized = sentence.to_lowercase();
        specific_temporal_patterns
            .iter()
            .any(|pattern| normalized.contains(pattern))
    }

    /// Calculate timeline consistency
    fn calculate_timeline_consistency(&self, sentences: &[String]) -> f64 {
        // This is a simplified implementation
        // A full implementation would track temporal references and check for consistency
        0.7 // Placeholder value
    }

    /// Count temporal disruptions
    fn count_temporal_disruptions(&self, sentences: &[String]) -> usize {
        // Simplified: count abrupt temporal shifts
        let mut disruptions = 0;

        for i in 1..sentences.len() {
            if self.has_temporal_disruption(&sentences[i - 1], &sentences[i]) {
                disruptions += 1;
            }
        }

        disruptions
    }

    /// Check for temporal disruption between sentences
    fn has_temporal_disruption(&self, sent1: &str, sent2: &str) -> bool {
        let past_indicators = ["was", "were", "had", "did", "yesterday", "before"];
        let future_indicators = ["will", "shall", "tomorrow", "later", "next"];

        let sent1_is_past = past_indicators
            .iter()
            .any(|indicator| sent1.to_lowercase().contains(indicator));
        let sent1_is_future = future_indicators
            .iter()
            .any(|indicator| sent1.to_lowercase().contains(indicator));

        let sent2_is_past = past_indicators
            .iter()
            .any(|indicator| sent2.to_lowercase().contains(indicator));
        let sent2_is_future = future_indicators
            .iter()
            .any(|indicator| sent2.to_lowercase().contains(indicator));

        // Disruption if there's a clear temporal shift without transition
        (sent1_is_past && sent2_is_future) || (sent1_is_future && sent2_is_past)
    }

    /// Identify temporal chains
    fn identify_temporal_chains(
        &self,
        sentences: &[String],
    ) -> Result<Vec<TemporalChain>, CohesionAnalysisError> {
        let mut chains = Vec::new();

        // Simplified temporal chain identification
        let mut current_chain: Vec<String> = Vec::new();
        let mut current_positions: Vec<usize> = Vec::new();

        for (i, sentence) in sentences.iter().enumerate() {
            if self.calculate_sentence_temporal_score(sentence) > 0.0 {
                current_chain.push(sentence.clone());
                current_positions.push(i);
            } else if !current_chain.is_empty() {
                // End current chain
                let chain = TemporalChain {
                    chain_id: chains.len(),
                    expressions: current_chain.clone(),
                    ordering: current_positions.clone(),
                    consistency_score: 0.7, // Simplified calculation
                };
                chains.push(chain);
                current_chain.clear();
                current_positions.clear();
            }
        }

        // Add final chain if exists
        if !current_chain.is_empty() {
            let chain = TemporalChain {
                chain_id: chains.len(),
                expressions: current_chain,
                ordering: current_positions,
                consistency_score: 0.7,
            };
            chains.push(chain);
        }

        Ok(chains)
    }

    /// Build reference patterns
    fn build_reference_patterns() -> HashSet<String> {
        [
            "he", "she", "it", "they", "him", "her", "them", "his", "hers", "its", "their", "this",
            "that", "these", "those",
        ]
        .iter()
        .map(|s| s.to_string())
        .collect()
    }

    /// Build conjunction patterns
    fn build_conjunction_patterns() -> HashMap<String, String> {
        let mut patterns = HashMap::new();

        // Additive
        patterns.insert("and".to_string(), "additive".to_string());
        patterns.insert("also".to_string(), "additive".to_string());
        patterns.insert("furthermore".to_string(), "additive".to_string());

        // Adversative
        patterns.insert("but".to_string(), "adversative".to_string());
        patterns.insert("however".to_string(), "adversative".to_string());
        patterns.insert("nevertheless".to_string(), "adversative".to_string());

        // Causal
        patterns.insert("therefore".to_string(), "causal".to_string());
        patterns.insert("thus".to_string(), "causal".to_string());
        patterns.insert("consequently".to_string(), "causal".to_string());

        // Temporal
        patterns.insert("then".to_string(), "temporal".to_string());
        patterns.insert("next".to_string(), "temporal".to_string());
        patterns.insert("finally".to_string(), "temporal".to_string());

        patterns
    }

    /// Build temporal markers
    fn build_temporal_markers() -> HashSet<String> {
        [
            "before",
            "after",
            "during",
            "while",
            "when",
            "then",
            "now",
            "later",
            "earlier",
            "subsequently",
            "previously",
            "meanwhile",
            "first",
            "second",
            "third",
            "finally",
            "next",
            "last",
        ]
        .iter()
        .map(|s| s.to_string())
        .collect()
    }
}

impl Default for ReferenceCohesionMetrics {
    fn default() -> Self {
        Self {
            total_references: 0,
            reference_density: 0.0,
            resolution_success_rate: 0.0,
            average_reference_distance: 0.0,
            ambiguous_references: 0,
            complexity_score: 0.0,
            reference_chains: Vec::new(),
        }
    }
}

impl Default for LexicalCohesionMetrics {
    fn default() -> Self {
        Self {
            lexical_ties: 0,
            lexical_density: 0.0,
            repetition_analysis: RepetitionAnalysis {
                exact_repetitions: 0,
                morphological_variations: 0,
                frequent_terms: Vec::new(),
                distribution_score: 0.0,
            },
            synonym_networks: SynonymNetworkMetrics {
                cluster_count: 0,
                average_cluster_size: 0.0,
                connectivity_score: 0.0,
                major_clusters: Vec::new(),
            },
            semantic_field_coherence: 0.0,
            sophistication_score: 0.0,
        }
    }
}

impl Default for ConjunctiveCohesionMetrics {
    fn default() -> Self {
        Self {
            conjunction_counts: HashMap::new(),
            conjunctive_density: 0.0,
            logical_flow_score: 0.0,
            conjunction_effectiveness: 0.0,
            complex_conjunctions: Vec::new(),
        }
    }
}