1/* 2 * SPDX-FileCopyrightText: 2024 Matteo Dell'Acqua 3 * SPDX-FileCopyrightText: 2025 Sebastiano Vigna 4 * 5 * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later 6 */ 7 8//! Algorithms related to distances. 9 10pub mod exact_sum_sweep; 11pub mod hyperball;