h48

A prototype for an optimal Rubik's cube solver, work in progress.
git clone https://git.tronto.net/h48
Download | Log | Files | Refs | README | LICENSE

commit cb088856301d9616f65b2a72e51dffa12aa20578
parent 1fcba7fcea462d67379c8d289bd7e0ad52170e02
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Fri,  6 Sep 2024 17:36:25 +0200

Fix stupid error

Diffstat:
Msrc/solvers/h48/gendata_h48.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/solvers/h48/gendata_h48.h b/src/solvers/h48/gendata_h48.h @@ -345,7 +345,7 @@ gendata_h48k2(gendata_h48_arg_t *arg) ) { dfsarg.cube = invcoord_h48(kv.key, arg->crep, 11); gendata_h48k2_dfs(&dfsarg); - if (++i % UINT64_C(1000000) == 0) + if (++ii % UINT64_C(1000000) == 0) LOG("Processed %" PRIu64 " short cubes\n", ii); }