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 1e2beb365f28e5b6816902a7f7c39389df4472e7
parent 5c3d850bbe088d075bca8c7b4b5d746ee803798d
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Fri, 20 Dec 2024 07:12:54 +0100

Added known distribution for larger tables

Diffstat:
Mtools/expected_distributions.h | 32++++++++++++++++++++++++--------
1 file changed, 24 insertions(+), 8 deletions(-)

diff --git a/tools/expected_distributions.h b/tools/expected_distributions.h @@ -93,20 +93,36 @@ uint64_t expected_h48[12][9][21] = { }, }, [8] = { - /* Unknown */ - [2] = {0}, + [2] = { + [0] = 1051579940, + [1] = 8136021316, + [2] = 19024479822, + [3] = 18851861220, + }, }, [9] = { - /* Unknown */ - [2] = {0}, + [2] = { + [0] = 1102038189, + [1] = 9888265242, + [2] = 38299375805, + [3] = 10904855164, + }, }, [10] = { - /* Unknown */ - [2] = {0}, + [2] = { + [0] = 1133240039, + [1] = 11196285614, + [2] = 64164702961, + [3] = 43894840186, + }, }, [11] = { - /* Unknown */ - [2] = {0}, + [2] = { + [0] = 1150763161, + [1] = 12045845660, + [2] = 91163433330, + [3] = 136418095449, + }, }, };