mirror of
https://github.com/Z3Prover/z3
synced 2025-12-05 11:36:45 +00:00
insert theory only once
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
62b3668beb
commit
482fa7dadf
1 changed files with 2 additions and 1 deletions
|
|
@ -4141,7 +4141,8 @@ namespace smt {
|
|||
}
|
||||
else if (ok == FC_GIVEUP) {
|
||||
f = THEORY;
|
||||
m_incomplete_theories.push_back(th);
|
||||
if (!m_incomplete_theories.contains(th))
|
||||
m_incomplete_theories.push_back(th);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue