mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
parent
bab879c832
commit
f98b94bdbc
3 changed files with 2 additions and 3 deletions
|
@ -636,7 +636,6 @@ goal * goal::translate(ast_translation & translator) const {
|
|||
return res;
|
||||
}
|
||||
|
||||
|
||||
bool goal::sat_preserved() const {
|
||||
return prec() == PRECISE || prec() == UNDER;
|
||||
}
|
||||
|
|
|
@ -814,7 +814,7 @@ class repeat_tactical : public unary_tactical {
|
|||
if (r1[0]->is_decided()) {
|
||||
result.push_back(r1[0]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
goal_ref r1_0 = r1[0];
|
||||
operator()(depth+1, r1_0, result);
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ Notes:
|
|||
|
||||
|
||||
static tactic * mk_der_fp_tactic(ast_manager & m, params_ref const & p) {
|
||||
return repeat(and_then(mk_der_tactic(m), mk_simplify_tactic(m, p)));
|
||||
return repeat(and_then(mk_der_tactic(m), mk_simplify_tactic(m, p)), 5);
|
||||
}
|
||||
|
||||
static tactic * mk_ufbv_preprocessor_tactic(ast_manager & m, params_ref const & p) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue