mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 04:03:39 +00:00
z3++: add missing fpa operator >= implementation (#4729)
This commit is contained in:
parent
72b1e8a714
commit
2841796a92
|
@ -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…
Reference in a new issue