vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:29:47: error: 'i1' was not declared in this scope; did you mean 'i'?
29 | int lol = add_and({i * w + j, i1 * w + j1});
| ^~
| i
vision.cpp:29:59: error: could not convert '{((i * w) + j), <expression error>}' from '<brace-enclosed initializer list>' to 'std::vector<int>'
29 | int lol = add_and({i * w + j, i1 * w + j1});
| ^
| |
| <brace-enclosed initializer list>
vision.cpp:39:9: warning: unused variable 'x' [-Wunused-variable]
39 | int x = add_or(a);
| ^