commit 0c94ba6742de4021a49cbd5c51d3ae752eb60efd
parent 21f5ae00e2f5d042ce887b5d6cf0450f42c3383c
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date: Wed, 1 Jun 2022 17:33:12 +0200
Another fix to coord
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/coord.c b/src/coord.c
@@ -363,8 +363,8 @@ move_cphtr(Move m, uint64_t ind)
if (!initialized) {
for (ui = 0; ui < BINOM8ON4*6; ui++)
for (j = U; j < NMOVES; j++)
- aux[j][ui] =
- cp_mtable[j][cphtr_right_rep[ui]];
+ aux[j][ui] = index_cphtr(
+ cp_mtable[j][cphtr_right_rep[ui]]);
initialized = true;
}