nissy-nx

A Rubik's cube optimal solver
git clone https://git.tronto.net/nissy-nx
Download | Log | Files | Refs | README | LICENSE

movesets.h (260B)


      1 #ifndef MOVESETS_H
      2 #define MOVESETS_H
      3 
      4 #include "alg.h"
      5 
      6 void init_moveset(Moveset *);
      7 void init_movesets();
      8 
      9 extern Moveset moveset_HTM;
     10 extern Moveset moveset_URF;
     11 extern Moveset moveset_eofb;
     12 extern Moveset moveset_drud;
     13 extern Moveset moveset_htr;
     14 
     15 #endif