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

gendata_h48h0k2.c (335B)


      1 #include "../tool.h"
      2 
      3 uint64_t expected[21] = {
      4 	/* Base value is 8 */
      5 	[0] = 5473562,
      6 	[1] = 34776317,
      7 	[2] = 68566704,
      8 	[3] = 8750867,
      9 };
     10 
     11 void run(void) {
     12 	gendata_run("h48", "0;2;20", "tables/h48h0k2", expected);
     13 }
     14 
     15 int main(void) {
     16 	nissy_setlogger(log_stderr);
     17 
     18 	timerun(run, "benchmark gendata_h48 h = 0, k = 2");
     19 
     20 	return 0;
     21 }