sklears-semi-supervised 0.2.0

Semi-supervised learning algorithms
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
//! Robust graph learning methods for semi-supervised learning
//!
//! This module provides robust graph construction algorithms that are resistant
//! to outliers, noise, and adversarial examples in semi-supervised learning.

use scirs2_core::ndarray_ext::{Array1, Array2, ArrayView1, ArrayView2};
use scirs2_core::random::rand_prelude::*;
use scirs2_core::random::Random;
use sklears_core::error::SklearsError;
use std::collections::HashMap;

/// Robust graph construction using M-estimators and outlier detection
#[derive(Clone)]
pub struct RobustGraphConstruction {
    /// Number of neighbors for k-NN graph construction
    pub k_neighbors: usize,
    /// Robust distance metric: "huber", "tukey", "cauchy", "welsch"
    pub robust_metric: String,
    /// Robustness parameter for M-estimators
    pub robustness_param: f64,
    /// Outlier detection threshold
    pub outlier_threshold: f64,
    /// Graph construction method: "knn", "epsilon", "adaptive"
    pub construction_method: String,
    /// Epsilon parameter for epsilon-neighborhood graphs
    pub epsilon: f64,
    /// Random state for reproducibility
    pub random_state: Option<u64>,
}

impl RobustGraphConstruction {
    /// Create a new robust graph construction instance
    pub fn new() -> Self {
        Self {
            k_neighbors: 5,
            robust_metric: "huber".to_string(),
            robustness_param: 1.345,
            outlier_threshold: 3.0,
            construction_method: "knn".to_string(),
            epsilon: 1.0,
            random_state: None,
        }
    }

    /// Set the number of neighbors
    pub fn k_neighbors(mut self, k: usize) -> Self {
        self.k_neighbors = k;
        self
    }

    /// Set the robust distance metric
    pub fn robust_metric(mut self, metric: String) -> Self {
        self.robust_metric = metric;
        self
    }

    /// Set the robustness parameter
    pub fn robustness_param(mut self, param: f64) -> Self {
        self.robustness_param = param;
        self
    }

    /// Set the outlier detection threshold
    pub fn outlier_threshold(mut self, threshold: f64) -> Self {
        self.outlier_threshold = threshold;
        self
    }

    /// Set the graph construction method
    pub fn construction_method(mut self, method: String) -> Self {
        self.construction_method = method;
        self
    }

    /// Set the epsilon parameter
    pub fn epsilon(mut self, eps: f64) -> Self {
        self.epsilon = eps;
        self
    }

    /// Set the random state
    pub fn random_state(mut self, seed: u64) -> Self {
        self.random_state = Some(seed);
        self
    }

    /// Construct a robust graph from data
    #[allow(non_snake_case)] // standard ML notation
    pub fn fit(&self, X: &ArrayView2<f64>) -> Result<Array2<f64>, SklearsError> {
        // Detect outliers
        let outlier_mask = self.detect_outliers(X)?;

        // Construct graph with robust distances
        let graph = match self.construction_method.as_str() {
            "knn" => self.construct_robust_knn_graph(X, &outlier_mask)?,
            "epsilon" => self.construct_robust_epsilon_graph(X, &outlier_mask)?,
            "adaptive" => self.construct_adaptive_robust_graph(X, &outlier_mask)?,
            _ => {
                return Err(SklearsError::InvalidInput(format!(
                    "Unknown construction method: {}",
                    self.construction_method
                )));
            }
        };

        Ok(graph)
    }

    /// Detect outliers using robust statistical methods
    #[allow(non_snake_case)] // standard ML notation
    fn detect_outliers(&self, X: &ArrayView2<f64>) -> Result<Array1<bool>, SklearsError> {
        let n_samples = X.nrows();
        let mut outlier_mask = Array1::from_elem(n_samples, false);

        // Compute robust center and scale estimates
        let robust_center = self.compute_robust_center(X)?;
        let robust_scale = self.compute_robust_scale(X, &robust_center)?;

        // Identify outliers based on Mahalanobis distance
        for i in 0..n_samples {
            let distance = self.mahalanobis_distance(&X.row(i), &robust_center, robust_scale);
            if distance > self.outlier_threshold {
                outlier_mask[i] = true;
            }
        }

        Ok(outlier_mask)
    }

    /// Compute robust center using median
    #[allow(non_snake_case)] // standard ML notation
    fn compute_robust_center(&self, X: &ArrayView2<f64>) -> Result<Array1<f64>, SklearsError> {
        let n_features = X.ncols();
        let mut center = Array1::zeros(n_features);

        for j in 0..n_features {
            let mut feature_values: Vec<f64> = X.column(j).to_vec();
            feature_values.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));

            let median = if feature_values.len().is_multiple_of(2) {
                let mid = feature_values.len() / 2;
                (feature_values[mid - 1] + feature_values[mid]) / 2.0
            } else {
                feature_values[feature_values.len() / 2]
            };

            center[j] = median;
        }

        Ok(center)
    }

    /// Compute robust scale using MAD (Median Absolute Deviation)
    #[allow(non_snake_case)] // standard ML notation
    fn compute_robust_scale(
        &self,
        X: &ArrayView2<f64>,
        center: &Array1<f64>,
    ) -> Result<f64, SklearsError> {
        let mut deviations = Vec::new();

        for i in 0..X.nrows() {
            let distance = self.euclidean_distance(&X.row(i), &center.view());
            deviations.push(distance);
        }

        deviations.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));

        let mad = if deviations.len() % 2 == 0 {
            let mid = deviations.len() / 2;
            (deviations[mid - 1] + deviations[mid]) / 2.0
        } else {
            deviations[deviations.len() / 2]
        };

        // MAD to standard deviation conversion factor
        Ok(mad * 1.4826)
    }

    /// Compute Mahalanobis distance (simplified version using robust scale)
    fn mahalanobis_distance(&self, x: &ArrayView1<f64>, center: &Array1<f64>, scale: f64) -> f64 {
        let distance = self.euclidean_distance(x, &center.view());
        if scale > 0.0 {
            distance / scale
        } else {
            distance
        }
    }

    /// Construct robust k-NN graph
    #[allow(non_snake_case)] // standard ML notation
    fn construct_robust_knn_graph(
        &self,
        X: &ArrayView2<f64>,
        outlier_mask: &Array1<bool>,
    ) -> Result<Array2<f64>, SklearsError> {
        let n_samples = X.nrows();
        let mut graph = Array2::<f64>::zeros((n_samples, n_samples));

        for i in 0..n_samples {
            if outlier_mask[i] {
                continue; // Skip outliers
            }

            let mut distances: Vec<(f64, usize)> = Vec::new();

            for j in 0..n_samples {
                if i != j && !outlier_mask[j] {
                    let dist = self.robust_distance(&X.row(i), &X.row(j));
                    distances.push((dist, j));
                }
            }

            // Sort by distance and take k nearest neighbors
            distances.sort_by(|a, b| a.0.partial_cmp(&b.0).unwrap_or(std::cmp::Ordering::Equal));

            for (dist, j) in distances.iter().take(self.k_neighbors.min(distances.len())) {
                let weight = self.robust_weight(*dist);
                graph[[i, *j]] = weight;
            }
        }

        // Make graph symmetric
        for i in 0..n_samples {
            for j in i + 1..n_samples {
                let avg_weight = (graph[[i, j]] + graph[[j, i]]) / 2.0;
                graph[[i, j]] = avg_weight;
                graph[[j, i]] = avg_weight;
            }
        }

        Ok(graph)
    }

    /// Construct robust epsilon-neighborhood graph
    #[allow(non_snake_case)] // standard ML notation
    fn construct_robust_epsilon_graph(
        &self,
        X: &ArrayView2<f64>,
        outlier_mask: &Array1<bool>,
    ) -> Result<Array2<f64>, SklearsError> {
        let n_samples = X.nrows();
        let mut graph = Array2::<f64>::zeros((n_samples, n_samples));

        for i in 0..n_samples {
            if outlier_mask[i] {
                continue; // Skip outliers
            }

            for j in i + 1..n_samples {
                if !outlier_mask[j] {
                    let dist = self.robust_distance(&X.row(i), &X.row(j));

                    if dist <= self.epsilon {
                        let weight = self.robust_weight(dist);
                        graph[[i, j]] = weight;
                        graph[[j, i]] = weight;
                    }
                }
            }
        }

        Ok(graph)
    }

    /// Construct adaptive robust graph
    #[allow(non_snake_case)] // standard ML notation
    fn construct_adaptive_robust_graph(
        &self,
        X: &ArrayView2<f64>,
        outlier_mask: &Array1<bool>,
    ) -> Result<Array2<f64>, SklearsError> {
        let n_samples = X.nrows();
        let mut graph = Array2::<f64>::zeros((n_samples, n_samples));

        // Compute adaptive epsilon for each point
        let adaptive_epsilons = self.compute_adaptive_epsilons(X, outlier_mask)?;

        for i in 0..n_samples {
            if outlier_mask[i] {
                continue; // Skip outliers
            }

            for j in i + 1..n_samples {
                if !outlier_mask[j] {
                    let dist = self.robust_distance(&X.row(i), &X.row(j));
                    let epsilon_ij = (adaptive_epsilons[i] + adaptive_epsilons[j]) / 2.0;

                    if dist <= epsilon_ij {
                        let weight = self.robust_weight(dist);
                        graph[[i, j]] = weight;
                        graph[[j, i]] = weight;
                    }
                }
            }
        }

        Ok(graph)
    }

    /// Compute adaptive epsilon values for each point
    #[allow(non_snake_case)] // standard ML notation
    fn compute_adaptive_epsilons(
        &self,
        X: &ArrayView2<f64>,
        outlier_mask: &Array1<bool>,
    ) -> Result<Array1<f64>, SklearsError> {
        let n_samples = X.nrows();
        let mut epsilons = Array1::zeros(n_samples);

        for i in 0..n_samples {
            if outlier_mask[i] {
                epsilons[i] = f64::INFINITY; // Outliers get infinite epsilon
                continue;
            }

            let mut distances = Vec::new();
            for j in 0..n_samples {
                if i != j && !outlier_mask[j] {
                    let dist = self.robust_distance(&X.row(i), &X.row(j));
                    distances.push(dist);
                }
            }

            if distances.is_empty() {
                epsilons[i] = 1.0; // Default epsilon
                continue;
            }

            distances.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));

            // Use k-th nearest neighbor distance as adaptive epsilon
            let k_index = self.k_neighbors.min(distances.len()) - 1;
            epsilons[i] = distances[k_index];
        }

        Ok(epsilons)
    }

    /// Compute robust distance using M-estimators
    fn robust_distance(&self, x1: &ArrayView1<f64>, x2: &ArrayView1<f64>) -> f64 {
        let euclidean_dist = self.euclidean_distance(x1, x2);

        match self.robust_metric.as_str() {
            "huber" => self.huber_distance(euclidean_dist),
            "tukey" => self.tukey_distance(euclidean_dist),
            "cauchy" => self.cauchy_distance(euclidean_dist),
            "welsch" => self.welsch_distance(euclidean_dist),
            _ => euclidean_dist, // Default to Euclidean
        }
    }

    /// Huber robust distance
    fn huber_distance(&self, dist: f64) -> f64 {
        let c = self.robustness_param;
        if dist <= c {
            0.5 * dist.powi(2)
        } else {
            c * dist - 0.5 * c.powi(2)
        }
    }

    /// Tukey biweight robust distance
    fn tukey_distance(&self, dist: f64) -> f64 {
        let c = self.robustness_param;
        if dist <= c {
            let ratio = dist / c;
            (c.powi(2) / 6.0) * (1.0 - (1.0 - ratio.powi(2)).powi(3))
        } else {
            c.powi(2) / 6.0
        }
    }

    /// Cauchy robust distance
    fn cauchy_distance(&self, dist: f64) -> f64 {
        let c = self.robustness_param;
        (c.powi(2) / 2.0) * ((1.0 + (dist / c).powi(2)).ln())
    }

    /// Welsch robust distance
    fn welsch_distance(&self, dist: f64) -> f64 {
        let c = self.robustness_param;
        (c.powi(2) / 2.0) * (1.0 - (-(dist / c).powi(2)).exp())
    }

    /// Compute robust weight from distance
    fn robust_weight(&self, dist: f64) -> f64 {
        match self.robust_metric.as_str() {
            "huber" => self.huber_weight(dist),
            "tukey" => self.tukey_weight(dist),
            "cauchy" => self.cauchy_weight(dist),
            "welsch" => self.welsch_weight(dist),
            _ => (-dist.powi(2) / 2.0).exp(), // Default RBF kernel
        }
    }

    /// Huber weight function
    fn huber_weight(&self, dist: f64) -> f64 {
        let c = self.robustness_param;
        if dist <= c {
            1.0
        } else {
            c / dist
        }
    }

    /// Tukey biweight weight function
    fn tukey_weight(&self, dist: f64) -> f64 {
        let c = self.robustness_param;
        if dist <= c {
            let ratio = dist / c;
            (1.0 - ratio.powi(2)).powi(2)
        } else {
            0.0
        }
    }

    /// Cauchy weight function
    fn cauchy_weight(&self, dist: f64) -> f64 {
        let c = self.robustness_param;
        1.0 / (1.0 + (dist / c).powi(2))
    }

    /// Welsch weight function
    fn welsch_weight(&self, dist: f64) -> f64 {
        let c = self.robustness_param;
        (-(dist / c).powi(2)).exp()
    }

    /// Compute Euclidean distance between two vectors
    fn euclidean_distance(&self, x1: &ArrayView1<f64>, x2: &ArrayView1<f64>) -> f64 {
        x1.iter()
            .zip(x2.iter())
            .map(|(a, b)| (a - b).powi(2))
            .sum::<f64>()
            .sqrt()
    }
}

