#ifndef DYNAMIC_REACHABILITY_H_ #define DYNAMIC_REACHABILITY_H_ #include "algorithm/decremental_reachability.h" namespace algo { template class DynamicReachability : public DecrementalReachability { // Insert edge e(u,v) and maintain the transitive closure matrix virtual void insert(const T &c, const std::vector &vertices) = 0; }; } // namespace algo #endif