summaryrefslogtreecommitdiff
path: root/girepository/cmph/chm_structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'girepository/cmph/chm_structs.h')
-rw-r--r--girepository/cmph/chm_structs.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/girepository/cmph/chm_structs.h b/girepository/cmph/chm_structs.h
new file mode 100644
index 00000000..fcad1bc3
--- /dev/null
+++ b/girepository/cmph/chm_structs.h
@@ -0,0 +1,24 @@
+#ifndef __CMPH_CHM_STRUCTS_H__
+#define __CMPH_CHM_STRUCTS_H__
+
+#include "hash_state.h"
+
+struct __chm_data_t
+{
+ cmph_uint32 m; //edges (words) count
+ cmph_uint32 n; //vertex count
+ cmph_uint32 *g;
+ hash_state_t **hashes;
+};
+
+struct __chm_config_data_t
+{
+ CMPH_HASH hashfuncs[2];
+ cmph_uint32 m; //edges (words) count
+ cmph_uint32 n; //vertex count
+ graph_t *graph;
+ cmph_uint32 *g;
+ hash_state_t **hashes;
+};
+
+#endif