(
label_endtime: Vec<(usize, usize)>,
bar_index: Vec<usize>,
)
| 2 | |
| 3 | #[pyfunction(name = "get_ind_matrix")] |
| 4 | fn sampling_get_ind_matrix( |
| 5 | label_endtime: Vec<(usize, usize)>, |
| 6 | bar_index: Vec<usize>, |
| 7 | ) -> Vec<Vec<u8>> { |
| 8 | openquant::sampling::get_ind_matrix(&label_endtime, &bar_index) |
| 9 | } |
| 10 | |
| 11 | #[pyfunction(name = "get_ind_mat_average_uniqueness")] |
| 12 | fn sampling_get_ind_mat_average_uniqueness(ind_mat: Vec<Vec<u8>>) -> f64 { |
nothing calls this directly
no test coverage detected