From: bdemsky Date: Mon, 19 Jul 2004 04:46:39 +0000 (+0000) Subject: Allows creation of subgraphs of the dependency graph for debugging purposes. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=repair.git;a=commitdiff_plain;h=7484c067f99464ce23b838f1ed0225478a922f25;ds=sidebyside Allows creation of subgraphs of the dependency graph for debugging purposes. --- diff --git a/Repair/RepairCompiler/MCC/IR/DebugItem.java b/Repair/RepairCompiler/MCC/IR/DebugItem.java new file mode 100755 index 0000000..aeb42af --- /dev/null +++ b/Repair/RepairCompiler/MCC/IR/DebugItem.java @@ -0,0 +1,12 @@ +package MCC.IR; + +public class DebugItem { + int depth; + int constraintnum; + + public DebugItem(int d,int num) { + depth=d; + constraintnum=num; + } + +}