3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-15 07:06:16 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-27 15:05:35 -07:00
parent c6135a40d5
commit 872fd5e9ff
9 changed files with 125 additions and 43 deletions

View file

@ -85,6 +85,7 @@ struct scoped_assumption_push {
};
lbool solver::get_consequences(expr_ref_vector const& asms, expr_ref_vector const& vars, expr_ref_vector& consequences) {
scoped_solver_time st(*this);
try {
return get_consequences_core(asms, vars, consequences);
}
@ -326,6 +327,7 @@ expr_ref_vector solver::get_non_units() {
lbool solver::check_sat(unsigned num_assumptions, expr * const * assumptions) {
lbool r = l_undef;
scoped_solver_time _st(*this);
try {
r = check_sat_core(num_assumptions, assumptions);
}