impl Default for RobustGraphConstruction {
    fn default() -> Self {
        Self::new()
    }
}

/// Noise-robust label propagation for semi-supervised learning
#[derive(Clone)]
pub struct NoiseRobustPropagation {
    /// Number of neighbors for graph construction
    pub k_neighbors: usize,
    /// Noise level estimation method: "mad", "iqr", "adaptive"
    pub noise_estimation: String,
    /// Robustness parameter for propagation
    pub robustness_param: f64,
    /// Maximum iterations for label propagation
    pub max_iter: usize,
    /// Convergence tolerance
    pub tolerance: f64,
    /// Alpha parameter for label spreading
    pub alpha: f64,
    /// Random state for reproducibility
    pub random_state: Option<u64>,
}

impl NoiseRobustPropagation {
    /// Create a new noise-robust propagation instance
    pub fn new() -> Self {
        Self {
            k_neighbors: 5,
            noise_estimation: "mad".to_string(),
            robustness_param: 1.345,
            max_iter: 1000,
            tolerance: 1e-6,
            alpha: 0.2,
            random_state: None,
        }
    }

    /// Set the number of neighbors
    pub fn k_neighbors(mut self, k: usize) -> Self {
        self.k_neighbors = k;
        self
    }

    /// Set the noise estimation method
    pub fn noise_estimation(mut self, method: String) -> Self {
        self.noise_estimation = method;
        self
    }

    /// Set the robustness parameter
    pub fn robustness_param(mut self, param: f64) -> Self {
        self.robustness_param = param;
        self
    }

    /// Set the maximum iterations
    pub fn max_iter(mut self, max_iter: usize) -> Self {
        self.max_iter = max_iter;
        self
    }

    /// Set the convergence tolerance
    pub fn tolerance(mut self, tol: f64) -> Self {
        self.tolerance = tol;
        self
    }

    /// Set the alpha parameter
    pub fn alpha(mut self, alpha: f64) -> Self {
        self.alpha = alpha;
        self
    }

    /// Set the random state
    pub fn random_state(mut self, seed: u64) -> Self {
        self.random_state = Some(seed);
        self
    }

    /// Perform noise-robust label propagation
    #[allow(non_snake_case)] // standard ML notation
    pub fn fit(
        &self,
        X: &ArrayView2<f64>,
        y: &ArrayView1<i32>,
    ) -> Result<Array1<i32>, SklearsError> {
        let n_samples = X.nrows();

        if y.len() != n_samples {
            return Err(SklearsError::ShapeMismatch {
                expected: format!("X and y should have same number of samples: {}", X.nrows()),
                actual: format!("X has {} samples, y has {} samples", X.nrows(), y.len()),
            });
        }

        // Estimate noise level
        let noise_level = self.estimate_noise_level(X)?;

        // Construct robust graph
        let robust_graph_builder = RobustGraphConstruction::new()
            .k_neighbors(self.k_neighbors)
            .robustness_param(self.robustness_param)
            .outlier_threshold(noise_level * 3.0);

        let graph = robust_graph_builder.fit(X)?;

        // Perform robust label propagation
        let labels = self.robust_propagate_labels(&graph, y)?;

        Ok(labels)
    }

    /// Estimate noise level in the data
    #[allow(non_snake_case)] // standard ML notation
    fn estimate_noise_level(&self, X: &ArrayView2<f64>) -> Result<f64, SklearsError> {
        match self.noise_estimation.as_str() {
            "mad" => self.estimate_noise_mad(X),
            "iqr" => self.estimate_noise_iqr(X),
            "adaptive" => self.estimate_noise_adaptive(X),
            _ => Ok(1.0), // Default noise level
        }
    }

    /// Estimate noise using Median Absolute Deviation
    #[allow(non_snake_case)] // standard ML notation
    fn estimate_noise_mad(&self, X: &ArrayView2<f64>) -> Result<f64, SklearsError> {
        let n_samples = X.nrows();
        let mut distances = Vec::new();

        // Compute pairwise distances
        for i in 0..n_samples {
            for j in i + 1..n_samples {
                let dist = self.euclidean_distance(&X.row(i), &X.row(j));
                distances.push(dist);
            }
        }

        if distances.is_empty() {
            return Ok(1.0);
        }

        distances.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));

        let median = if distances.len() % 2 == 0 {
            let mid = distances.len() / 2;
            (distances[mid - 1] + distances[mid]) / 2.0
        } else {
            distances[distances.len() / 2]
        };

        // Compute MAD
        let mut deviations: Vec<f64> = distances.iter().map(|&d| (d - median).abs()).collect();
        deviations.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));

        let mad = if deviations.len().is_multiple_of(2) {
            let mid = deviations.len() / 2;
            (deviations[mid - 1] + deviations[mid]) / 2.0
        } else {
            deviations[deviations.len() / 2]
        };

        Ok(mad * 1.4826) // MAD to std conversion
    }

    /// Estimate noise using Interquartile Range
    #[allow(non_snake_case)] // standard ML notation
    fn estimate_noise_iqr(&self, X: &ArrayView2<f64>) -> Result<f64, SklearsError> {
        let n_samples = X.nrows();
        let mut distances = Vec::new();

        // Compute pairwise distances
        for i in 0..n_samples {
            for j in i + 1..n_samples {
                let dist = self.euclidean_distance(&X.row(i), &X.row(j));
                distances.push(dist);
            }
        }

        if distances.is_empty() {
            return Ok(1.0);
        }

        distances.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));

        let q1_idx = distances.len() / 4;
        let q3_idx = 3 * distances.len() / 4;

        let iqr = distances[q3_idx] - distances[q1_idx];

        Ok(iqr / 1.349) // IQR to std conversion
    }

    /// Estimate noise adaptively
    #[allow(non_snake_case)] // standard ML notation
    fn estimate_noise_adaptive(&self, X: &ArrayView2<f64>) -> Result<f64, SklearsError> {
        // Combine MAD and IQR estimates
        let mad_estimate = self.estimate_noise_mad(X)?;
        let iqr_estimate = self.estimate_noise_iqr(X)?;

        // Use the minimum to be more conservative
        Ok(mad_estimate.min(iqr_estimate))
    }

    /// Perform robust label propagation
    #[allow(non_snake_case)]
    fn robust_propagate_labels(
        &self,
        graph: &Array2<f64>,
        y: &ArrayView1<i32>,
    ) -> Result<Array1<i32>, SklearsError> {
        let n_samples = graph.nrows();

        // Identify labeled and unlabeled samples
        let labeled_mask: Array1<bool> = y.iter().map(|&label| label != -1).collect();
        let unique_labels: Vec<i32> = y
            .iter()
            .filter(|&&label| label != -1)
            .cloned()
            .collect::<std::collections::HashSet<_>>()
            .into_iter()
            .collect();

        if unique_labels.is_empty() {
            return Err(SklearsError::InvalidInput(
                "No labeled samples found".to_string(),
            ));
        }

        let n_classes = unique_labels.len();

        // Initialize label probability matrix
        let mut F = Array2::<f64>::zeros((n_samples, n_classes));

        // Set initial labels for labeled samples
        for i in 0..n_samples {
            if labeled_mask[i] {
                if let Some(class_idx) = unique_labels.iter().position(|&x| x == y[i]) {
                    F[[i, class_idx]] = 1.0;
                }
            }
        }

        // Normalize graph to get transition matrix
        let P = self.normalize_graph(graph)?;

        // Iterative label propagation with robustness
        for _iter in 0..self.max_iter {
            let F_old = F.clone();

            // Propagate labels: F = α * P * F + (1-α) * Y
            let propagated = P.dot(&F);
            F = &propagated * self.alpha;

            // Reset labeled samples
            for i in 0..n_samples {
                if labeled_mask[i] {
                    F.row_mut(i).fill(0.0);
                    if let Some(class_idx) = unique_labels.iter().position(|&x| x == y[i]) {
                        F[[i, class_idx]] = 1.0;
                    }
                }
            }

            // Check convergence
            let change = (&F - &F_old).iter().map(|x| x.abs()).sum::<f64>();
            if change < self.tolerance {
                break;
            }
        }

        // Convert probabilities to labels
        let mut labels = Array1::zeros(n_samples);
        for i in 0..n_samples {
            let mut max_prob = 0.0;
            let mut max_class = 0;

            for j in 0..n_classes {
                if F[[i, j]] > max_prob {
                    max_prob = F[[i, j]];
                    max_class = j;
                }
            }

            labels[i] = unique_labels[max_class];
        }

        Ok(labels)
    }

    /// Normalize graph to get transition matrix
    #[allow(non_snake_case)] // standard ML notation
    fn normalize_graph(&self, graph: &Array2<f64>) -> Result<Array2<f64>, SklearsError> {
        let n_samples = graph.nrows();
        let mut P = graph.clone();

        for i in 0..n_samples {
            let row_sum: f64 = P.row(i).sum();
            if row_sum > 0.0 {
                for j in 0..n_samples {
                    P[[i, j]] /= row_sum;
                }
            }
        }

        Ok(P)
    }

    /// Compute Euclidean distance between two vectors
    fn euclidean_distance(&self, x1: &ArrayView1<f64>, x2: &ArrayView1<f64>) -> f64 {
        x1.iter()
            .zip(x2.iter())
            .map(|(a, b)| (a - b).powi(2))
            .sum::<f64>()
            .sqrt()
    }
}

