X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.h;h=a80db334cbef6e9c1ba4e92e802588168ee4601b;hp=fdac5d0ba00856ac489b66220d3164fb0f3a005e;hb=b6b0878da807436cd99631ebecc982b31fca7cce;hpb=95d9687d95e5aa540c58e673300ef911164c90e0 diff --git a/src/movegen.h b/src/movegen.h index fdac5d0b..a80db334 100644 --- a/src/movegen.h +++ b/src/movegen.h @@ -21,7 +21,6 @@ #define MOVEGEN_H_INCLUDED #include "move.h" -#include "position.h" enum MoveType { MV_CAPTURE, @@ -36,6 +35,8 @@ enum MoveType { template MoveStack* generate(const Position& pos, MoveStack* mlist); +/// The MoveList struct is a simple wrapper around generate(), sometimes comes +/// handy to use this class instead of the low level generate() function. template struct MoveList {