oop-benchmarks/c++/turing/common.h

23 lines
313 B
C
Raw Normal View History

2024-01-17 23:00:50 +00:00
#ifndef OOP_BENCHMARK_COMMON_H
#define OOP_BENCHMARK_COMMON_H
#ifndef REPEATS
#define REPEATS (1000)
#endif
#define CASES (1000)
2024-01-17 23:00:50 +00:00
#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