(&self, q: &Self::Query, v: &Self::Quantized)
| 103 | /// or negates at encode time. |
| 104 | #[inline] |
| 105 | fn exact_asymmetric_distance(&self, q: &Self::Query, v: &Self::Quantized) -> f32 { |
| 106 | self.asymmetric_l2(q, packed_bits_of(v)) |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | // ── Tests ──────────────────────────────────────────────────────────────────── |