Fix includes and add some comments

This commit is contained in:
stefiosif
2022-07-12 14:42:29 +03:00
parent e7ad824116
commit 601f80c8d4
7 changed files with 31 additions and 64 deletions

View File

@@ -21,7 +21,6 @@ private:
// Each SCC has a representative vertex that helps
// answer strong connectivity queries in O(1) time
T proxy;
};
}; // namespace graph

View File

@@ -1,18 +0,0 @@
#ifndef TRANSITIVE_CLOSURE_H_
#define TRANSITIVE_CLOSURE_H_
#include "digraph.h"
namespace graph {
// Transitive closure matrix class to answer reachability queries
template<typename T>
class TransitiveClosure {
public:
TransitiveClosure() = default;
};
} // namespace graph
#endif