-
I tried this code:
```rust
fn main() {
let nan1 = f64::from_bits(0x7FF0_0001_0000_0001u64);
let nan2 = f64::from_bits(0x7FF0_0000_0000_0001u64);
assert!(nan1.is_nan());
a…
-
This is caught by Daniel. Printing numbers result with different sizes as strings.
```clojure
(ds/name-values-seq->dataset {:a [0.000001 0.00001 0.0001 0.001 0.01 0.1
…
-
- Describe what you want to achieve.
I have a config struct that gets initialized via a json file. I want to make sure that any floats in the json file will round trip (convert from string-float-stri…
-
Due to https://build.opensuse.org/request/show/760741, I tried to bump espresso to v4.1.2 on OpenSUSE, but many tests fail on x86_64 with:
```
[ 1114s] Start 131: lb_momentum_conservation
[…
-
I am trying to debug psp via psp-gdb but it has gdb version 6.8. To start debugging just need run psp-gdb with *.elf file arguments like:
`psp-gdb ../../../MyTest2/__Game_Engine__/PSP/__DEBUG_TESTS…
-
### Terraform Version
```
→ terraform version
Terraform v0.11.10
```
### Expected Behavior
```
→ terraform console
> 0.10 * 1.5
0.15
```
### Actual Behavior
```
→ terraform console
…
-
It would be nice if we could keep the data from being expanded and changed due to the conversion into the float format. So in this file:
[magic_contribution_16534.txt](https://github.com/PmagPy/PmagP…
-
I am not sure whether this is a specification issue or an implementation in Newtonsoft. Is there a specification for the number of digits of precision the multipleOf attribute supports? In testing…
-
**Describe the bug**
With `strict: true` option provided, ORM is throwing a validation error on _read_ even though I am not setting anything.
**Stack trace**
```
ValidationError: Trying to set S…
-
The following example shows that the for loop has problems with the precision when stating small step values:
//Example:
for (i=[3:2:5]){
echo(i);
}
//output:
ECHO: 3
ECHO: 5
Now, when changing …