supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:53:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | for(int j = 0; j < ver.size(); j++) for(int k = 0; k < ver.size(); k++)
| ~~^~~~~~~~~~~~
supertrees.cpp:53:56: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | for(int j = 0; j < ver.size(); j++) for(int k = 0; k < ver.size(); k++)
| ~~^~~~~~~~~~~~
supertrees.cpp:61:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | for(int i = 0; i < av.size(); i++) for(int j = 0; j < av.size(); j++)
| ~~^~~~~~~~~~~
supertrees.cpp:61:56: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | for(int i = 0; i < av.size(); i++) for(int j = 0; j < av.size(); j++)
| ~~^~~~~~~~~~~