Updates
[repair.git] / Repair / RepairCompiler / MCC / IR / Predicate.java
1 package MCC.IR;
2
3 import java.util.*;
4
5 public abstract class Predicate extends LogicStatement {
6     protected Predicate() {}
7     public DNFConstraint constructDNF() {
8         return new DNFConstraint(this);
9     }
10     public int[] getRepairs(boolean negated) {}
11 }
12