Update misc

This commit is contained in:
stefiosif
2022-09-16 15:17:32 +03:00
parent ae193d5f69
commit 037560949d
5 changed files with 7 additions and 40 deletions

View File

@@ -1,23 +0,0 @@
#ifndef DYNAMIC_REACHABILITY_
#define DYNAMIC_REACHABILITY_
#include "algorithm/roditty_zwick.h"
namespace algo {
template<typename T>
class DynamicReachability : public RodittyZwick {
~DynamicReachability();
// Insert edge e(u,v) and maintain the transitive closure matrix
virtual void insert(const T& u, const T& v) =0;
};
template<typename T>
inline DynamicReachability<T>::~DynamicReachability() {
}
} // namespace algo
#endif