/* * CHEST, chess analyst. For Copyright notice read file "COPYRIGHT". * * $Source: /home/heiner/ca/chest/RCS/analyse.h,v $ * $Id: analyse.h,v 3.8 1999/12/04 23:07:17 heiner Exp $ * * solve (sub-) problems */ #ifndef CHEST_analyse_h_INCLUDED #define CHEST_analyse_h_INCLUDED #include "types.h" #include "board.h" #include "cost.h" #include "refu.h" #include "timing.h" /* TimeSecs */ #include "job.h" /* extension of this interface */ Extern void ana_stats (Bool withprint); Extern void ana_sol_stats (void); Extern void sum_stats (int depth, TimeSecs secs); Extern int analyse (Board*, int depth, Movelist*, Move*, RefuList*); Extern int ana_help (Board*, int plies, Movelist*, Move*); #endif /* ndef CHEST_analyse_h_INCLUDED */