Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganize source files #1167

Merged
merged 11 commits into from
Oct 4, 2024
Merged

Reorganize source files #1167

merged 11 commits into from
Oct 4, 2024

Conversation

aprokop
Copy link
Contributor

@aprokop aprokop commented Oct 2, 2024

Fix #1068.

@dalg24
Copy link
Contributor

dalg24 commented Oct 2, 2024

I would put ArborX_SpaceFillingCurves.hpp and ArborX_MortonCode.hpp in spatial/

CMakeLists.txt Outdated Show resolved Hide resolved
@aprokop aprokop force-pushed the file_reorganization branch from 8450e7c to d84af63 Compare October 2, 2024 15:23
@aprokop aprokop added the refactoring Code reorganization label Oct 2, 2024
@aprokop
Copy link
Contributor Author

aprokop commented Oct 3, 2024

Had to rename two files, as we had both ArborX_[Details]Dendrogram.hpp and ArborX_[Details]MinimumSpanningTree.hpp.

@aprokop
Copy link
Contributor Author

aprokop commented Oct 3, 2024

Status as of 71fb106:

src/
├── ArborX.hpp
├── ArborX_Config.hpp.in
├── ArborX_Version.hpp.in
├── cluster
│   ├── ArborX_DBSCAN.hpp
│   ├── ArborX_Dendrogram.hpp
│   ├── ArborX_HDBSCAN.hpp
│   ├── ArborX_MinimumSpanningTree.hpp
│   └── detail
│       ├── ArborX_BoruvkaHelpers.hpp
│       ├── ArborX_CartesianGrid.hpp
│       ├── ArborX_DendrogramHelpers.hpp
│       ├── ArborX_FDBSCAN.hpp
│       ├── ArborX_FDBSCANDenseBox.hpp
│       ├── ArborX_MutualReachabilityDistance.hpp
│       ├── ArborX_UnionFind.hpp
│       └── ArborX_WeightedEdge.hpp
├── distributed
│   ├── ArborX_DistributedTree.hpp
│   └── detail
│       ├── ArborX_DistributedTreeImpl.hpp
│       ├── ArborX_DistributedTreeNearest.hpp
│       ├── ArborX_DistributedTreeNearestHelpers.hpp
│       ├── ArborX_DistributedTreeSpatial.hpp
│       ├── ArborX_DistributedTreeUtils.hpp
│       └── ArborX_Distributor.hpp
├── geometry
│   ├── ArborX_Box.hpp
│   ├── ArborX_GeometryTraits.hpp
│   ├── ArborX_KDOP.hpp
│   ├── ArborX_Point.hpp
│   ├── ArborX_Ray.hpp
│   ├── ArborX_Segment.hpp
│   ├── ArborX_Sphere.hpp
│   ├── ArborX_Tetrahedron.hpp
│   ├── ArborX_Triangle.hpp
│   └── detail
│       └── ArborX_GeometryAlgorithms.hpp
├── interpolation
│   ├── ArborX_InterpMovingLeastSquares.hpp
│   └── detail
│       ├── ArborX_InterpDetailsCompactRadialBasisFunction.hpp
│       ├── ArborX_InterpDetailsMovingLeastSquaresCoefficients.hpp
│       ├── ArborX_InterpDetailsPolynomialBasis.hpp
│       └── ArborX_InterpDetailsSymmetricPseudoInverseSVD.hpp
├── kokkos_ext
│   ├── ArborX_KokkosExtAccessibilityTraits.hpp
│   ├── ArborX_KokkosExtArithmeticTraits.hpp
│   ├── ArborX_KokkosExtKernelStdAlgorithms.hpp
│   ├── ArborX_KokkosExtMinMaxReduce.hpp
│   ├── ArborX_KokkosExtSort.hpp
│   ├── ArborX_KokkosExtStdAlgorithms.hpp
│   ├── ArborX_KokkosExtUninitializedMemoryAlgorithms.hpp
│   ├── ArborX_KokkosExtVersion.hpp
│   └── ArborX_KokkosExtViewHelpers.hpp
├── misc
│   ├── ArborX_Containers.hpp
│   ├── ArborX_Exception.hpp
│   ├── ArborX_Heap.hpp
│   ├── ArborX_OperatorFunctionObjects.hpp
│   ├── ArborX_PriorityQueue.hpp
│   ├── ArborX_SortUtils.hpp
│   ├── ArborX_Stack.hpp
│   ├── ArborX_Utils.hpp
│   └── ArborX_Vector.hpp
└── spatial
    ├── ArborX_BruteForce.hpp
    ├── ArborX_CrsGraphWrapper.hpp
    ├── ArborX_LinearBVH.hpp
    └── detail
        ├── ArborX_AccessTraits.hpp
        ├── ArborX_AttachIndices.hpp
        ├── ArborX_BatchedQueries.hpp
        ├── ArborX_BruteForceImpl.hpp
        ├── ArborX_Callbacks.hpp
        ├── ArborX_CrsGraphWrapperImpl.hpp
        ├── ArborX_ExpandHalfToFull.hpp
        ├── ArborX_HalfTraversal.hpp
        ├── ArborX_HappyTreeFriends.hpp
        ├── ArborX_IndexableGetter.hpp
        ├── ArborX_MortonCode.hpp
        ├── ArborX_NearestBufferProvider.hpp
        ├── ArborX_NeighborList.hpp
        ├── ArborX_Node.hpp
        ├── ArborX_PairValueIndex.hpp
        ├── ArborX_PermutedData.hpp
        ├── ArborX_PredicateHelpers.hpp
        ├── ArborX_Predicates.hpp
        ├── ArborX_SpaceFillingCurves.hpp
        ├── ArborX_TraversalPolicy.hpp
        ├── ArborX_TreeConstruction.hpp
        ├── ArborX_TreeNodeLabeling.hpp
        ├── ArborX_TreeTraversal.hpp
        └── ArborX_TreeVisualization.hpp

@aprokop aprokop requested a review from dalg24 October 3, 2024 14:15
CMakeLists.txt Outdated Show resolved Hide resolved
CMakeLists.txt Outdated Show resolved Hide resolved
CMakeLists.txt Outdated Show resolved Hide resolved
CMakeLists.txt Outdated Show resolved Hide resolved
CMakeLists.txt Outdated Show resolved Hide resolved
Copy link
Contributor

@dalg24 dalg24 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make sure you hit "squash merge"

@aprokop aprokop merged commit 2e7ef7b into arborx:master Oct 4, 2024
2 checks passed
@aprokop aprokop deleted the file_reorganization branch October 4, 2024 18:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
refactoring Code reorganization
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Reorganize file structure in ArborX
2 participants