Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c18a6db

Browse files
committed
Fix in check part
1 parent 01914c5 commit c18a6db

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

Check.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,9 @@ bool Kangaroo::CheckWorkFile(TH_PARAM* p) {
130130

131131
for(uint32_t h = p->hStart; h < p->hStop; h++) {
132132

133-
for(uint32_t i = 0; i < hashTable.E[h].nbItem; i++) {
134-
if(hashTable.E[h].nbItem == 0)
135-
continue;
136-
nWrong += CheckHash(&hashTable,h);
137-
}
133+
if(hashTable.E[h].nbItem == 0)
134+
continue;
135+
nWrong += CheckHash(&hashTable,h);
138136

139137
}
140138

Constants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define CONSTANTSH
2020

2121
// Release number
22-
#define RELEASE "1.10"
22+
#define RELEASE "1.11alpha"
2323

2424
// Use symmetry
2525
//#define USE_SYMMETRY

0 commit comments

Comments
 (0)