Omar Rizwan
Omar Rizwan
I'd guess [the problem is here](https://github.com/osnr/cruncher/blob/master/src/coffee/cruncher.coffee#L25) and somehow = matches + on non-American keyboards -- you could probably just delete that key binding and lose the nice "fill in the...
Basic load/save works; publish is still broken.
I'm reluctant to add syntax beyond 'natural math syntax'. Couldn't you construct these sums by linking? It would be annoying, though. We're also getting into spreadsheet territory here.
Can you give an example? You should only be able to have one computer-controlled number in a line anyway..
It's an issue with the solver itself; Newton's method diverges with f(x) = 15/x + 3, approximated f', and x_0 = 1 (which is a constant right now). It converges...
You're right -- my mistake. There is a JS implementation of Brent's method: https://gist.github.com/borgar/3317728 I'll look at it soon; looks like we need to bracket the root first to use...
Still breaks on larger right-side numbers than 3. Actually, this bug wasn't fixed by using Brent's method -- it was fixed by the second x_0 we now test as part...
Another rounding issue.. scrubbing granularity too #15 The values between -5^2 and -5^3 are actually NaN, and you scrub between them, but it rounds off to one of the two...
I don't have any such plans, although I don't think it would be too hard. The `createClass` use and React children type dispatching in index.jsx need to change, iirc. I'll...