mirror of
https://github.com/sigmasternchen/oop-benchmarks
synced 2025-03-15 07:08:57 +00:00
parent
c6043c6eaf
commit
e70d20c2ec
5 changed files with 9 additions and 5 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -15,6 +15,6 @@ runOpt() {
|
|||
}
|
||||
|
||||
runOpt "OOP"
|
||||
runOpt "FP"
|
||||
#runOpt "FP"
|
||||
runOpt "SP"
|
||||
runOpt "SPnoTuples"
|
Loading…
Reference in a new issue