summaryrefslogtreecommitdiff
path: root/src/theory/sep/theory_sep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sep/theory_sep.cpp')
-rw-r--r--src/theory/sep/theory_sep.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/theory/sep/theory_sep.cpp b/src/theory/sep/theory_sep.cpp
index efede77ba..98130beb5 100644
--- a/src/theory/sep/theory_sep.cpp
+++ b/src/theory/sep/theory_sep.cpp
@@ -52,7 +52,7 @@ TheorySep::TheorySep(context::Context* c,
d_lemmas_produced_c(u),
d_bounds_init(false),
d_state(c, u, valuation),
- d_im(*this, d_state, nullptr, "theory::sep::"),
+ d_im(*this, d_state, pnm, "theory::sep::"),
d_notify(*this),
d_reduce(u),
d_spatial_assertions(c)
@@ -1785,11 +1785,12 @@ void TheorySep::sendLemma( std::vector< Node >& ant, Node conc, InferenceId id,
if( conc==d_false ){
Trace("sep-lemma") << "Sep::Conflict: " << ant << " by " << id
<< std::endl;
- d_im.conflictExp(id, ant, nullptr);
+ d_im.conflictExp(id, PfRule::THEORY_INFERENCE, ant, {conc});
}else{
Trace("sep-lemma") << "Sep::Lemma: " << conc << " from " << ant
<< " by " << id << std::endl;
- TrustNode trn = d_im.mkLemmaExp(conc, ant, {});
+ TrustNode trn =
+ d_im.mkLemmaExp(conc, PfRule::THEORY_INFERENCE, ant, {}, {conc});
d_im.addPendingLemma(
trn.getNode(), id, LemmaProperty::NONE, trn.getGenerator());
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback