From d1cc8e7ad7ab7dd736c5990e0a07b115cf4065c3 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Thu, 20 Nov 2014 16:58:35 +0100 Subject: [PATCH] renamed: Algorithms/BFSComponentExplorer.h -> Algorithms/bfs_components.hpp --- Algorithms/{BFSComponentExplorer.h => bfs_components.hpp} | 6 +++--- Contractor/EdgeBasedGraphFactory.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename Algorithms/{BFSComponentExplorer.h => bfs_components.hpp} (97%) diff --git a/Algorithms/BFSComponentExplorer.h b/Algorithms/bfs_components.hpp similarity index 97% rename from Algorithms/BFSComponentExplorer.h rename to Algorithms/bfs_components.hpp index daab82a14..d0914ac36 100644 --- a/Algorithms/BFSComponentExplorer.h +++ b/Algorithms/bfs_components.hpp @@ -1,5 +1,5 @@ -#ifndef BFS_COMPONENT_EXPLORER_H_ -#define BFS_COMPONENT_EXPLORER_H_ +#ifndef BFS_COMPONENTS_HPP_ +#define BFS_COMPONENTS_HPP_ #include "../typedefs.h" #include "../DataStructures/RestrictionMap.h" @@ -144,4 +144,4 @@ template class BFSComponentExplorer const std::unordered_set &m_barrier_nodes; }; -#endif // BFS_COMPONENT_EXPLORER_H_ +#endif // BFS_COMPONENTS_HPP_ diff --git a/Contractor/EdgeBasedGraphFactory.cpp b/Contractor/EdgeBasedGraphFactory.cpp index c882a3a60..64681210e 100644 --- a/Contractor/EdgeBasedGraphFactory.cpp +++ b/Contractor/EdgeBasedGraphFactory.cpp @@ -26,7 +26,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "EdgeBasedGraphFactory.h" -#include "../Algorithms/BFSComponentExplorer.h" +#include "../Algorithms/bfs_components.hpp" #include "../DataStructures/Percent.h" #include "../DataStructures/Range.h" #include "../Util/compute_angle.hpp"