Skip to content

Commit 465ef0d

Browse files
committed
decrease
1 parent f7a6ac2 commit 465ef0d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/library_checker_aizu_tests/handmade_tests/edge_cd_small_trees.test.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ int main() {
99
{
1010
vector<vector<int>> adj;
1111
edge_cd(adj,
12-
[&](const vector<vector<int>>&, int, int) -> void {
13-
assert(false);
14-
});
12+
[&](const vector<vector<int>>&, int, int) -> void {
13+
assert(false);
14+
});
1515
}
1616
{
1717
vector<vector<int>> adj(1);
1818
edge_cd(adj,
19-
[&](const vector<vector<int>>&, int, int) -> void {
20-
assert(false);
21-
});
19+
[&](const vector<vector<int>>&, int, int) -> void {
20+
assert(false);
21+
});
2222
}
23-
for (int n = 2; n <= 8; n++) {
23+
for (int n = 2; n <= 7; n++) {
2424
int num_codes = mpow(n, n - 2).x;
2525
vector<vector<int>> pruf_codes(num_codes,
26-
vector<int>(n - 2));
26+
vector<int>(n - 2));
2727
for (int i = 0; i < num_codes; i++) {
2828
int val = i;
2929
for (int j = 0; j < n - 2; j++) {

0 commit comments

Comments
 (0)