-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
read Ltac2 integer bits using bitwise right shift (#355)
* read Ltac2 integer bits using bitwise right shift Now that Ltac2 [supports](coq/coq#15637) integer operations like the bitwise right shift (`Int.lsr`), we can use it directly for converting an Ltac2 integer into a bool list representation of its bits, obviating the original workaround. * simplify int_to_bits_rec * fix typo and elaborate on comment * minor refactor in LiveParsing.v
- Loading branch information
1 parent
0893c1f
commit 64beea5
Showing
3 changed files
with
10 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters