3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

fix scope and mus with user-scopes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-08-15 11:29:08 -07:00
parent ee1a1b1135
commit be1cceba34
3 changed files with 15 additions and 5 deletions

View file

@ -134,7 +134,6 @@ public:
}
lbool mus_solver() {
solver::scoped_push _sc(m_s);
init();
init_local();
while (true) {
@ -178,10 +177,9 @@ public:
}
lbool mus_mss_solver() {
solver::scoped_push _sc(s());
init();
init_local();
enable_sls(m_asms);
//enable_sls(m_asms);
ptr_vector<expr> mcs;
vector<ptr_vector<expr> > cores;
while (m_lower < m_upper) {
@ -222,7 +220,6 @@ public:
lbool mss_solver() {
NOT_IMPLEMENTED_YET();
solver::scoped_push _sc(s());
init();
init_local();
ptr_vector<expr> mcs;