3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 20:46:01 +00:00

Track FI lemma in core; remove bailout_lemma

This commit is contained in:
Jakob Rath 2021-09-14 11:01:06 +02:00
parent d36a658139
commit d935714874
2 changed files with 8 additions and 8 deletions

View file

@ -51,7 +51,6 @@ namespace polysat {
/** Whether we are in a bailout state. We enter a bailout state when we give up on proper conflict resolution. */
bool m_bailout = false;
std::optional<clause_builder> m_bailout_lemma;
solver* m_solver = nullptr;
solver& s() const { return *m_solver; }