| 12 | |
| 13 | #[derive(Debug, Clone)] |
| 14 | pub struct HierarchicalClusteringAssetAllocation { |
| 15 | pub weights: Vec<f64>, |
| 16 | pub ordered_indices: Vec<usize>, |
| 17 | pub clusters: Vec<[usize; 2]>, |
| 18 | calculate_expected_returns: String, |
| 19 | } |
| 20 | |
| 21 | impl Default for HierarchicalClusteringAssetAllocation { |
| 22 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected