Skip to content

Commit 941fa15

Browse files
committed
rename folder
1 parent cc684ec commit 941fa15

File tree

7 files changed

+5
-5
lines changed

7 files changed

+5
-5
lines changed

library/graphs/strongly_connected_components/add_edges_strongly_connected.hpp renamed to library/graphs/scc/add_edges_strongly_connected.hpp

File renamed without changes.

library/graphs/strongly_connected_components/offline_incremental_scc.hpp renamed to library/graphs/scc/offline_incremental_scc.hpp

File renamed without changes.

library/graphs/strongly_connected_components/scc.hpp renamed to library/graphs/scc/scc.hpp

File renamed without changes.

tests/library_checker_aizu_tests/graphs/offline_incremental_scc.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"https://judge.yosupo.jp/problem/incremental_scc"
33
#include "../template.hpp"
44
#include "../../../kactl/content/data-structures/UnionFind.h"
5-
#include "../../../library/graphs/strongly_connected_components/offline_incremental_scc.hpp"
5+
#include "../../../library/graphs/scc/offline_incremental_scc.hpp"
66
#include "../../../library/math/mod_int.hpp"
77
int main() {
88
cin.tie(0)->sync_with_stdio(0);

tests/library_checker_aizu_tests/graphs/strongly_connected_components_aizu.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=GRL_3_C"
33
#include "../template.hpp"
44
#include "../scc_asserts.hpp"
5-
#include "../../../library/graphs/strongly_connected_components/add_edges_strongly_connected.hpp"
5+
#include "../../../library/graphs/scc/add_edges_strongly_connected.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
int n, m;

tests/library_checker_aizu_tests/graphs/strongly_connected_components_lib_checker.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM "https://judge.yosupo.jp/problem/scc"
22
#include "../template.hpp"
33
#include "../scc_asserts.hpp"
4-
#include "../../../library/graphs/strongly_connected_components/add_edges_strongly_connected.hpp"
4+
#include "../../../library/graphs/scc/add_edges_strongly_connected.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, m;

tests/library_checker_aizu_tests/scc_asserts.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
#include "../../library/contest/random.hpp"
3-
#include "../../library/graphs/strongly_connected_components/add_edges_strongly_connected.hpp"
4-
#include "../../library/graphs/strongly_connected_components/offline_incremental_scc.hpp"
3+
#include "../../library/graphs/scc/add_edges_strongly_connected.hpp"
4+
#include "../../library/graphs/scc/offline_incremental_scc.hpp"
55
void scc_asserts(const vector<vector<int>>& adj) {
66
int n = sz(adj);
77
auto [num_sccs, scc_id] = sccs(adj);

0 commit comments

Comments
 (0)