Merge branch 'master' of ssh://demsky.eecs.uci.edu/home/git/constraint_compiler into...
[satune.git] / src / Encoders / orderencoding.c
1 #include "orderencoding.h"
2
3 void initOrderEncoding(OrderEncoding *This, Order *order) {
4         This->type = ORDER_UNASSIGNED;
5         This->order = order;
6 }
7
8 void deleteOrderEncoding(OrderEncoding *This) {
9 }