Allows creation of subgraphs of the dependency graph for debugging purposes.
authorbdemsky <bdemsky>
Mon, 19 Jul 2004 04:46:39 +0000 (04:46 +0000)
committerbdemsky <bdemsky>
Mon, 19 Jul 2004 04:46:39 +0000 (04:46 +0000)
Repair/RepairCompiler/MCC/IR/DebugItem.java [new file with mode: 0755]

diff --git a/Repair/RepairCompiler/MCC/IR/DebugItem.java b/Repair/RepairCompiler/MCC/IR/DebugItem.java
new file mode 100755 (executable)
index 0000000..aeb42af
--- /dev/null
@@ -0,0 +1,12 @@
+package MCC.IR;
+
+public class DebugItem {
+    int depth;
+    int constraintnum;
+
+    public DebugItem(int d,int num) {
+       depth=d;
+       constraintnum=num;
+    }
+
+}