removing true nodes from the OrderGraph
[satune.git] / src / Backend / orderpair.c
index 4db56caa10259faef484c472caf684907818e769..9501af5dcc437f232c686395765e4be271a2820c 100644 (file)
@@ -1,14 +1,14 @@
 #include "orderpair.h"
 
 
-OrderPair* allocOrderPair(uint64_t first, uint64_t second, Edge constraint){
-       OrderPair* pair = (OrderPair*) ourmalloc(sizeof(OrderPair));
+OrderPair *allocOrderPair(uint64_t first, uint64_t second, Edge constraint) {
+       OrderPair *pair = (OrderPair *) ourmalloc(sizeof(OrderPair));
        pair->first = first;
        pair->second = second;
        pair->constraint = constraint;
        return pair;
 }
 
-void deleteOrderPair(OrderPair* pair){
+void deleteOrderPair(OrderPair *pair) {
        ourfree(pair);
 }