From 22d0861f6d14edef0199403f6881b6ccd566b357 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Thu, 8 May 2014 23:26:52 +0200 Subject: [PATCH] Move BFSComponentExplorer to Contractor/ --- {DataStructures => Contractor}/BFSComponentExplorer.h | 4 ++-- Contractor/EdgeBasedGraphFactory.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename {DataStructures => Contractor}/BFSComponentExplorer.h (98%) diff --git a/DataStructures/BFSComponentExplorer.h b/Contractor/BFSComponentExplorer.h similarity index 98% rename from DataStructures/BFSComponentExplorer.h rename to Contractor/BFSComponentExplorer.h index 92b21d9ec..564318248 100644 --- a/DataStructures/BFSComponentExplorer.h +++ b/Contractor/BFSComponentExplorer.h @@ -5,8 +5,8 @@ #include #include "../typedefs.h" -#include "DynamicGraph.h" -#include "RestrictionMap.h" +#include "../DataStructures/DynamicGraph.h" +#include "../DataStructures/RestrictionMap.h" /** * Explores the components of the given graph while respecting turn restrictions diff --git a/Contractor/EdgeBasedGraphFactory.cpp b/Contractor/EdgeBasedGraphFactory.cpp index 7237c3e07..aba8eee3d 100644 --- a/Contractor/EdgeBasedGraphFactory.cpp +++ b/Contractor/EdgeBasedGraphFactory.cpp @@ -27,7 +27,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "EdgeBasedGraphFactory.h" #include "../Util/ComputeAngle.h" -#include "../DataStructures/BFSComponentExplorer.h" +#include "BFSComponentExplorer.h" #include #include