diff options
Diffstat (limited to 'include/tt_llcht.h')
| -rw-r--r-- | include/tt_llcht.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/tt_llcht.h b/include/tt_llcht.h index 40d8bdb..dc73d26 100644 --- a/include/tt_llcht.h +++ b/include/tt_llcht.h @@ -18,8 +18,8 @@ #ifndef TT_LLCHT_H #define TT_LLCHT_H -#include <stdlib.h> #include <stdint.h> +#include <stdlib.h> #include <actions.h> @@ -42,7 +42,7 @@ typedef struct tt_node_s { // Variables // =================================================================== -#define TT_LLCHT_SIZE ((uint32_t)((1<<19) - 1)) +#define TT_LLCHT_SIZE ((uint32_t)((1 << 19) - 1)) // =================================================================== // Methods @@ -53,8 +53,7 @@ void tt_free(void); tt_entry_t *tt_seek(const uint64_t key); -int tt_insert(const uint64_t key, const enum TT_FLAG flag, - const uint8_t depth, const float value, - const action_t action); +int tt_insert(const uint64_t key, const enum TT_FLAG flag, const uint8_t depth, + const float value, const action_t action); #endif |
