1 #ifndef __CMPH_BMZ8_STRUCTS_H__
2 #define __CMPH_BMZ8_STRUCTS_H__
3
4 #include "hash_state.h"
5
6 struct __bmz8_data_t
7 {
8 cmph_uint8 m; //edges (words) count
9 cmph_uint8 n; //vertex count
10 cmph_uint8 *g;
11 hash_state_t **hashes;
12 };
13
14
15 struct __bmz8_config_data_t
16 {
17 CMPH_HASH hashfuncs[2];
18 cmph_uint8 m; //edges (words) count
19 cmph_uint8 n; //vertex count
20 graph_t *graph;
21 cmph_uint8 *g;
22 hash_state_t **hashes;
23 };
24
25 #endif