From bb195607ab067a8ad26e3138282111d737050205 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Wed, 2 Dec 2015 19:40:11 +0000 Subject: [PATCH] Hadrons: fix in topological sort algorithm name --- programs/Hadrons/Graph.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/Hadrons/Graph.hpp b/programs/Hadrons/Graph.hpp index e96c22b9..15eba21a 100644 --- a/programs/Hadrons/Graph.hpp +++ b/programs/Hadrons/Graph.hpp @@ -420,7 +420,7 @@ std::vector> Graph::getConnectedComponents(void) const return res; } -// topological sort using Kahn's algorithm +// topological sort using Tarjan's algorithm template std::stack Graph::topoSort(void) {