/**************************************************************************** * Copyright (c) 2017-2023 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 * ****************************************************************************/ #ifndef ARBORX_CRS_GRAPH_WRAPPER_HPP #define ARBORX_CRS_GRAPH_WRAPPER_HPP #include namespace ArborX { template inline void query(Tree const &tree, ExecutionSpace const &space, Predicates const &predicates, CallbackOrView &&callback_or_view, View &&view, Args &&...args) { static_assert(Kokkos::is_execution_space::value); tree.query(space, predicates, std::forward(callback_or_view), std::forward(view), std::forward(args)...); } } // namespace ArborX #endif