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

17 lines
190 B
C++

#ifndef DAG_H_
#define DAG_H_
#include "digraph.h"
namespace graph {
// Directed Acyclic Graph
template<typename T>
class DAG {
public:
DAG() = default;
};
} // namespace graph
#endif