Skip to content

Commit

Permalink
Updated release number
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanLucPons committed Aug 10, 2020
1 parent c7ef1f7 commit 1739515
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#define CONSTANTSH

// Release number
#define RELEASE "2.1"
#define RELEASE "2.2"

// Use symmetry
//#define USE_SYMMETRY
Expand Down
12 changes: 6 additions & 6 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,12 @@ static bool splitWorkFile = false;

int main(int argc, char* argv[]) {

#ifdef USE_SYMMETRY
printf("Kangaroo v" RELEASE " (with symmetry)\n");
#else
printf("Kangaroo v" RELEASE "\n");
#endif

// Global Init
Timer::Init();
rseed(Timer::getSeed32());
Expand All @@ -177,12 +183,6 @@ int main(int argc, char* argv[]) {
int a = 1;
nbCPUThread = Timer::getCoreNumber();

#ifdef USE_SYMMETRY
printf("Kangaroo v" RELEASE " (with symmetry)\n");
#else
printf("Kangaroo v" RELEASE "\n");
#endif

while (a < argc) {

if(strcmp(argv[a], "-t") == 0) {
Expand Down

0 comments on commit 1739515

Please sign in to comment.