nissy-nx

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

fst.h (290B)


      1 #ifndef FST_H
      2 #define FST_H
      3 
      4 #include "coord.h"
      5 
      6 FstCube     cube_to_fst(Cube *cube);
      7 FstCube     fst_inverse(FstCube fst);
      8 bool        fst_is_solved(FstCube fst);
      9 FstCube     fst_move(Move m, FstCube fst);
     10 void        fst_to_cube(FstCube fst, Cube *cube);
     11 void        init_fst();
     12 
     13 #endif
     14