File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
tests/library_checker_aizu_tests/handmade_tests Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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++) {
You can’t perform that action at this time.
0 commit comments