()
| 337 | |
| 338 | #[test] |
| 339 | fn centroids_have_correct_dim() { |
| 340 | let store = build_store(); |
| 341 | let pruner = PlaidPruner::train(&store, 3, 10, 42); |
| 342 | for c in &pruner.centroids { |
| 343 | assert_eq!(c.len(), 2); |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | #[test] |
| 348 | fn candidates_non_empty_for_matching_query() { |
nothing calls this directly
no test coverage detected