#ifndef DECREMENTAL_TC_H_ #define DECREMENTAL_TC_H_ #include "graph/digraph.h" #include "graph/scc.h" #include "algorithm/tarjan.h" #include "algorithm/bfs.h" #include "algorithm/roditty_zwick.h" namespace algo { template class DecrementalTC : public RodittyZwick { public: DecrementalTC(Digraph G) : G(G) {} // void init(); // bool query(const T& u, const T& v); // void remove(const T& u, const T& v); }; template inline void DecrementalTC::init() { } template inline bool DecrementalTC::query(const T& u, const T& v) { return false; } template inline void DecrementalTC::remove(const T& u, const T& v) { } } // namespace algo #endif