Skip to content
Snippets Groups Projects
Commit 54faf8e9 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

move graph common helpers under graph::common

parent f884e7cb
No related branches found
No related tags found
1 merge request!129Merge jt
Pipeline #68375 passed with warnings
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include <alib/vector> #include <alib/vector>
#include <algorithm> #include <algorithm>
   
namespace common { namespace graph::common {
   
class ReconstructPath { class ReconstructPath {
// --------------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------------
...@@ -172,6 +172,6 @@ ext::vector<TNode> ReconstructPath::joinPath(ext::vector<TNode> &forward_path, ...@@ -172,6 +172,6 @@ ext::vector<TNode> ReconstructPath::joinPath(ext::vector<TNode> &forward_path,
   
// --------------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------------
   
} // namespace common } // namespace graph::common
   
#endif //ALIB2_RECONSTRUCTPATH_HPP #endif //ALIB2_RECONSTRUCTPATH_HPP
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include <graph/GraphClasses.hpp> #include <graph/GraphClasses.hpp>
#include <grid/GridClasses.hpp> #include <grid/GridClasses.hpp>
   
namespace common { namespace graph::common {
   
class SupportFunction { class SupportFunction {
// --------------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------------
...@@ -98,6 +98,6 @@ SupportFunction::getMinEdgeValue(const grid::WeightedSquareGrid4<TCoordinate, TE ...@@ -98,6 +98,6 @@ SupportFunction::getMinEdgeValue(const grid::WeightedSquareGrid4<TCoordinate, TE
   
// --------------------------------------------------------------------------------------------------------------------- // ---------------------------------------------------------------------------------------------------------------------
   
} // namespace common } // namespace graph::common
   
#endif //ALIB2_GRAPHFUNCTION_HPP #endif //ALIB2_GRAPHFUNCTION_HPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment