| 13 | #[error("clustering failed to produce a partition")] |
| 14 | ClusteringFailed, |
| 15 | } |
| 16 | |
| 17 | #[derive(Debug, Clone)] |
| 18 | pub struct OncResult { |
| 19 | pub ordered_correlation: DMatrix<f64>, |
| 20 | pub clusters: BTreeMap<usize, Vec<usize>>, |
| 21 | pub silhouette_scores: Vec<f64>, |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected