Change project structure
This commit is contained in:
18
graph/transitive_closure.h
Normal file
18
graph/transitive_closure.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user