Age | Commit message (Collapse) | Author |
|
Added new ones for a recently discovered bug, brought back others for bugs that
were already fixed.
|
|
Discovered arithmetic bug in the Number class, -4 + 5 is coming back as -1, not 1. It's getting the sign wrong somehow. I'll have to hunt that down.
|
|
It turned out to be a really simple solution, but man, that was
embarassing. I forgot to include the fractional portion of a number
when fixing my radix+1 compliment numbers.
|
|
Other minor fixes and options such as --version being added.
|
|
|
|
Other minor bug fixes including scale issues, digit() access stopped a
digit before the final possible digit in the scale, >, >=, <, <= all
work correctly with mixed scale numbers now, probably other fixes.
|
|
We need a new division routine.
|
|
|
|
|
|
They weren't that random, the resize routine in PackedIntArray was
written poorly. It was growing too much and computing the size of the
original array incorrectly, so not all the data was being copied every
time.
|
|
|