nissy-nx

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

fst_tests.h (361B)


      1 #ifndef FST_TESTS_H
      2 #define FST_TESTS_H
      3 
      4 #include "../src/fst.h"
      5 #include "test_common.h"
      6 
      7 extern char *algs[];
      8 
      9 extern Test test_fst_is_consistent;
     10 extern Test test_cube_to_fst_to_cube;
     11 extern Test test_fst_move;
     12 extern Test test_fst_inverse;
     13 
     14 extern TestSuite fst_pre_init_suite;
     15 extern TestSuite fst_post_init_suite;
     16 
     17 extern TestSuite *fst_suites[];
     18 
     19 #endif