1
Fork 0
turbonss/src/bmz_structs.h

26 lines
417 B
C
Raw Normal View History

#ifndef __CMPH_BMZ_STRUCTS_H__
#define __CMPH_BMZ_STRUCTS_H__
2004-12-23 15:16:30 +02:00
#include "hash_state.h"
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;
hash_state_t **hashes;
2004-12-23 15:16:30 +02:00
};
2005-07-28 00:13:02 +03: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
graph_t *graph;
2005-01-18 23:06:08 +02:00
cmph_uint32 *g;
hash_state_t **hashes;
2004-12-23 15:16:30 +02:00
};
#endif