Bug fixes for the neighborhood detection

This commit is contained in:
tamasmeszaros
2018-08-07 19:48:00 +02:00
parent 08fb677583
commit 20b7aad6d1
12 changed files with 190 additions and 206 deletions

View File

@@ -471,8 +471,8 @@ TEST(GeometryAlgorithms, BottomLeftStressTest) {
auto next = it;
int i = 0;
while(it != input.end() && ++next != input.end()) {
placer.pack(*it);
placer.pack(*next);
placer.pack(input, it);
placer.pack(input, next);
auto result = placer.getItems();
bool valid = true;