Move headers into include folder and add single header to include all reachability algorithms

This commit is contained in:
stefiosif
2022-10-14 18:38:01 +03:00
parent dc7fa93a6a
commit 92cf8950c2
14 changed files with 11 additions and 2 deletions

View File

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