impl Default for NoiseRobustPropagation {
    fn default() -> Self {
        Self::new()
    }
}

/// Breakdown point analysis for robust graph learning methods
#[derive(Clone)]
pub struct BreakdownPointAnalysis {
    /// Robust estimators to analyze: "median", "huber", "tukey", "trimmed_mean"
    pub estimators: Vec<String>,
    /// Contamination levels to test (0.0 to 0.5)
    pub contamination_levels: Vec<f64>,
    /// Number of Monte Carlo simulations
    pub n_simulations: usize,
    /// Breakdown threshold (relative change in estimate)
    pub breakdown_threshold: f64,
    /// Random state for reproducibility
    pub random_state: Option<u64>,
}

impl BreakdownPointAnalysis {
    /// Create a new breakdown point analysis instance
    pub fn new() -> Self {
        Self {
            estimators: vec![
                "median".to_string(),
                "huber".to_string(),
                "tukey".to_string(),
                "trimmed_mean".to_string(),
            ],
            contamination_levels: (1..=25).map(|x| x as f64 / 100.0).collect(), // 1% to 25%
            n_simulations: 100,
            breakdown_threshold: 10.0, // 10x change indicates breakdown
            random_state: None,
        }
    }

    /// Set the estimators to analyze
    pub fn estimators(mut self, estimators: Vec<String>) -> Self {
        self.estimators = estimators;
        self
    }

    /// Set the contamination levels to test
    pub fn contamination_levels(mut self, levels: Vec<f64>) -> Self {
        self.contamination_levels = levels;
        self
    }

    /// Set the number of simulations
    pub fn n_simulations(mut self, n: usize) -> Self {
        self.n_simulations = n;
        self
    }

    /// Set the breakdown threshold
    pub fn breakdown_threshold(mut self, threshold: f64) -> Self {
        self.breakdown_threshold = threshold;
        self
    }

    /// Set the random state
    pub fn random_state(mut self, seed: u64) -> Self {
        self.random_state = Some(seed);
        self
    }

    /// Analyze breakdown points for robust graph construction
    #[allow(non_snake_case)] // standard ML notation
    pub fn analyze_graph_breakdown(
        &self,
        X: &ArrayView2<f64>,
    ) -> Result<HashMap<String, BreakdownResult>, SklearsError> {
        let mut results = HashMap::new();
        let mut rng = Random::default();

        for estimator in &self.estimators {
            let breakdown_result = self.estimate_breakdown_point(X, estimator, &mut rng)?;
            results.insert(estimator.clone(), breakdown_result);
        }

        Ok(results)
    }

    /// Estimate breakdown point for a specific estimator
    #[allow(non_snake_case)] // standard ML notation
    fn estimate_breakdown_point(
        &self,
        X: &ArrayView2<f64>,
        estimator: &str,
        rng: &mut Random,
    ) -> Result<BreakdownResult, SklearsError> {
        // Compute clean estimate (no contamination)
        let clean_estimate = self.compute_robust_estimate(X, estimator, 0.0, rng)?;

        let mut breakdown_rates = Vec::new();
        let mut first_breakdown = None;

        for &contamination_level in &self.contamination_levels {
            let mut breakdown_count = 0;

            for _sim in 0..self.n_simulations {
                // Create contaminated data
                let contaminated_X = self.contaminate_data(X, contamination_level, rng)?;

                // Compute estimate on contaminated data
                let contaminated_estimate =
                    self.compute_robust_estimate(&contaminated_X.view(), estimator, 0.0, rng)?;

                // Check if breakdown occurred
                let relative_change =
                    self.compute_relative_change(clean_estimate, contaminated_estimate);

                if relative_change > self.breakdown_threshold {
                    breakdown_count += 1;
                }
            }

            let breakdown_rate = breakdown_count as f64 / self.n_simulations as f64;
            breakdown_rates.push(breakdown_rate);

            // Record first significant breakdown
            if first_breakdown.is_none() && breakdown_rate > 0.5 {
                first_breakdown = Some(contamination_level);
            }
        }

        Ok(BreakdownResult {
            estimator: estimator.to_string(),
            theoretical_breakdown_point: self.theoretical_breakdown_point(estimator),
            empirical_breakdown_point: first_breakdown.unwrap_or(0.5),
            contamination_levels: self.contamination_levels.clone(),
            breakdown_rates,
            clean_estimate,
        })
    }

    /// Contaminate data by replacing a fraction with outliers
    #[allow(non_snake_case)] // standard ML notation
    fn contaminate_data<R>(
        &self,
        X: &ArrayView2<f64>,
        contamination_level: f64,
        rng: &mut Random<R>,
    ) -> Result<Array2<f64>, SklearsError>
    where
        R: Rng,
    {
        let n_samples = X.nrows();
        let n_features = X.ncols();
        let n_outliers = (n_samples as f64 * contamination_level).round() as usize;

        let mut contaminated_X = X.to_owned();

        if n_outliers == 0 {
            return Ok(contaminated_X);
        }

        // Select random samples to contaminate
        let outlier_indices: Vec<usize> =
            (0..n_samples).sample(rng, n_outliers).into_iter().collect();

        // Compute data range for generating outliers
        let mut feature_ranges = Vec::new();
        for j in 0..n_features {
            let column = X.column(j);
            let min_val = column.iter().fold(f64::INFINITY, |a, &b| a.min(b));
            let max_val = column.iter().fold(f64::NEG_INFINITY, |a, &b| a.max(b));
            feature_ranges.push((min_val, max_val));
        }

        // Replace selected samples with outliers
        for &idx in &outlier_indices {
            for j in 0..n_features {
                let (min_val, max_val) = feature_ranges[j];
                let range = max_val - min_val;

                // Generate outlier far from the data range
                let outlier_multiplier = rng.random_range(5.0..10.0);
                let outlier_value = if rng.random_bool() {
                    min_val - outlier_multiplier * range
                } else {
                    max_val + outlier_multiplier * range
                };

                contaminated_X[[idx, j]] = outlier_value;
            }
        }

        Ok(contaminated_X)
    }

