3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 02:16:40 +00:00

force propagation for smt cubing

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-08-06 14:19:16 -07:00
parent bbfac99b22
commit e950453685
3 changed files with 6 additions and 1 deletions

View file

@ -264,7 +264,8 @@ public:
}
expr_ref_vector cube(expr_ref_vector& vars, unsigned backtrack_level) override {
return m_solver1->cube(vars, backtrack_level);
switch_inc_mode();
return m_solver2->cube(vars, backtrack_level);
}
expr * get_assumption(unsigned idx) const override {