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

nissy_extra.h (471B)


      1 /*
      2 This header file exposes certain functions that are meant to be used
      3 for testing purposes only.
      4 */
      5 
      6 #define STATIC static
      7 #define LOG printf
      8 
      9 #include "../src/solvers/tables.h"
     10 
     11 size_t gendata_h48_derive(uint8_t, const void *, void *);
     12 int parse_h48_solver(const char *, uint8_t [static 1], uint8_t [static 1]);
     13 long long int nissy_datainfo(
     14     uint64_t, const char *, void (*)(const char *, ...));
     15 long long int nissy_derivedata(const char *, const void *, void *);