| 1 | /* |
| 2 | * Copyright 2020 Google LLC |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style |
| 5 | * license that can be found in the LICENSE file or at |
| 6 | * https://developers.google.com/open-source/licenses/bsd |
| 7 | */ |
| 8 | |
| 9 | #ifndef CONSTANTS_H |
| 10 | #define CONSTANTS_H |
| 11 | |
| 12 | #include "reftable-constants.h" |
| 13 | |
| 14 | #define MAX_RESTARTS ((1 << 16) - 1) |
| 15 | #define DEFAULT_BLOCK_SIZE 4096 |
| 16 | #define DEFAULT_GEOMETRIC_FACTOR 2 |
| 17 | |
| 18 | #endif |