-
"Bigger than 64-bit int cases" is an insufficient reason.
In fact the real limits if we want to be able to compute numbers with arbitrary precision is not 64-bit but actually 26 bits (consider only…
-
Specifically, when I compare
```
gfortran -O3 perf.f90 && ./a.out
gfortran -O3 -march=native -ffast-math -funroll-loops perf.f90 && ./a.out
```
on my machine, then I get 2x speedup on the `iterat…
-
If you take a BigInt and raise it to a negative power, the answer will always be in the range between -1 and 1 (exclusive), which would round to zero if we take division-like semantics. I see a couple…
-
Your `echo .1 + .2;` displays `0.3` because PHP converts it to a string in `echo` first while still internally using `0.30000000000000004`. You can verify this with: `echo ceil((.1 + .2) * 10);` (this…
-
I have slightly modified 37 ICC output profiles coming from "Elle Stone" , thanks to him
Branch : testoutputprofile
do we keep them all, or only a few, and if so, which ones?
Thank you
J…
-
*Part of the list of things I want to work on before tagging a release, as mentioned in #2. Comments welcome.*
Monies can have different scales: for example USD uses 2 decimals by default, but some…
-
These would be useful for alpha_s extraction studies.
Pdf sets are
322500 | NNPDF31_nnlo_as_0108
322700 | NNPDF31_nnlo_as_0110
322900 | NNPDF31_nnlo_as_0112
323100 | NNPDF31_nnlo_as_0114
32…
-
```ceylon
import ceylon.json {
JsonObject,
parse
}
shared void jsonTest() {
value json = "{ \"x\": 10.0, \"y\": 10 }";
value o = parse(json);
assert (is JsonObject o );
…
-
Hi, this is little weird:
```
>>> a=S("2.1")
>>> b=Rational("2.1")
>>> N(a, 100)
2.100000000000000088817841970012523233890533447265625000000000000000000000000000000000000000000000000
>>> N(b, 100)
2.…
latot updated
7 years ago
-
See http://stackoverflow.com/questions/41985718/why-the-values-are-not-correctly-iterated-using-range-arrays/41986875#41986875.
Example:
```jl
julia> a, s, b = 3*0.05, 0.05, 4*0.05
(0.15000000…