mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
typo
This commit is contained in:
parent
b0781a14cd
commit
2f08040403
|
@ -8321,7 +8321,7 @@ def _to_float_str(val, exp=0):
|
||||||
num = v[0]
|
num = v[0]
|
||||||
den = v[1]
|
den = v[1]
|
||||||
rvs = str(num) + '/' + str(den)
|
rvs = str(num) + '/' + str(den)
|
||||||
res = rvs + 'p' +_to_int_str(exp)
|
res = rvs + 'p' + _to_int_str(exp)
|
||||||
elif isinstance(val, bool):
|
elif isinstance(val, bool):
|
||||||
if val:
|
if val:
|
||||||
res = "1.0"
|
res = "1.0"
|
||||||
|
|
Loading…
Reference in a new issue