-
Hi all, well, first to aclare this, this behavior is fine:
``` python
>>> N(S(2.1), 100)
2.100000000000000088817841970012523233890533447265625000000000000000000000000000000000000000000000000
>>> N(Ra…
latot updated
5 years ago
-
The issue was raised at the IETF JSON WG this week: does JSON permit arbitrary precision numbers? The syntax certainly does. Neither RFC4627 nor ECMAScript 6 (draft) preclude it, and many implementa…
-
```
?- N=177,length(L,N),maplist(=('0'),L),append(L,"1",J),number_chars(Nr,['1',.|J]), Nr == 1.0.
J = ['0',...,'0','1'], L = ['0',... ], N = 177, Nr = 1.0 ;
false.
OK
?- N=178,length(L,N),maplis…
-
I ran into this issue when trying to make `linspace` spit out fixed point numbers ([Courtesy of Jeff Bezanson's FixedPointNumbers.jl](https://github.com/JeffBezanson/FixedPointNumbers.jl)). The proble…
-
There are many FP algorithms that generate more than one FP result. Consider for example the QR decomposition of a matrix. That algorithm returns basically two matrices the same size as the input ma…
-
I like it that it doesn't instantly evaluate it, but if I want to evaluate it to arbitrary precision, how would I do it?
-
| Required Info
|---------------------------------|------------------------------------------- |
| Camera Model | {D435i } |
| Firmware Version | (05…
-
## Problem
This is a general problem with our API where all numeric values are handled as int64 right now. This is issue is to address the problem for money values first such as gross and net amounts…
-
Initial tl;dr: Go could make timestamp handling much easier by providing the following functions in its time library:
```go
func (t Time) UnixMicro() int64 { ... }
func (t Time) UnixMilli() int64 {…
-
https://github.com/bo3b/3Dmigoto/blob/745231bad149b369f2ed114e7258cafb1e615093/DirectX11/IniHandler.cpp#L2083
I'm not sure this check has the effect it was intended for. It catches things like tryi…