mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 21:38:44 +00:00
Merge branch 'unstable' of https://git01.codeplex.com/z3 into fpa-api
This commit is contained in:
commit
2f81b6c6b5
|
@ -6210,7 +6210,7 @@ class Fixedpoint(Z3PPObject):
|
||||||
"""
|
"""
|
||||||
query = _get_args(query)
|
query = _get_args(query)
|
||||||
sz = len(query)
|
sz = len(query)
|
||||||
if sz >= 1 and isinstance(query[0], FuncDecl):
|
if sz >= 1 and isinstance(query[0], FuncDeclRef):
|
||||||
_decls = (FuncDecl * sz)()
|
_decls = (FuncDecl * sz)()
|
||||||
i = 0
|
i = 0
|
||||||
for q in query:
|
for q in query:
|
||||||
|
@ -8340,4 +8340,4 @@ def fpToIEEEBV(x):
|
||||||
"""Create a Z3 floating-point conversion expression, from floating-point expression to IEEE bit-vector."""
|
"""Create a Z3 floating-point conversion expression, from floating-point expression to IEEE bit-vector."""
|
||||||
if __debug__:
|
if __debug__:
|
||||||
_z3_assert(is_fp(x), "First argument must be a Z3 floating-point expression")
|
_z3_assert(is_fp(x), "First argument must be a Z3 floating-point expression")
|
||||||
return FPRef(Z3_mk_fpa_to_ieee_bv(x.ctx_ref(), x.ast), x.ctx)
|
return FPRef(Z3_mk_fpa_to_ieee_bv(x.ctx_ref(), x.ast), x.ctx)
|
||||||
|
|
Loading…
Reference in a new issue