Skip to content

Commit 6e2dcb8

Browse files
committed
fix some tests
1 parent ddadf13 commit 6e2dcb8

10 files changed

+10
-10
lines changed

library/graphs/strongly_connected_components/add_edges_strongly_connected.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "scc.hpp"
2+
#include "../scc.hpp"
33
//! https://codeforces.com/blog/entry/15102
44
//! Add minimum extra directed edges to directed graph to
55
//! make it strongly connected. If the directed graph is

library/graphs/strongly_connected_components/offline_incremental_scc.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "scc.hpp"
2+
#include "../scc.hpp"
33
//! https://codeforces.com/blog/entry/91608
44
//! @code
55
//! auto joins = offline_incremental_scc(eds, n);

tests/library_checker_aizu_tests/graphs/bcc_callback_aizu_bcc.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://onlinejudge.u-aizu.ac.jp/problems/GRL_3_A"
33
#include "../template.hpp"
4-
#include "../../../library/graphs/bridges_cuts/bcc_callback.hpp"
4+
#include "../../../library/graphs/bcc_callback.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, m;

tests/library_checker_aizu_tests/graphs/bcc_callback_aizu_two_edge_cc.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://onlinejudge.u-aizu.ac.jp/problems/GRL_3_B"
33
#include "../template.hpp"
4-
#include "../../../library/graphs/bridges_cuts/bcc_callback.hpp"
4+
#include "../../../library/graphs/bcc_callback.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, m;

tests/library_checker_aizu_tests/graphs/bcc_callback_lib_checker_bcc.test.cpp

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

tests/library_checker_aizu_tests/graphs/bcc_callback_lib_checker_two_cc.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/two_edge_connected_components"
33
#include "../template.hpp"
4-
#include "../../../library/graphs/bridges_cuts/bcc_callback.hpp"
4+
#include "../../../library/graphs/bcc_callback.hpp"
55
#include "../../../kactl/content/data-structures/UnionFind.h"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);

tests/library_checker_aizu_tests/graphs/biconnected_components.test.cpp

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

tests/library_checker_aizu_tests/graphs/connected_components_of_complement_graph.test.cpp

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

tests/library_checker_aizu_tests/graphs/enumerate_triangles.test.cpp

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

tests/library_checker_aizu_tests/graphs/two_edge_components.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/two_edge_connected_components"
33
#include "../template.hpp"
4-
#include "../../../library/graphs/bridges_cuts/bridge_tree.hpp"
4+
#include "../../../library/graphs/uncommon/bridge_tree.hpp"
55
#include "../../../library/data_structures/dsu/dsu_restorable.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);

0 commit comments

Comments
 (0)