nissy-fmc

A Rubik's cube FMC assistant
git clone https://git.tronto.net/nissy-fmc
Download | Log | Files | Refs | README | LICENSE

commit 119ee0af023b702651b14d8e8e4e46d021a11845
parent 825ad379983681769e83cc7fe1949c5922062799
Author: Sebastiano Tronto <sebastiano.tronto@gmail.com>
Date:   Fri, 24 Dec 2021 17:26:07 +0100

Fixed bug that prevented switching depending on branch factor (leftover from previous debugging)

Diffstat:
Mnissy | 0
Msrc/solve.c | 3---
2 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/nissy b/nissy Binary files differ. diff --git a/src/solve.c b/src/solve.c @@ -24,9 +24,6 @@ allowed_next(Move m, DfsArg *arg) bool bad, allowed, order; uint64_t mbit; - if (arg->last1 == NULLMOVE) - return true; - mbit = ((uint64_t)1) << m; bad = mbit & arg->badmoves; allowed = mbit & arg->step->moveset->mask[arg->last2][arg->last1];