3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 20:38:43 +00:00
This commit is contained in:
Christoph M. Wintersteiger 2015-12-29 16:00:07 +00:00
parent b0781a14cd
commit 2f08040403

View file

@ -8321,7 +8321,7 @@ def _to_float_str(val, exp=0):
num = v[0]
den = v[1]
rvs = str(num) + '/' + str(den)
res = rvs + 'p' +_to_int_str(exp)
res = rvs + 'p' + _to_int_str(exp)
elif isinstance(val, bool):
if val:
res = "1.0"