summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2013-01-30 11:59:59 -0500
committerKshitij Bansal <kshitij@cs.nyu.edu>2013-02-05 15:49:56 -0500
commit78fc27358e6b6aae27b11528be54003022b1f663 (patch)
tree3f3ab90ce7602d974042795fda9f90025c31ded0 /src
parentef0e079d85b18fd36b4d90be15b465e2316a38c9 (diff)
decision/ : save d_prvsIndex in JH
Diffstat (limited to 'src')
-rw-r--r--src/decision/justification_heuristic.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/decision/justification_heuristic.h b/src/decision/justification_heuristic.h
index de6bf5095..5d13d2dd2 100644
--- a/src/decision/justification_heuristic.h
+++ b/src/decision/justification_heuristic.h
@@ -130,8 +130,10 @@ public:
return prop::undefSatLiteral;
}
- if(litDecision != undefSatLiteral)
+ if(litDecision != undefSatLiteral) {
+ d_prvsIndex = i;
return litDecision;
+ }
}
Trace("decision") << "jh: Nothing to split on " << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback