Get rid of annoying errors and fix crazy hash function
[satune.git] / src / Collections / structs.c
1 #include "structs.h"
2 #include "mymemory.h"
3 #include "order.h"
4
5 VectorImpl(Table, Table *, 4);
6 VectorImpl(Set, Set *, 4);
7 VectorImpl(Boolean, Boolean *, 4);
8 VectorImpl(Constraint, Constraint *, 4);
9 VectorImpl(Function, Function *, 4);
10 VectorImpl(Predicate, Predicate *, 4);
11 VectorImpl(Element, Element *, 4);
12 VectorImpl(Order, Order *, 4);
13 VectorImpl(TableEntry, TableEntry *, 4);
14 VectorImpl(ASTNode, ASTNode *, 4);
15 VectorImpl(Int, uint64_t, 4);
16
17 inline unsigned int Ptr_hash_function(void * hash) {
18         return (unsigned int)((uint64_t)hash >> 4);
19 }
20
21 inline bool Ptr_equals(void * key1, void * key2) {
22         return key1 == key2;
23 }
24
25 inline unsigned int BooleanOrder_hash_Function(BooleanOrder* This){
26         return This->first ^ This->second;
27 }
28
29 inline unsigned int BooleanOrder_equals(BooleanOrder* key1, BooleanOrder* key2){
30         return key1->first== key2->first && key1->second == key2->second;
31 }
32
33 HashTableImpl(BoolConst, BooleanOrder *, Constraint *, BooleanOrder_hash_Function, BooleanOrder_equals);