    /// Compute robust estimate for graph properties
    #[allow(non_snake_case)] // standard ML notation
    fn compute_robust_estimate<R>(
        &self,
        X: &ArrayView2<f64>,
        estimator: &str,
        _contamination: f64,
        _rng: &mut Random<R>,
    ) -> Result<f64, SklearsError>
    where
        R: Rng,
    {
        match estimator {
            "median" => self.compute_median_graph_property(X),
            "huber" => self.compute_huber_graph_property(X),
            "tukey" => self.compute_tukey_graph_property(X),
            "trimmed_mean" => self.compute_trimmed_mean_graph_property(X),
            _ => Err(SklearsError::InvalidInput(format!(
                "Unknown estimator: {}",
                estimator
            ))),
        }
    }

    /// Compute median-based graph property (median edge weight)
    #[allow(non_snake_case)] // standard ML notation
    fn compute_median_graph_property(&self, X: &ArrayView2<f64>) -> Result<f64, SklearsError> {
        let n_samples = X.nrows();
        let mut edge_weights = Vec::new();

        for i in 0..n_samples {
            for j in i + 1..n_samples {
                let dist = self.euclidean_distance(&X.row(i), &X.row(j));
                let weight = (-dist.powi(2) / 2.0).exp(); // RBF kernel
                edge_weights.push(weight);
            }
        }

        if edge_weights.is_empty() {
            return Ok(0.0);
        }

        edge_weights.sort_by(|a, b| a.partial_cmp(b).expect("operation should succeed"));
        let median_idx = edge_weights.len() / 2;
        Ok(if edge_weights.len() % 2 == 0 {
            (edge_weights[median_idx - 1] + edge_weights[median_idx]) / 2.0
        } else {
            edge_weights[median_idx]
        })
    }

    /// Compute Huber-based graph property
    #[allow(non_snake_case)] // standard ML notation
    fn compute_huber_graph_property(&self, X: &ArrayView2<f64>) -> Result<f64, SklearsError> {
        let n_samples = X.nrows();
        let mut huber_weights = Vec::new();
        let c = 1.345; // Standard Huber parameter

        for i in 0..n_samples {
            for j in i + 1..n_samples {
                let dist = self.euclidean_distance(&X.row(i), &X.row(j));
                let huber_dist = if dist <= c {
                    0.5 * dist.powi(2)
                } else {
                    c * dist - 0.5 * c.powi(2)
                };
                huber_weights.push((-huber_dist).exp());
            }
        }

        Ok(huber_weights.iter().sum::<f64>() / huber_weights.len() as f64)
    }

    /// Compute Tukey-based graph property
    #[allow(non_snake_case)] // standard ML notation
    fn compute_tukey_graph_property(&self, X: &ArrayView2<f64>) -> Result<f64, SklearsError> {
        let n_samples = X.nrows();
        let mut tukey_weights = Vec::new();
        let c = 4.685; // Standard Tukey parameter

        for i in 0..n_samples {
            for j in i + 1..n_samples {
                let dist = self.euclidean_distance(&X.row(i), &X.row(j));
                let tukey_weight = if dist <= c {
                    let ratio = dist / c;
                    (1.0 - ratio.powi(2)).powi(2)
                } else {
                    0.0
                };
                tukey_weights.push(tukey_weight);
            }
        }

        Ok(tukey_weights.iter().sum::<f64>() / tukey_weights.len() as f64)
    }

    /// Compute trimmed mean-based graph property
    #[allow(non_snake_case)] // standard ML notation
    fn compute_trimmed_mean_graph_property(
        &self,
        X: &ArrayView2<f64>,
    ) -> Result<f64, SklearsError> {
        let n_samples = X.nrows();
        let mut edge_weights = Vec::new();

        for i in 0..n_samples {
            for j in i + 1..n_samples {
                let dist = self.euclidean_distance(&X.row(i), &X.row(j));
                let weight = (-dist.powi(2) / 2.0).exp(); // RBF kernel
                edge_weights.push(weight);
            }
        }

        if edge_weights.is_empty() {
            return Ok(0.0);
        }

        edge_weights.sort_by(|a, b| a.partial_cmp(b).expect("operation should succeed"));

        // Trim 20% from each end
        let trim_size = (edge_weights.len() as f64 * 0.2) as usize;
        let trimmed_weights = &edge_weights[trim_size..edge_weights.len() - trim_size];

        Ok(trimmed_weights.iter().sum::<f64>() / trimmed_weights.len() as f64)
    }

    /// Compute relative change between estimates
    fn compute_relative_change(&self, clean_estimate: f64, contaminated_estimate: f64) -> f64 {
        if clean_estimate.abs() < 1e-10 {
            if contaminated_estimate.abs() < 1e-10 {
                0.0
            } else {
                f64::INFINITY
            }
        } else {
            (contaminated_estimate - clean_estimate).abs() / clean_estimate.abs()
        }
    }

    /// Get theoretical breakdown point for different estimators
    fn theoretical_breakdown_point(&self, estimator: &str) -> f64 {
        match estimator {
            "median" => 0.5,
            "huber" => 0.5,
            "tukey" => 0.5,
            "trimmed_mean" => 0.2, // 20% trimming
            _ => 0.0,
        }
    }

