19 lines
277 B
C++
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 |