Clean up polarity pass
[satune.git] / src / Encoders / naiveencoder.c
index 3baada358e4ba904efe62e36acb9a911463a0376..bc64cc44f3a25777492142befd7570e44aec49fb 100644 (file)
 #include "table.h"
 #include "tableentry.h"
 #include "order.h"
-#include "polarityassignment.h"
 #include <strings.h>
 
 void naiveEncodingDecision(CSolver* This) {
        for (uint i=0; i < getSizeVectorBoolean(This->constraints); i++) {
                Boolean* boolean = getVectorBoolean(This->constraints, i);
                naiveEncodingConstraint(boolean);
-               assignPolarityAndBooleanValue(boolean);
        }
 }