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

@@ -0,0 +1,23 @@
#ifndef DYNAMIC_RODITTY_ZWICK_H_
#ifndef DYNAMIC_RODITTY_ZWICK_H_
#include "algorithm/roditty_zwick.h"
namespace algo {
template<typename T>
class DynamicRodittyZwick : public RodittyZwick {
~DynamicRodittyZwick();
// 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 DynamicRodittyZwick<T>::~DynamicRodittyZwick() {
}
} // namespace algo
#endif