-
```
1 dependency had output during precompilation:
┌ Groebner
│ WARNING: llvmcall with integer pointers is deprecated.
│ Use actual pointers instead, replacing i32 or i64 with i8* or ptr
│ i…
-
Currently, `FastRational` uses signed integer for numerator and unsigned for denominator. This yields conversion issues and mixing such variables is not recommended in C++. I would be probably better …
-
Since 3414c6ec51c3393b2baca8f5062c73cfa8184372 from gh-701 import sympy fails:
```python
>>> import sympy
Traceback (most recent call last):
File "", line 1, in
File "/home/oscar/current/act…
-
This is on Chrome & Windows 7...
https://www.khanacademy.org/profile/PeterKuperman/vital-statistics/problems/adding_and_subtracting_rational_numbers
leads me to:
https://www.khanacademy.org/math/ar…
-
I propose that we add a rational type to either the stdlib or the core data types, replacing floating-point numbers in many cases.
# Rationals can complete integers without requiring lossy floa…
-
```
http://calcrpnpy.sourceforge.net/clnum.html
It brings arbitrary-precision floating-point and rational arithmetic to
Python using a C++ library:
http://www.ginac.de/CLN/
It'd be interesting to c…
-
Is it possible to compute everything with exact arithmetic, if the input game is of type `Int` or `Rational` and the user chooses a `Polyhedra` library that supports computation with `Rational` such a…
-
Trying to resolve our concepts of `Arithmetic` prime fields, `Symbolic` fields, our existing numerical hierarchy, Haskell's numerical hierachy, and the mathematics of semirings leads me to this numeri…
-
```
http://calcrpnpy.sourceforge.net/clnum.html
It brings arbitrary-precision floating-point and rational arithmetic to
Python using a C++ library:
http://www.ginac.de/CLN/
It'd be interesting to c…
-
This real number can be exactly represented by the integer (and also rational) `2^54`, so this is off by one:
```
sage: QQ(RR(2^54))
18014398509481983
```
The underlying function called by `QQ()` …