| 55 | |
| 56 | |
| 57 | bool compare_TABLE( |
| 58 | const DdTableResults& table1, |
| 59 | const DdTableResults& table2) |
| 60 | { |
| 61 | for (int suit = 0; suit < DDS_SUITS; suit++) |
| 62 | { |
| 63 | for (int pl = 0; pl < DDS_HANDS; pl++) |
| 64 | if (table1.res_table[suit][pl] != table2.res_table[suit][pl]) |
| 65 | return false; |
| 66 | } |
| 67 | |
| 68 | return true; |
| 69 | } |
| 70 | |
| 71 | |
| 72 | bool compare_PAR( |