Run tabbing pass
[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 #include "constraint.h"
14
15 class OrderPair {
16 public:
17         OrderPair(uint64_t first, uint64_t second, Edge constraint);
18         OrderPair();
19         uint64_t first;
20         uint64_t second;
21         Edge constraint;
22         MEMALLOC;
23 };
24
25 #endif/* ORDERPAIR_H */
26