supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:7:40: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
7 | #define forint(i, N) for (int i = 0; i < (N); i++)
| ^
supertrees.cpp:69:11: note: in expansion of macro 'forint'
69 | forint(j, path2.size()) {
| ^~~~~~
supertrees.cpp:80:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
80 | for (int j2 = j+1; j2 < path2.size(); j2++) {
| ~~~^~~~~~~~~~~~~~
supertrees.cpp:7:40: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
7 | #define forint(i, N) for (int i = 0; i < (N); i++)
| ^
supertrees.cpp:102:10: note: in expansion of macro 'forint'
102 | forint(c, circle.size()) {
| ^~~~~~
supertrees.cpp:103:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
103 | for (int d1 = 0; d1 < circle[c].size(); d1++) {
| ~~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:104:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
104 | for (int d2 = 0; d2 < circle[c].size(); d2++) {
| ~~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:7:40: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
7 | #define forint(i, N) for (int i = 0; i < (N); i++)
| ^
supertrees.cpp:109:11: note: in expansion of macro 'forint'
109 | forint(d, circle.size()) {
| ^~~~~~
supertrees.cpp:111:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
111 | for (int d1 = 0; d1 < circle[c].size(); d1++) {
| ~~~^~~~~~~~~~~~~~~~~~
supertrees.cpp:112:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
112 | for (int d2 = 0; d2 < circle[d].size(); d2++) {
| ~~~^~~~~~~~~~~~~~~~~~