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