summaryrefslogtreecommitdiff
path: root/src/theory/sep
diff options
context:
space:
mode:
authorGereon Kremer <gkremer@stanford.edu>2021-02-17 14:42:50 +0100
committerGitHub <noreply@github.com>2021-02-17 07:42:50 -0600
commit2d6de44a51fed47a625ae73181efbcc3dac0c751 (patch)
tree50ebd370468514d15b71a1d5f7d8993c24116fc0 /src/theory/sep
parenta1a2d9389730ed46ab246865e320108db07c30ff (diff)
Add InferenceId to buffered inference manager (#5911)
This PR collects the InferenceId in the InferenceManagerBuffered class.
Diffstat (limited to 'src/theory/sep')
-rw-r--r--src/theory/sep/theory_sep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/sep/theory_sep.cpp b/src/theory/sep/theory_sep.cpp
index a38a92b6a..8782bfe34 100644
--- a/src/theory/sep/theory_sep.cpp
+++ b/src/theory/sep/theory_sep.cpp
@@ -1782,7 +1782,7 @@ void TheorySep::sendLemma( std::vector< Node >& ant, Node conc, const char * c,
if( infer && conc!=d_false ){
Node ant_n = NodeManager::currentNM()->mkAnd(ant);
Trace("sep-lemma") << "Sep::Infer: " << conc << " from " << ant_n << " by " << c << std::endl;
- d_im.addPendingFact(conc, ant_n);
+ d_im.addPendingFact(conc, InferenceId::UNKNOWN, ant_n);
}else{
if( conc==d_false ){
Trace("sep-lemma") << "Sep::Conflict: " << ant << " by " << c
@@ -1793,7 +1793,7 @@ void TheorySep::sendLemma( std::vector< Node >& ant, Node conc, const char * c,
<< " by " << c << std::endl;
TrustNode trn = d_im.mkLemmaExp(conc, ant, {});
d_im.addPendingLemma(
- trn.getNode(), LemmaProperty::NONE, trn.getGenerator());
+ trn.getNode(), InferenceId::UNKNOWN, LemmaProperty::NONE, trn.getGenerator());
}
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback