Fixed some errors in the Repair Generator code.
[repair.git] / Repair / RepairCompiler / MCC / IR / Cost.java
1 package MCC.IR;
2
3 public class Cost {
4     Cost() {}
5     public int getCost(DNFPredicate dp) {
6         return 1;
7     }
8 };