[integer] Remove multiply_toom_cook_3 for BigUInt
#82
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.
This pull request includes significant changes to the
src/decimojo/biguint/arithmetics.mojoandsrc/decimojo/biguint/biguint.mojofiles, focusing on the removal of themultiply_toom_cook_3function, a correction to theshift_words_leftfunction's documentation, and the addition of a new method to theBigUIntstruct.Major Changes:
Removal of
multiply_toom_cook_3function:multiply_toom_cook_3function, which implemented the Toom-Cook 3-way multiplication algorithm, has been entirely removed. This includes all associated logic and comments.Documentation Correction:
shift_words_leftfunction inarithmetics.mojowas corrected to state that the function adds trailing zeros, not leading zeros.New Method in
BigUIntstruct:shift_words_lefthas been added to theBigUIntstruct, which shifts the words of theBigUIntto the left by a specified number of bits. This method calls theshift_words_leftfunction inarithmetics.mojofor its implementation.