...
[repair.git] / Repair / RepairCompiler / MCC / IR / DebugItem.java
1 package MCC.IR;
2
3 public class DebugItem {
4     int depth;
5     int constraintnum;
6     int conjunctionnum;
7
8     public DebugItem(int d,int num) {
9         depth=d;
10         constraintnum=num;
11         conjunctionnum=-1;
12     }
13
14     public DebugItem(int d,int num,int conj) {
15         depth=d;
16         constraintnum=num;
17         conjunctionnum=conj;
18     }
19
20 }