/**************************************************************************** * Copyright (c) 2025, ArborX authors * * All rights reserved. * * * * This file is part of the ArborX library. ArborX is * * distributed under a BSD 3-clause license. For the licensing terms see * * the LICENSE file in the top-level directory. * * * * SPDX-License-Identifier: BSD-3-Clause * ****************************************************************************/ #ifndef PARAMETERS_HPP #define PARAMETERS_HPP #include namespace ArborXBenchmark { struct Parameters { std::string algorithm; bool binary; int cluster_min_size; int core_min_size; std::string dendrogram; int dim; float eps; std::string filename; std::string filename_labels; std::string implementation; int max_num_points; int n; int n_seq; int spacing; int num_samples; bool variable_density; bool verbose; bool verify; }; } // namespace ArborXBenchmark #endif