    /// Compute Euclidean distance between two vectors
    fn euclidean_distance(&self, x1: &ArrayView1<f64>, x2: &ArrayView1<f64>) -> f64 {
        x1.iter()
            .zip(x2.iter())
            .map(|(a, b)| (a - b).powi(2))
            .sum::<f64>()
            .sqrt()
    }
}

impl Default for BreakdownPointAnalysis {
    fn default() -> Self {
        Self::new()
    }
}

/// Result of breakdown point analysis
#[derive(Clone, Debug)]
pub struct BreakdownResult {
    /// Name of the estimator
    pub estimator: String,
    /// Theoretical breakdown point
    pub theoretical_breakdown_point: f64,
    /// Empirically observed breakdown point
    pub empirical_breakdown_point: f64,
    /// Contamination levels tested
    pub contamination_levels: Vec<f64>,
    /// Breakdown rates at each contamination level
    pub breakdown_rates: Vec<f64>,
    /// Clean estimate (no contamination)
    pub clean_estimate: f64,
}

impl BreakdownResult {
    /// Get the efficiency of the estimator (1 - empirical_breakdown_point)
    pub fn efficiency(&self) -> f64 {
        1.0 - self.empirical_breakdown_point
    }

    /// Check if the estimator meets theoretical expectations
    pub fn meets_theory(&self) -> bool {
        self.empirical_breakdown_point >= self.theoretical_breakdown_point * 0.9
    }

    /// Get summary statistics
    pub fn summary(&self) -> String {
        format!(
            "Estimator: {}\nTheoretical BP: {:.3}\nEmpirical BP: {:.3}\nEfficiency: {:.3}\nMeets Theory: {}",
            self.estimator,
            self.theoretical_breakdown_point,
            self.empirical_breakdown_point,
            self.efficiency(),
            self.meets_theory()
        )
    }
}

#[allow(non_snake_case)]
#[cfg(test)]
mod tests {
    use super::*;
    use approx::assert_abs_diff_eq;
    use scirs2_core::array;

