Allows creation of subgraphs of the dependency graph for debugging purposes.
[repair.git] / Repair / RepairCompiler / MCC / IR / DebugItem.java
1 package MCC.IR;
2
3 public class DebugItem {
4     int depth;
5     int constraintnum;
6
7     public DebugItem(int d,int num) {
8         depth=d;
9         constraintnum=num;
10     }
11
12 }