mirror of
https://github.com/Z3Prover/z3
synced 2026-02-06 17:22:13 +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) {
|
else if (ok == FC_GIVEUP) {
|
||||||
f = THEORY;
|
f = THEORY;
|
||||||
m_incomplete_theories.push_back(th);
|
if (!m_incomplete_theories.contains(th))
|
||||||
|
m_incomplete_theories.push_back(th);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue