-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpointcount.cpp
More file actions
17 lines (16 loc) · 788 Bytes
/
pointcount.cpp
File metadata and controls
17 lines (16 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "pointcount.h"
int tblPointcount[idxEnd][13] = {
/* 2 3 4 5 6 7 8 9 T J Q K A */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4}, /* hcp */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2}, /* controls */
{0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0}, /* tens */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0}, /* jacks */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0}, /* queens */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0}, /* kings */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}, /* aces */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1}, /* top2 */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1}, /* top3 */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}, /* top4 */
{0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1}, /* top5 */
{0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 4, 6} /* c13 */
};