2005-01-21 22:42:33 +02:00
|
|
|
#ifndef __CMPH_BMZ_STRUCTS_H__
|
|
|
|
#define __CMPH_BMZ_STRUCTS_H__
|
2004-12-23 15:16:30 +02:00
|
|
|
|
|
|
|
#include "hash_state.h"
|
|
|
|
|
2005-01-21 22:42:33 +02:00
|
|
|
struct __bmz_data_t
|
2004-12-23 15:16:30 +02:00
|
|
|
{
|
2005-01-18 23:06:08 +02:00
|
|
|
cmph_uint32 m; //edges (words) count
|
|
|
|
cmph_uint32 n; //vertex count
|
|
|
|
cmph_uint32 *g;
|
2005-01-21 22:42:33 +02:00
|
|
|
hash_state_t **hashes;
|
2004-12-23 15:16:30 +02:00
|
|
|
};
|
|
|
|
|
2005-01-21 22:42:33 +02:00
|
|
|
struct __bmz_config_data_t
|
2004-12-23 15:16:30 +02:00
|
|
|
{
|
|
|
|
CMPH_HASH hashfuncs[2];
|
2005-01-18 23:06:08 +02:00
|
|
|
cmph_uint32 m; //edges (words) count
|
|
|
|
cmph_uint32 n; //vertex count
|
2005-01-21 22:42:33 +02:00
|
|
|
graph_t *graph;
|
2005-01-18 23:06:08 +02:00
|
|
|
cmph_uint32 *g;
|
2005-01-21 22:42:33 +02:00
|
|
|
hash_state_t **hashes;
|
2004-12-23 15:16:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|