fix: use a more reasonable MAX_BAND_SIZE

fixes #2
This commit is contained in:
overflowerror 2024-02-01 11:47:22 +01:00
parent c6043c6eaf
commit e70d20c2ec
5 changed files with 9 additions and 5 deletions

View file

@ -9,7 +9,8 @@ using namespace std::chrono;
#define CASES (100000)
#define MAX_VALUE (0xffff)
#define MAX_BAND_SIZE (MAX_VALUE + 1)
// depends on max value
#define MAX_BAND_SIZE (16 + 1)
#define SEED (1337)

View file

@ -9,7 +9,8 @@ using namespace std::chrono;
#define CASES (100000)
#define MAX_VALUE (0xffff)
#define MAX_BAND_SIZE (MAX_VALUE + 1)
// depends on max value
#define MAX_BAND_SIZE (16 + 1)
#define SEED (1337)

View file

@ -9,7 +9,8 @@ using namespace std::chrono;
#define CASES (100000)
#define MAX_VALUE (0xffff)
#define MAX_BAND_SIZE (MAX_VALUE + 1)
// depends on max value
#define MAX_BAND_SIZE (16 + 1)
#define SEED (1337)

View file

@ -9,7 +9,8 @@ using namespace std::chrono;
#define CASES (100000)
#define MAX_VALUE (0xffff)
#define MAX_BAND_SIZE (MAX_VALUE + 1)
// depends on max value
#define MAX_BAND_SIZE (16 + 1)
#define SEED (1337)

View file

@ -15,6 +15,6 @@ runOpt() {
}
runOpt "OOP"
runOpt "FP"
#runOpt "FP"
runOpt "SP"
runOpt "SPnoTuples"