All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
classifier.cc
Go to the documentation of this file.
1 /* classifier.cc
2  */
7 
9 Classifier::isSafeMove(const NumEffectState& state, Move move)
10 {
11  return ConditionAdaptor<SafeMove>::isMember(state, move);
12 }
13 
15 Classifier::isCheck(const NumEffectState& state, Move move)
16 {
17  return PlayerMoveAdaptor<Check>::isMember(state, move);
18 }
19 
20 // ;;; Local Variables:
21 // ;;; mode:c++
22 // ;;; c-basic-offset:2
23 // ;;; End: