mirror of
https://github.com/Z3Prover/z3
synced 2025-06-13 17:36:15 +00:00
z3++: add missing fpa operator >= implementation (#4729)
This commit is contained in:
parent
72b1e8a714
commit
2841796a92
1 changed files with 3 additions and 0 deletions
|
@ -1543,6 +1543,9 @@ namespace z3 {
|
||||||
else if (a.is_bv() && b.is_bv()) {
|
else if (a.is_bv() && b.is_bv()) {
|
||||||
r = Z3_mk_bvsge(a.ctx(), a, b);
|
r = Z3_mk_bvsge(a.ctx(), a, b);
|
||||||
}
|
}
|
||||||
|
else if (a.is_fpa() && b.is_fpa()) {
|
||||||
|
r = Z3_mk_fpa_geq(a.ctx(), a, b);
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
// operator is not supported by given arguments.
|
// operator is not supported by given arguments.
|
||||||
assert(false);
|
assert(false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue