Files
reachability-algorithms/graph/directed_acyclic_graph.h
2022-07-10 15:32:13 +03:00

16 lines
236 B
C++

#ifndef DIRECTED_ACYCLIC_GRAPH_H_
#define DIRECTED_ACYCLIC_GRAPH_H_
#include "digraph.h"
namespace graph {
template<typename T>
class DirectedAcyclicGraph {
public:
DirectedAcyclicGraph() = default;
};
} // namespace graph
#endif