From 58235e461ceefe39eaad132e41a75dd8243e60e6 Mon Sep 17 00:00:00 2001 From: = <=> Date: Tue, 6 Feb 2024 17:49:38 +0100 Subject: [PATCH] did not actually compute different orientations --- python/polycube.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/polycube.py b/python/polycube.py index 8c6a9ac..10d91a9 100644 --- a/python/polycube.py +++ b/python/polycube.py @@ -18,7 +18,7 @@ class PolyCube: orientations = [set()]*n_orientations for i in range(n_orientations): for cube in self.cubes: - orientations[i].add(cube) + orientations[i].add(reorient_tuple(cube, i)) self.orientations = orientations def generate_children(self, max_length:int):