Files
reachability-algorithms/algorithm/dmscc.h
2022-05-17 21:25:47 +03:00

19 lines
277 B
C++

#ifndef DMSCC_H_
#define DMSCC_H_
#include "graph/graph.h"
using namespace graph;
#include "tarjan.h"
namespace algo {
// A randomized decremental algorithm for maintaining SCCs
template<typename T>
class DMSCC {
public:
DMSCC() = default;
};
}; // namespace algo
#endif