Change project structure
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
#include "graph/scc.h"
|
||||
#include "algorithm/tarjan.h"
|
||||
#include "algorithm/bfs.h"
|
||||
#include "algorithm/decremental_maintenance.h"
|
||||
#include "algorithm/decremental_scc.h"
|
||||
|
||||
using namespace graph;
|
||||
|
||||
@@ -130,7 +130,7 @@ TEST_SUITE("Algorithm") {
|
||||
G.insert(6, 3);
|
||||
G.insert(7, 2);
|
||||
|
||||
algo::DecrementalMaintenance<std::uint16_t> rz(G);
|
||||
algo::DecrementalSCC<std::uint16_t> rz(G);
|
||||
rz.init();
|
||||
|
||||
//CHECK_EQ(rz.query(1, 2), true);
|
||||
|
||||
Reference in New Issue
Block a user