Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Finish div for BigDec
  • Loading branch information
forfudan committed Mar 30, 2025
commit db447e300e0bc1513c54ff7ab401a09296cc4faa
4 changes: 0 additions & 4 deletions src/decimojo/biguint/arithmetics.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,6 @@ fn multiply(x1: BigUInt, x2: BigUInt) raises -> BigUInt:
carry = UInt64(0)

for j in range(len(x2.words)):
# Skip if the word is zero
if x2.words[j] == 0:
continue

# Calculate the product of the current words
# plus the carry from the previous multiplication
# plus the value already at this position in the result
Expand Down
Loading