increase the range of possible size of region

This commit is contained in:
Sébastien Loriot 2022-01-24 15:30:09 +01:00
parent a7e071151f
commit 4eca555f95
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ int main(int argc, char *argv[]) {
},
[](const auto& region) -> bool {
std::cout << "- num regions spheres: " << region.size() << std::endl;
return (region.size() >= 57 && region.size() <= 77);
return (region.size() >= 30 && region.size() <= 77);
}
);