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 fd111a1a51b8293f79db6284331af50824df92b9
parent 32009294d2de3e197c8d4dc950559ff948ea2fc9
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Fri,  4 Oct 2024 09:03:37 +0200

Added documentation on how to run derivedata

Diffstat:
Mtools/001_derive_h48/derive_h48.c | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/tools/001_derive_h48/derive_h48.c b/tools/001_derive_h48/derive_h48.c @@ -1,3 +1,14 @@ +/* +This tool is specific to the H48 solver. It can be used to derive small +intermediate tables from larger tables, including the full h11 table. + +When using k=2, the base values for the tables may differ. If you want +to change this value, for example for generating a table with base = 9 +from the h11 table with base = 10, you must re-generate the large table +with the correct base value. The easiest way to do so is to manually +edit the base value in the source code and recompile. +*/ + #include "../tool.h" char *opts_large, *opts_small, *filename_large, *filename_small;