mirror of
https://github.com/sigmasternchen/oop-benchmarks
synced 2025-03-15 23:28:56 +00:00
18 lines
268 B
C
18 lines
268 B
C
#ifndef OOP_BENCHMARK_COMMON_H
|
|
#define OOP_BENCHMARK_COMMON_H
|
|
|
|
#define CASES (100000)
|
|
#define MAX_VALUE (0xffff)
|
|
|
|
#define MAX_BAND_SIZE (MAX_VALUE + 1)
|
|
|
|
enum Direction {
|
|
LEFT, RIGHT
|
|
};
|
|
|
|
enum Symbol {
|
|
UNDEFINED, TRUE, FALSE
|
|
};
|
|
|
|
|
|
#endif //OOP_BENCHMARK_COMMON_H
|