Skip to content

Commit 2b45088

Browse files
committed
Merge remote-tracking branch 'dds-bridge/develop' into develop
2 parents 3fc1a75 + 2d88b91 commit 2b45088

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
!.gitignore
22
*.o
33
*.a
4+
*.so
45
*.dll
56
*.obj
67
*.def

examples/CalcAllTablesPBN.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ int main()
3838

3939
for (int handno = 0; handno < 3; handno++)
4040
{
41-
for (int h = 0; h < DDS_HANDS; h++)
42-
for (int s = 0; s < DDS_SUITS; s++)
43-
strcpy(DDdealsPBN.deals[handno].cards, PBN[handno]);
41+
strcpy(DDdealsPBN.deals[handno].cards, PBN[handno]);
4442
}
4543

4644
res = CalcAllTablesPBN(&DDdealsPBN, mode, trumpFilter,

examples/CalcDDtablePBN.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,7 @@ int main()
3333

3434
for (int handno = 0; handno < 3; handno++)
3535
{
36-
37-
for (int h = 0; h < DDS_HANDS; h++)
38-
for (int s = 0; s < DDS_SUITS; s++)
39-
strcpy(tableDealPBN.cards, PBN[handno]);
36+
strcpy(tableDealPBN.cards, PBN[handno]);
4037

4138
res = CalcDDtablePBN(tableDealPBN, &table);
4239

0 commit comments

Comments
 (0)