Add decremental maintenance of SCCs frame
This commit is contained in:
19
algorithm/dmscc.h
Normal file
19
algorithm/dmscc.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user