commit c03434177dd840e203658205bbe82006e08da028 parent b6fd508253bce9225dd24b6538adb5093892c4f8 Author: Sebastiano Tronto <sebastiano.tronto@gmail.com> Date: Tue, 7 Dec 2021 14:02:51 +0100 Just added a comment Diffstat:
M | src/pruning.c | | | 8 | ++++++++ |
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/pruning.c b/src/pruning.c @@ -159,6 +159,14 @@ genptable_branch(PruneData *pd, uint64_t ind, int d, Move *ms) ci = pd->coord->cube(ind); + /* + * Here we deal with the following problem: + * The set of positions reached by applying each move to + * a certain position X could depend on the representative + * used for X in its symmetry class. + * This is a terribly inefficient way to deal with this. + * TODO: make it more efficient. + */ for (i = 0; i < pd->coord->ntrans; i++) { c = i == 0 ? ci : apply_trans(pd->coord->trans[i], ci);