mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +00:00
FPA probe bugfix
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
b968eb2b8c
commit
4c8bbad8d6
|
@ -57,6 +57,8 @@ struct is_non_qffpa_predicate {
|
||||||
return;
|
return;
|
||||||
if (fid == u.get_family_id())
|
if (fid == u.get_family_id())
|
||||||
return;
|
return;
|
||||||
|
if (is_uninterp_const(n))
|
||||||
|
return;
|
||||||
|
|
||||||
throw found();
|
throw found();
|
||||||
}
|
}
|
||||||
|
@ -83,6 +85,8 @@ struct is_non_qffpabv_predicate {
|
||||||
return;
|
return;
|
||||||
if (fid == fu.get_family_id() || fid == bu.get_family_id())
|
if (fid == fu.get_family_id() || fid == bu.get_family_id())
|
||||||
return;
|
return;
|
||||||
|
if (is_uninterp_const(n))
|
||||||
|
return;
|
||||||
|
|
||||||
throw found();
|
throw found();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue