| 132 | } |
| 133 | |
| 134 | Strategy Strategy::getChild(int i) { |
| 135 | if (i<0 || i>=degree() ) {cout<<"Child "<<i<<" does not exist"<<endl;abort();} |
| 136 | return imp->nodes[i]; |
| 137 | } |
| 138 | |
| 139 | Strategy Strategy::getSubStrategy(vector<int> position) { |
| 140 | if (position.empty()) return *this; |