| 625 | } |
| 626 | |
| 627 | auto Moves::Sort(const int tricks, const int relHand) -> void { |
| 628 | numMoves = moveList[tricks][relHand].last + 1; |
| 629 | mply = moveList[tricks][relHand].move; |
| 630 | Moves::MergeSort(); |
| 631 | } |
| 632 | |
| 633 | #define CMP_SWAP(i, j) \ |
| 634 | if (mply[i].weight < mply[j].weight) { \ |