    #[test]
    #[allow(non_snake_case)]
    fn test_robust_graph_construction() {
        let X = array![
            [1.0, 2.0],
            [2.0, 3.0],
            [3.0, 4.0],
            [10.0, 20.0] // Outlier
        ];

        let rgc = RobustGraphConstruction::new()
            .k_neighbors(2)
            .robust_metric("huber".to_string())
            .outlier_threshold(2.0);

        let result = rgc.fit(&X.view());
        assert!(result.is_ok());

        let graph = result.expect("operation should succeed");
        assert_eq!(graph.dim(), (4, 4));

        // Check that diagonal is zero
        for i in 0..4 {
            assert_eq!(graph[[i, i]], 0.0);
        }

        // Check symmetry
        for i in 0..4 {
            for j in 0..4 {
                assert_abs_diff_eq!(graph[[i, j]], graph[[j, i]], epsilon = 1e-10);
            }
        }
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_robust_metrics() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 4.0]];

        let metrics = vec!["huber", "tukey", "cauchy", "welsch"];

        for metric in metrics {
            let rgc = RobustGraphConstruction::new()
                .k_neighbors(2)
                .robust_metric(metric.to_string());

            let result = rgc.fit(&X.view());
            assert!(result.is_ok());

            let graph = result.expect("operation should succeed");
            assert_eq!(graph.dim(), (3, 3));
        }
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_robust_construction_methods() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 4.0]];

        let methods = vec!["knn", "epsilon", "adaptive"];

        for method in methods {
            let rgc = RobustGraphConstruction::new()
                .construction_method(method.to_string())
                .k_neighbors(2)
                .epsilon(2.0);

            let result = rgc.fit(&X.view());
            assert!(result.is_ok());

            let graph = result.expect("operation should succeed");
            assert_eq!(graph.dim(), (3, 3));
        }
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_noise_robust_propagation() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 4.0], [4.0, 5.0]];
        let y = array![0, 1, -1, -1]; // -1 indicates unlabeled

        let nrp = NoiseRobustPropagation::new()
            .k_neighbors(2)
            .noise_estimation("mad".to_string())
            .max_iter(100)
            .alpha(0.2);

        let result = nrp.fit(&X.view(), &y.view());
        assert!(result.is_ok());

        let labels = result.expect("operation should succeed");
        assert_eq!(labels.len(), 4);

        // Check that labeled samples retain their labels
        assert_eq!(labels[0], 0);
        assert_eq!(labels[1], 1);
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_noise_estimation_methods() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 4.0]];
        let y = array![0, 1, -1];

        let methods = vec!["mad", "iqr", "adaptive"];

        for method in methods {
            let nrp = NoiseRobustPropagation::new()
                .noise_estimation(method.to_string())
                .k_neighbors(2)
                .max_iter(50);

            let result = nrp.fit(&X.view(), &y.view());
            assert!(result.is_ok());

            let labels = result.expect("operation should succeed");
            assert_eq!(labels.len(), 3);
        }
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_robust_graph_error_cases() {
        let rgc = RobustGraphConstruction::new().construction_method("invalid".to_string());

        let X = array![[1.0, 2.0], [2.0, 3.0]];
        let result = rgc.fit(&X.view());
        assert!(result.is_err());
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_noise_robust_propagation_error_cases() {
        let nrp = NoiseRobustPropagation::new();

        // Test with mismatched dimensions
        let X = array![[1.0, 2.0], [2.0, 3.0]];
        let y = array![0]; // Wrong size

        let result = nrp.fit(&X.view(), &y.view());
        assert!(result.is_err());

        // Test with no labeled samples
        let y_unlabeled = array![-1, -1];
        let result = nrp.fit(&X.view(), &y_unlabeled.view());
        assert!(result.is_err());
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_breakdown_point_analysis() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 4.0], [4.0, 5.0]];

        let bpa = BreakdownPointAnalysis::new()
            .n_simulations(20) // Reduced for faster testing
            .contamination_levels(vec![0.1, 0.2, 0.3])
            .random_state(42);

        let result = bpa.analyze_graph_breakdown(&X.view());
        assert!(result.is_ok());

        let results = result.expect("operation should succeed");
        assert!(!results.is_empty());

        // Check that we have results for each estimator
        for estimator in &["median", "huber", "tukey", "trimmed_mean"] {
            assert!(results.contains_key(*estimator));
            let breakdown_result = &results[*estimator];

            // Check that breakdown point is reasonable
            assert!(breakdown_result.empirical_breakdown_point >= 0.0);
            assert!(breakdown_result.empirical_breakdown_point <= 0.5);

            // Check that theoretical breakdown point is set correctly
            assert!(breakdown_result.theoretical_breakdown_point > 0.0);
        }
    }

    #[test]
    fn test_breakdown_result_methods() {
        let breakdown_result = BreakdownResult {
            estimator: "median".to_string(),
            theoretical_breakdown_point: 0.5,
            empirical_breakdown_point: 0.45, // Changed to meet theory threshold
            contamination_levels: vec![0.1, 0.2, 0.3],
            breakdown_rates: vec![0.0, 0.1, 0.8],
            clean_estimate: 1.0,
        };

        // Test efficiency calculation
        assert_abs_diff_eq!(breakdown_result.efficiency(), 0.55, epsilon = 1e-10);

        // Test meets_theory check
        assert!(breakdown_result.meets_theory());

        // Test summary generation
        let summary = breakdown_result.summary();
        assert!(summary.contains("median"));
        assert!(summary.contains("0.500"));
        assert!(summary.contains("0.450"));
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_contaminate_data() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 4.0], [4.0, 5.0]];

        let bpa = BreakdownPointAnalysis::new().random_state(42);
        let mut rng = Random::seed(42);

        // Test with 25% contamination
        let contaminated = bpa
            .contaminate_data(&X.view(), 0.25, &mut rng)
            .expect("operation should succeed");
        assert_eq!(contaminated.dim(), X.dim());

        // Check that at least one sample was contaminated
        let mut different = false;
        for i in 0..X.nrows() {
            for j in 0..X.ncols() {
                if (X[[i, j]] - contaminated[[i, j]]).abs() > 1e-10 {
                    different = true;
                    break;
                }
            }
        }
        assert!(different);

        // Test with 0% contamination
        let no_contamination = bpa
            .contaminate_data(&X.view(), 0.0, &mut rng)
            .expect("operation should succeed");
        for i in 0..X.nrows() {
            for j in 0..X.ncols() {
                assert_abs_diff_eq!(X[[i, j]], no_contamination[[i, j]], epsilon = 1e-10);
            }
        }
    }

    #[test]
    #[allow(non_snake_case)]
    fn test_robust_graph_property_estimators() {
        let X = array![[1.0, 2.0], [2.0, 3.0], [3.0, 4.0]];

        let bpa = BreakdownPointAnalysis::new();

        // Test all estimators
        let estimators = vec!["median", "huber", "tukey", "trimmed_mean"];
        for estimator in estimators {
            let mut rng = Random::seed(42);
            let result = bpa.compute_robust_estimate(&X.view(), estimator, 0.0, &mut rng);
            assert!(result.is_ok());

            let estimate = result.expect("operation should succeed");
            assert!(estimate >= 0.0);
            assert!(estimate <= 1.0); // Should be normalized
        }

        // Test invalid estimator
        let mut rng = Random::seed(42);
        let result = bpa.compute_robust_estimate(&X.view(), "invalid", 0.0, &mut rng);
        assert!(result.is_err());
    }

    #[test]
    fn test_theoretical_breakdown_points() {
        let bpa = BreakdownPointAnalysis::new();

        assert_eq!(bpa.theoretical_breakdown_point("median"), 0.5);
        assert_eq!(bpa.theoretical_breakdown_point("huber"), 0.5);
        assert_eq!(bpa.theoretical_breakdown_point("tukey"), 0.5);
        assert_eq!(bpa.theoretical_breakdown_point("trimmed_mean"), 0.2);
        assert_eq!(bpa.theoretical_breakdown_point("unknown"), 0.0);
    }

    #[test]
    fn test_relative_change_computation() {
        let bpa = BreakdownPointAnalysis::new();

        // Normal case
        assert_abs_diff_eq!(bpa.compute_relative_change(1.0, 1.5), 0.5, epsilon = 1e-10);
        assert_abs_diff_eq!(bpa.compute_relative_change(2.0, 1.0), 0.5, epsilon = 1e-10);

        // Zero clean estimate case
        assert_eq!(bpa.compute_relative_change(0.0, 0.0), 0.0);
        assert_eq!(bpa.compute_relative_change(0.0, 1.0), f64::INFINITY);

        // Very small clean estimate
        let small_val = 1e-12;
        assert_eq!(bpa.compute_relative_change(small_val, 1.0), f64::INFINITY);
    }

    #[test]
    fn test_breakdown_point_analysis_builder() {
        let custom_levels = vec![0.05, 0.15, 0.25];
        let custom_estimators = vec!["median".to_string(), "huber".to_string()];

        let bpa = BreakdownPointAnalysis::new()
            .estimators(custom_estimators.clone())
            .contamination_levels(custom_levels.clone())
            .n_simulations(50)
            .breakdown_threshold(5.0)
            .random_state(123);

        assert_eq!(bpa.estimators, custom_estimators);
        assert_eq!(bpa.contamination_levels, custom_levels);
        assert_eq!(bpa.n_simulations, 50);
        assert_eq!(bpa.breakdown_threshold, 5.0);
        assert_eq!(bpa.random_state, Some(123));
    }
}