vision.cpp: In function 'int solve(int, int, int)':
vision.cpp:19:27: error: 'add_or' was not declared in this scope
DiagLor.push_back(add_or(Dl[i]));
^~~~~~
vision.cpp:19:27: note: suggested alternative: 'rand_r'
DiagLor.push_back(add_or(Dl[i]));
^~~~~~
rand_r
vision.cpp:22:28: error: 'add_and' was not declared in this scope
ans.push_back( add_and ( { DiagLor[i] , DiagLor[i - K] } ) );
^~~~~~~
vision.cpp:26:12: error: 'add_or' was not declared in this scope
return add_or(ans);
^~~~~~
vision.cpp:26:12: note: suggested alternative: 'rand_r'
return add_or(ans);
^~~~~~
rand_r
vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:33:9: error: 'add_xor' was not declared in this scope
add_xor( { solve(H , W , K) , solve(H , W , K + 1) } );
^~~~~~~