00001
00002
00003 #ifndef EVAL_PPAIR_PIECEPAIRASSERT_H
00004 #define EVAL_PPAIR_PIECEPAIRASSERT_H
00005
00006 #include <cassert>
00007
00008 #ifdef PIECE_PAIR_EXTRA_DEBUG
00009 # define piece_pair_assert(x) assert(x)
00010 #else
00011 # define piece_pair_assert(x)
00012 #endif
00013
00014 #endif
00015
00016
00017
00018