nissy-classic

Stable branch of nissy
git clone https://git.tronto.net/nissy-classic
Download | Log | Files | Refs | README | LICENSE

solve.h (212B)


      1 #ifndef SOLVE_H
      2 #define SOLVE_H
      3 
      4 #include "moves.h"
      5 #include "steps.h"
      6 #include "trans.h"
      7 
      8 AlgList *   solve(Cube cube, Step *step, SolveOptions *opts);
      9 Alg *       solve_2phase(Cube cube, int nthreads);
     10 
     11 #endif