Skip to content

Commit

Permalink
Move space filling curves and morton code headers
Browse files Browse the repository at this point in the history
  • Loading branch information
aprokop committed Oct 2, 2024
1 parent 29744df commit d84af63
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/spatial/ArborX_LinearBVH.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include <ArborX_Box.hpp>
#include <ArborX_CrsGraphWrapper.hpp>
#include <ArborX_SortUtils.hpp>
#include <ArborX_SpaceFillingCurves.hpp>
#include <details/ArborX_AccessTraits.hpp>
#include <details/ArborX_AttachIndices.hpp>
#include <details/ArborX_BatchedQueries.hpp>
Expand All @@ -26,6 +25,7 @@
#include <details/ArborX_PairValueIndex.hpp>
#include <details/ArborX_PermutedData.hpp>
#include <details/ArborX_PredicateHelpers.hpp>
#include <details/ArborX_SpaceFillingCurves.hpp>
#include <details/ArborX_TraversalPolicy.hpp>
#include <details/ArborX_TreeConstruction.hpp>
#include <details/ArborX_TreeTraversal.hpp>
Expand Down
4 changes: 2 additions & 2 deletions src/spatial/details/ArborX_BatchedQueries.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
#define ARBORX_DETAILS_BATCHED_QUERIES_HPP

#include <ArborX_Box.hpp>
#include <ArborX_SortUtils.hpp> // sortObjects
#include <ArborX_SpaceFillingCurves.hpp>
#include <ArborX_SortUtils.hpp> // sortObjects
#include <details/ArborX_Algorithms.hpp> // returnCentroid, translateAndScale
#include <details/ArborX_SpaceFillingCurves.hpp>

#include <Kokkos_Core.hpp>

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
#define ARBORX_SPACE_FILLING_CURVES_HPP

#include <ArborX_Box.hpp>
#include <ArborX_MortonCode.hpp>
#include <ArborX_Point.hpp>
#include <details/ArborX_Algorithms.hpp>
#include <details/ArborX_MortonCode.hpp>

#include <Kokkos_DetectionIdiom.hpp>
#include <Kokkos_Macros.hpp>
Expand Down
2 changes: 1 addition & 1 deletion src/spatial/details/ArborX_TreeConstruction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
#ifndef ARBORX_DETAILS_TREE_CONSTRUCTION_HPP
#define ARBORX_DETAILS_TREE_CONSTRUCTION_HPP

#include <ArborX_SpaceFillingCurves.hpp>
#include <details/ArborX_Algorithms.hpp> // expand
#include <details/ArborX_Node.hpp> // makeLeafNode
#include <details/ArborX_SpaceFillingCurves.hpp>
#include <kokkos_ext/ArborX_KokkosExtArithmeticTraits.hpp>

#include <Kokkos_Core.hpp>
Expand Down
2 changes: 1 addition & 1 deletion test/tstDetailsMortonCodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* SPDX-License-Identifier: BSD-3-Clause *
****************************************************************************/

#include <ArborX_MortonCode.hpp>
#include <details/ArborX_MortonCode.hpp>

#include <boost/test/unit_test.hpp>

Expand Down
6 changes: 3 additions & 3 deletions test/tstDetailsTreeConstruction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
#include "ArborXTest_LegacyTree.hpp"
#include "ArborX_EnableDeviceTypes.hpp" // ARBORX_DEVICE_TYPES
#include "ArborX_EnableViewComparison.hpp"
#include <ArborX_MortonCode.hpp> // expandBits, morton32
#include <ArborX_SortUtils.hpp> // sortObjects
#include <ArborX_SortUtils.hpp> // sortObjects
#include <details/ArborX_Algorithms.hpp>
#include <details/ArborX_IndexableGetter.hpp>
#include <details/ArborX_Node.hpp> // ROPE SENTINEL
#include <details/ArborX_MortonCode.hpp> // expandBits, morton32
#include <details/ArborX_Node.hpp> // ROPE SENTINEL
#include <details/ArborX_TreeConstruction.hpp>
#include <kokkos_ext/ArborX_KokkosExtStdAlgorithms.hpp>

Expand Down

0 comments on commit d84af63

Please sign in to comment.