| 1059 | |
| 1060 | |
| 1061 | void undo_1( |
| 1062 | Pos * posPoint, |
| 1063 | const int depth, |
| 1064 | const MoveType& mply) |
| 1065 | { |
| 1066 | int h = posPoint->first[depth]; |
| 1067 | int s = mply.suit; |
| 1068 | int r = mply.rank; |
| 1069 | |
| 1070 | posPoint->rank_in_suit[h][s] |= bit_map_rank[r]; |
| 1071 | posPoint->aggr[s] |= bit_map_rank[r]; |
| 1072 | posPoint->hand_dist[h] += handDelta[s]; |
| 1073 | posPoint->length[h][s]++; |
| 1074 | } |
| 1075 | |
| 1076 | |
| 1077 | void undo_2( |
no outgoing calls
no test coverage detected