Optimize function for constraint
[satune.git] / src / Backend / orderpair.h
1 /* 
2  * File:   orderpair.h
3  * Author: hamed
4  *
5  * Created on July 1, 2017, 4:22 PM
6  */
7
8 #ifndef ORDERPAIR_H
9 #define ORDERPAIR_H
10
11 #include "classlist.h"
12 #include "mymemory.h"
13
14 struct OrderPair{
15         uint64_t first;
16         uint64_t second;
17 }; 
18
19 OrderPair* allocOrderPair(uint64_t first, uint64_t second);
20 void deleteOrderPair(OrderPair* pair);
21
22 #endif /* ORDERPAIR_H */
23