Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-01 | Added "--sum" command line option. | Mike Buland | |
Reads in a list of numbers on standard in, one per line, and sums them. | |||
2014-11-28 | Division fixes, better config, more tests.0.11 | Mike Buland | |
Other minor fixes and options such as --version being added. | |||
2014-11-28 | build builds the datafiles class now. | Mike Buland | |
Added a little bit of help, too. | |||
2014-11-28 | Switched to using bin2cpp for the help. | Mike Buland | |
I think that's a better practice, it'll be a lot easier to expand it and format it in general, plus it could be compressed if it got too much bigger. | |||
2014-11-25 | Added a new 'execute' command line parameter. | Mike Buland | |
2014-11-24 | Fixed an annoying parsing bug.0.10 | Mike Buland | |
2014-11-03 | Made x/0 return 0 for now. | Mike Buland | |
I have to decide how to handle special values like that, but for now it's better that it doesn't go into an infinite loop. | |||
2014-10-31 | Added more tests, keep everything on the up and up | Mike Buland | |
2014-10-31 | Corrected issue with particular sequences of zeros. | Mike Buland | |
No more known division issues. | |||
2014-10-30 | Maybe better? conversions aren't always good. | Mike Buland | |
I'm not sure what part is broken yet though. | |||
2014-10-30 | Used the new cuter sign logic in multiply. | Mike Buland | |
2014-10-30 | Better comments! | Mike Buland | |
2014-10-30 | Updated version number.0.09 | Mike Buland | |
2014-10-30 | Fixed remaining known division issues. | Mike Buland | |
It looks great, and works with everything I can think of so far. | |||
2014-10-30 | Divisors between 0 and 1 break division now. | Mike Buland | |
2014-10-30 | The new division works great! | Mike Buland | |
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. | |||
2014-09-26 | Added tests that fail for division. | Mike Buland | |
We need a new division routine. | |||
2014-09-17 | Added a unit test that breaks divide. | Mike Buland | |
2014-09-17 | Issues with small decimal numbers were in toString. | Mike Buland | |
It was bailing on very small numbers with only one decimal point of precision, which is silly. This has been fixed. | |||
2013-11-14 | Fixed (?) parsing order of operations bug, added unit tests. | Mike Buland | |
2013-11-13 | Forgot to update the version number again. | Mike Buland | |
2013-11-13 | Added debugging to parser, and disabled debug flag.0.08 | Mike Buland | |
2013-11-13 | Corrected silly bug in variable assignment. | Mike Buland | |
2013-05-22 | Some compilers need an extra header. | Mike Buland | |
Should probably include that extra header. | |||
2013-05-17 | The --text-primes option supports a parameter. | Mike Buland | |
You can tell it where to start now. | |||
2013-05-10 | Added more helpers to Number.0.07 | Mike Buland | |
2013-05-10 | Added more checking & unit-tests. | Mike Buland | |
2013-05-09 | Added Number::toRadix & Number::set( int32_t ). | Mike Buland | |
Both very handy. I'll add other numeric setters later, it was very easy. | |||
2013-05-09 | Added better filtering in Number::set, and cli options. | Mike Buland | |
The command line options let you set the initial radix/scale, and there's a function te test if any number is prime, that's fun. | |||
2013-05-08 | Added a funny option to generate primes. | Mike Buland | |
...But primes in base 36 and it skips all numbers with digits in the range 0-9 | |||
2013-05-08 | Forgot to change the version number in the code. | Mike Buland | |
This doesn't really matter for this project right now. I keep forgetting because other ones auto-generate the code from 'git describe' | |||
2013-05-08 | Command parameters are taken as strings & decimal.0.06 | Mike Buland | |
You no longer need to set the radix in the current radix. | |||
2013-04-24 | Updated version header.0.05 | Mike Buland | |
2013-04-24 | Fixed order of operations bug. | Mike Buland | |
2013-04-23 | Now supports modulus (strange for fractions). | Mike Buland | |
2013-04-23 | Updated the version and startup banner.0.04 | Mike Buland | |
2013-04-23 | Variables work. | Mike Buland | |
2013-04-23 | Fixed random zeros bug.0.03 | Mike Buland | |
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. | |||
2013-04-23 | Added == operator to compare Numbers & strings | Mike Buland | |
We may be able to go even a step further, but it actually parses the string as a number with the same radix and scale as the left hand side of the equation and then compares them as Numbers. This means that it's actually more resiliant to minor formatting differences. | |||
2013-04-23 | Added stdlib for exit in the options.cpp file. | Mike Buland | |
2013-04-23 | Added cli params & a unit test. | Mike Buland | |
2013-04-22 | Just tweaked the starting banner.0.02 | Mike Buland | |
2013-04-22 | Fixed = bug in lexer (they halted it). | Mike Buland | |
2013-04-22 | There is now a parser & calculator interface. | Mike Buland | |
2013-04-22 | Fixed bug in multiply, added toInt32 function. | Mike Buland | |
Multiply was ignoring the zero column, which was odd. I fixed this other places but apparently missed multiply. | |||
2013-04-21 | FIxed fractional support in comparisons. | Mike Buland | |
They still don't handle mixed scale comparisons correctly, it shouldn't be too hard to add, but yeah...not supported yet. | |||
2013-04-21 | Corrected zero-length PackedIntArray bug. | Mike Buland | |
If the array was zero elements long and then append was used it wouldn't allocate memory, but it would try to write to a pointer. | |||
2013-04-19 | Added routines to get/set scale. | Mike Buland | |
2013-04-19 | Corrected bugs in division scaling and string parsing. | Mike Buland | |
2013-04-19 | Fractional divisoin works. | Mike Buland | |
It doesn't round yet, and there's a chance I should be increasing the precision, right now it keeps the precision of the left hand side number. |