wiring.cpp: In function 'll min_total_length(vi, vi)':
wiring.cpp:15:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | while(pr < r.size() || pb < b.size()) {
| ~~~^~~~~~~~~~
wiring.cpp:15:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | while(pr < r.size() || pb < b.size()) {
| ~~~^~~~~~~~~~
wiring.cpp:17:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | if(pr < r.size()) ++pr;
| ~~~^~~~~~~~~~
wiring.cpp:18:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | if(pb < b.size()) ++pb;
| ~~~^~~~~~~~~~