/**************************************************************************** * Copyright (c) 2017-2022 by the 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 * ****************************************************************************/ #include namespace ArborXBenchmark { struct Parameters { std::string algorithm; bool binary; int cluster_min_size; int core_min_size; std::string dendrogram; float eps; std::string filename; std::string filename_labels; std::string implementation; int max_num_points; int n; int num_samples; bool variable_density; bool verbose; bool verify; }; template bool run(Parameters const ¶ms); } // namespace ArborXBenchmark