molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:20:15: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
20 | if(sm >= l) {
| ~~~^~~~
molecules.cpp:21:19: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
21 | if(sm <= u) {
| ~~~^~~~
molecules.cpp:33:15: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
33 | if(sm >= l) {
| ~~~^~~~
molecules.cpp:34:19: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
34 | if(sm <= u) {
| ~~~^~~~
molecules.cpp:41:38: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
41 | if(it != s.end() && sm + *it <= u) {
| ~~~~~~~~~^~~~
molecules.cpp:51:19: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
51 | if(sm > fl) break;
| ~~~^~~~
molecules.cpp:57:19: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
57 | if(sm > fr) break;
| ~~~^~~~