diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-03-05 10:13:01 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-03-05 10:13:01 +0100 |
| commit | 87a15e960e31365698df7e06cd3e6b851e17c1a5 (patch) | |
| tree | 606a42e6251df3c24d92a2edefce723bdd103620 /src/movesets.h | |
| parent | 3bfd0bb403d62bd942d1912d085ea59b156062fd (diff) | |
| download | nissy-87a15e960e31365698df7e06cd3e6b851e17c1a5.tar.gz nissy-87a15e960e31365698df7e06cd3e6b851e17c1a5.zip | |
I made a mess, but it works. Still need to implement new optimal solver.
After that, a big redesign is due.
Diffstat (limited to 'src/movesets.h')
| -rw-r--r-- | src/movesets.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/movesets.h b/src/movesets.h new file mode 100644 index 0000000..a02d171 --- /dev/null +++ b/src/movesets.h | |||
| @@ -0,0 +1,15 @@ | |||
| 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 | ||
