My Project
countEffect2.cc
Go to the documentation of this file.
1/* countEffect2.cc
2 */
4#include <sstream>
5
7
8std::string
9osl::rating::CountEffect2::name(int attack, int defense)
10{
11 std::ostringstream ss;
12 ss << attack << defense;
13 return ss.str();
14}
15
16
17/* ------------------------------------------------------------------------- */
18// ;;; Local Variables:
19// ;;; mode:c++
20// ;;; c-basic-offset:2
21// ;;; End:
static std::pair< int, int > count(const NumEffectState &state, Square position, const RatingEnv &env)
static std::string name(int attack, int defense)