-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement MulDivOverflow() * update document * update benchmark * update document * update authors * optimize for case x or y == 0 * fuzzing: add muldiv fuzzing + fix fuzzer * fix benchmark opt * fix typo * fuzzing: doc fix * zero-check directly * remove wrong optimization * handle case denominator is greater than numerator * update func description * remove rarely case code * handle this case in udivrem instead * fuzz: use correct return value Co-authored-by: Martin Holst Swende <[email protected]>
- Loading branch information
Showing
5 changed files
with
111 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ Kurkó Mihály <[email protected]> | |
Paweł Bylica <[email protected]> | ||
Yao Zengzeng <[email protected]> | ||
Dag Arne Osvik <[email protected]> | ||
Thanee Charattrakool <[email protected]> | ||
|
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
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