From 1c7397fb213e585c72794dc3492e45307e5b2475 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Thu, 28 May 2015 12:31:59 +0200 Subject: [PATCH] Enable barrier check for TarjanSCC Re-enabling turn restrictions as well requires some further work to extend the algorithm. --- algorithms/tiny_components.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/tiny_components.hpp b/algorithms/tiny_components.hpp index 8eb61a912..8abc1cbc6 100644 --- a/algorithms/tiny_components.hpp +++ b/algorithms/tiny_components.hpp @@ -150,7 +150,7 @@ template class TarjanSCC // Traverse outgoing edges if (barrier_node_set.find(v) != barrier_node_set.end() && u != vprime) { - // continue; + continue; } if (to_node_of_only_restriction != std::numeric_limits::max() &&