mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Merge pull request #471 from 4tXJ7f/patch-1
[Z3py] Fix documentation in FPSortRef
This commit is contained in:
commit
6fa2338edc
|
@ -7964,7 +7964,7 @@ class FPSortRef(SortRef):
|
|||
return int(Z3_fpa_get_ebits(self.ctx_ref(), self.ast))
|
||||
|
||||
def sbits(self):
|
||||
"""Retrieves the number of bits reserved for the exponent in the FloatingPoint sort `self`.
|
||||
"""Retrieves the number of bits reserved for the significand in the FloatingPoint sort `self`.
|
||||
>>> b = FPSort(8, 24)
|
||||
>>> b.sbits()
|
||||
24
|
||||
|
@ -7972,8 +7972,7 @@ class FPSortRef(SortRef):
|
|||
return int(Z3_fpa_get_sbits(self.ctx_ref(), self.ast))
|
||||
|
||||
def cast(self, val):
|
||||
"""Try to cast `val` as a Floating-point expression
|
||||
|
||||
"""Try to cast `val` as a floating-point expression.
|
||||
>>> b = FPSort(8, 24)
|
||||
>>> b.cast(1.0)
|
||||
1
|
||||
|
|
Loading…
Reference in a new issue