Add i128 and u128 Support for Integer ASTs #387
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add i128 and u128 Support for Integer ASTs
This PR extends the
Int<'ctx>
API to support 128-bit integers.from_i128(ctx: &Context, v: i128) -> Int<'ctx>
Creates a Z3 integer numeral from a signed 128-bit integer.
from_u128(ctx: &Context, v: u128) -> Int<'ctx>
Creates a Z3 integer numeral from an unsigned 128-bit integer.
as_i128(&self) -> Option<i128>
Attempts to parse the internal numeral into a signed
i128
. ReturnsNone
if the AST is not a numeral or parsing fails.as_u128(&self) -> Option<u128>
Same as above, but for unsigned
u128
.