Files
reachability-algorithms/graph/transitive_closure.h
2022-06-27 22:45:26 +03:00

18 lines
289 B
C++

#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