-
When I type:
```python3
>>> Float(24)/Float(7.5)
3.20000000000000
>>> Float(0.7)**2*8
3.92000000000000
```
Instead it would be properly to display like this
```python3
>>> Float(24…
-
There have been a few updates to the moderate path float parsing algorithms in [minimal-lexical](https://github.com/Alexhuszagh/minimal-lexical), which can either provide performance benefits or reduc…
-
Consider the following rational function
```
rat_func = Mul(Add(Mul(Float('4.1609826642376610641e-28', prec=17), Pow(Symbol('x'), Integer(14))), Mul(Integer(-1), Float('3.7794523874503297816e-24',…
-
### Feature Description
Presently, the sample rate, signal names, and other GR source meta-information need to be propagated as block parameters to each block where required. While variable definitio…
-
In Python 3, `floor` and `ceil` changed to return integers, rather than floats:
```python
>>> math.floor(1.5), math.ceil(1.5)
(1, 2)
>>> np.floor(1.5), np.ceil(1.5)
(1.0, 2.0) # also the outp…
-
```
What steps will reproduce the problem?
1. mod(83^55;221)
2.
What is the expected output? What do you see instead?
incorrect calculation: expected 8 (see
http://www.wolframalpha.com/input/?i=83^5…
-
*Related to https://github.com/godotengine/godot-proposals/issues/3285.*
### Describe the project you are working on
The Godot editor :slightly_smiling_face:
### Describe the problem or limi…
-
# Bug report
### Bug description:
Mixing Decimals and floats will often get you the wrong answer. By default, the Decimal library allows such behavior:
```python
>>> import decimal
>>> decima…
-
The OM Standard defines a couple of technical terms (e.g. bound and free, that set me off). and we currently use ```foo``` to mark up the definienda. It would be helpful to the reader, if we would hav…
-
Looks like we CAN NOT emit the proper numbers into Serde.
If, for example, (from 2090.5 * 8.61) we're getting 17999.204999999998 instead of 17999.205, we have no way to serialize the number properl…