/in/foo.cc: In function 'int main()':
/in/foo.cc:218:44: error: binding reference of type 'int&' to 'const int' discards qualifiers
218 | if (!ring[y]) init_2(y, i, inf);
| ^~~
/in/foo.cc:65:41: note: initializing argument 3 of 'void init_2(int&, int&, int&)'
65 | inline void init_2(int &x, int &y, int &flow)
| ~~~~~^~~~
/in/foo.cc:230:31: error: cannot bind non-const lvalue reference of type 'int&' to an rvalue of type 'int'
230 | init_2(i, ed, -score[i]);
| ^~~~~~~~~
/in/foo.cc:65:41: note: initializing argument 3 of 'void init_2(int&, int&, int&)'
65 | inline void init_2(int &x, int &y, int &flow)
| ~~~~~^~~~