From df2c6a608a5b238e7b2e5265e05e48535e036263 Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Fri, 6 Jan 2017 16:55:23 -0500 Subject: Refactor - Remove unnecessary include - Improve whitespace - Remove unnecessary variable declaration - Move function call to more logical place --- src/dependency_calculator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dependency_calculator.h') diff --git a/src/dependency_calculator.h b/src/dependency_calculator.h index c24f5ef..6141a82 100644 --- a/src/dependency_calculator.h +++ b/src/dependency_calculator.h @@ -3,7 +3,6 @@ #include #include -#include #include #include "graph.h" @@ -23,6 +22,7 @@ public: private: const Graph& graph_; // (V, E) int vertex_; // s + std::stack stack_; // S std::vector> shortest_path_predecessors_; // P std::vector shortest_paths_; // sigma -- cgit v1.2.3