From e464d0cdf61512603a3b52f1c557481b863fde46 Mon Sep 17 00:00:00 2001 From: Romain BERNARD <romain.bernard@uca.fr> Date: Thu, 29 Feb 2024 13:01:20 +0100 Subject: [PATCH] comment spacing --- src/ShortestPath/Transit/TransitShortestPathPrecompute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShortestPath/Transit/TransitShortestPathPrecompute.cpp b/src/ShortestPath/Transit/TransitShortestPathPrecompute.cpp index 1a6db64..e20d98c 100644 --- a/src/ShortestPath/Transit/TransitShortestPathPrecompute.cpp +++ b/src/ShortestPath/Transit/TransitShortestPathPrecompute.cpp @@ -34,7 +34,7 @@ TransitStateContainer TransitShortestPathPrecompute::executeAlgorithm(const Grap currentState = statePriorityQueue.top(); statePriorityQueue.pop(); if(!solutionsContainer.getBestSolution(currentState.getNodeIndex()).strictlyDominates(currentState)) { - DEBUG_MSG("Comparing state " + currentState.toString() + " and \n" + solutionsContainer.getBestSolution(currentState.getNodeIndex()).toString()); + DEBUG_MSG("\n\nComparing state " + currentState.toString() + " and \n" + solutionsContainer.getBestSolution(currentState.getNodeIndex()).toString()); DEBUG_MSG("State isn't dominated, trying to extend it"); for (auto& lineStop : graph.getNode(currentState.getNodeIndex()).getPTLinesSet()) { -- GitLab