| 14 | |
| 15 | #[derive(Clone)] |
| 16 | pub struct AssetPrices { |
| 17 | pub data: DMatrix<f64>, |
| 18 | pub index: Vec<NaiveDate>, |
| 19 | } |
| 20 | |
| 21 | impl AssetPrices { |
| 22 | pub fn new(data: DMatrix<f64>, index: Vec<NaiveDate>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected