projects
/
repair.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
557d78d
)
Allows creation of subgraphs of the dependency graph for debugging purposes.
author
bdemsky
<bdemsky>
Mon, 19 Jul 2004 04:46:39 +0000
(
04:46
+0000)
committer
bdemsky
<bdemsky>
Mon, 19 Jul 2004 04:46:39 +0000
(
04:46
+0000)
Repair/RepairCompiler/MCC/IR/DebugItem.java
[new file with mode: 0755]
patch
|
blob
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
+++ 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;
+ }
+
+}