Skip to content

Commit b2c6db9

Browse files
authored
printing float values will have one more digit. (nim-lang#13276) [backport]
* printing float values will have one more digit. Fixes nim-lang#13196
1 parent cdedb86 commit b2c6db9

File tree

10 files changed

+45
-41
lines changed

10 files changed

+45
-41
lines changed

lib/pure/json.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ proc pretty*(node: JsonNode, indent = 2): string =
677677
## Similar to prettyprint in Python.
678678
runnableExamples:
679679
let j = %* {"name": "Isaac", "books": ["Robot Dreams"],
680-
"details": {"age": 35, "pi": 3.1415}}
680+
"details": {"age": 35, "number": 3.125}}
681681
doAssert pretty(j) == """
682682
{
683683
"name": "Isaac",
@@ -686,7 +686,7 @@ proc pretty*(node: JsonNode, indent = 2): string =
686686
],
687687
"details": {
688688
"age": 35,
689-
"pi": 3.1415
689+
"number": 3.125
690690
}
691691
}"""
692692
result = ""

lib/system/formatfloat.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ proc writeFloatToBuffer*(buf: var array[65, char]; value: BiggestFloat): int =
2929
## * `buf` - A buffer to write into. The buffer does not need to be
3030
## initialized and it will be overridden.
3131
##
32-
var n: int = c_sprintf(addr buf, "%.16g", value)
32+
var n: int = c_sprintf(addr buf, "%.17g", value)
3333
var hasDot = false
3434
for i in 0..n-1:
3535
if buf[i] == ',':

tests/errmsgs/tsigmatch.nim

+2-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ proc f(a1: string; a2: varargs[string]; a3: float; a4: var string)
5858
required type for a4: var string
5959
but expression '"bad"' is immutable, not 'var'
6060
61-
expression: f("asdf", "1", "2", "3", "4", 2.3, "bad")
61+
expression: f("asdf", "1", "2", "3", "4", 2.25, "bad")
6262
tsigmatch.nim(164, 4) Error: type mismatch: got <string, a0: int literal(12)>
6363
but expected one of:
6464
proc f(x: string; a0: var int)
@@ -153,7 +153,7 @@ block:
153153
# sigmatch gets confused with param/arg position after varargs
154154
proc f(a1: int) = discard
155155
proc f(a1: string, a2: varargs[string], a3: float, a4: var string) = discard
156-
f("asdf", "1", "2", "3", "4", 2.3, "bad")
156+
f("asdf", "1", "2", "3", "4", 2.25, "bad")
157157

158158
block:
159159
# bug: https://github.com/nim-lang/Nim/issues/11061#issuecomment-508970046
@@ -169,4 +169,3 @@ block:
169169
proc fun1(a1: MyInt, a2: Mystring) = discard
170170
proc fun1(a1: float, a2: Mystring) = discard
171171
fun1(Mystring.default, "asdf")
172-

tests/float/tfloat6.nim

+8-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,14 @@
11
discard """
2-
output: '''
3-
1e-06 : 1e-06
4-
1e-06 : 1e-06
5-
0.001 : 0.001
6-
1e-06 : 1e-06
7-
1e-06 : 1e-06
8-
10.000001 : 10.000001
9-
100.000001 : 100.000001
10-
'''
11-
disabled: "windows"
2+
disabled: "windows"
123
"""
134

145
import strutils
156

16-
echo "0.00_0001".parseFloat(), " : ", 1E-6
17-
echo "0.00__00_01".parseFloat(), " : ", 1E-6
18-
echo "0.0_01".parseFloat(), " : ", 0.001
19-
echo "0.00_000_1".parseFloat(), " : ", 1E-6
20-
echo "0.00000_1".parseFloat(), " : ", 1E-6
7+
doAssert "0.00_0001".parseFloat() == 1E-6
8+
doAssert "0.00__00_01".parseFloat() == 1E-6
9+
doAssert "0.0_01".parseFloat() == 0.001
10+
doAssert "0.00_000_1".parseFloat() == 1E-6
11+
doAssert "0.00000_1".parseFloat() == 1E-6
2112

22-
echo "1_0.00_0001".parseFloat(), " : ", 10.000001
23-
echo "1__00.00_0001".parseFloat(), " : ", 1_00.000001
13+
doAssert "1_0.00_0001".parseFloat() == 10.000001
14+
doAssert "1__00.00_0001".parseFloat() == 1_00.000001

tests/float/tfloat8.nim

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
discard """
2+
disabled: windows
3+
"""
4+
5+
{.passL: "-lm".} # not sure how to do this on windows
6+
7+
import strutils
8+
9+
proc nextafter(a,b: float64): float64 {.importc: "nextafter", header: "<math.h>".}
10+
11+
var myFloat = 2.5
12+
13+
for i in 0 .. 100:
14+
let newFloat = nextafter(myFloat, Inf)
15+
let oldStr = $myFloat
16+
let newStr = $newFloat
17+
doAssert parseFloat(newStr) == newFloat
18+
doAssert oldStr != newStr
19+
myFloat = newFloat

tests/generics/tforwardgeneric.nim

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
discard """
2-
output: "1.1 11\n42\n0"
2+
output: "1.125 11\n42\n0"
33
ccodecheck: "!@'ClEnv'"
44
"""
55

66
proc p[T](a, b: T): T
77

8-
echo p(0.9, 0.1), " ", p(9, 1)
8+
echo p(0.875, 0.125), " ", p(9, 1)
99

1010
proc p[T](a, b: T): T =
1111
let c = b
@@ -25,4 +25,3 @@ proc print[T](t: T) =
2525
echo t
2626

2727
echo bar()
28-

tests/generics/tgenerics_issues.nim

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ discard """
66
perm: 22 det: 22
77
TMatrix[3, 3, system.int]
88
3
9-
@[0.9, 0.1]
9+
@[0.875, 0.125]
1010
U[3]
1111
U[(f: 3)]
1212
U[[3]]
@@ -20,9 +20,9 @@ concrete 88
2020
2
2121
3
2222
!!Hi!!
23-
G:0,1:0.1
24-
G:0,1:0.1
25-
H:1:0.1
23+
G:0,1:0.125
24+
G:0,1:0.125
25+
H:1:0.125
2626
'''
2727
joinable: false
2828
"""
@@ -370,7 +370,7 @@ block t2304:
370370
type TV2[T:SomeNumber] = array[0..1, T]
371371
proc newV2T[T](x, y: T=0): TV2[T] = [x, y]
372372

373-
let x = newV2T[float](0.9, 0.1)
373+
let x = newV2T[float](0.875, 0.125)
374374
echo(@x)
375375

376376

@@ -711,7 +711,7 @@ block t4863:
711711
proc q[j: static[int]](x:H[j]) = echo "H:", j, ":", x.v
712712

713713
var
714-
g0 = G[0,1](v: 0.1)
714+
g0 = G[0,1](v: 0.125)
715715
h0:H[1] = g0
716716
p(g0)
717717
p(h0)

tests/objects/t12753.nim

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
discard """
22
output: '''
3-
(v: [(v: [0.0, 1.1]), (v: [2.2, 3.3])])
4-
(v: [(v: [0.0, 1.1]), (v: [2.2, 3.3])])
3+
(v: [(v: [0.0, 1.125]), (v: [2.25, 3.375])])
4+
(v: [(v: [0.0, 1.125]), (v: [2.25, 3.375])])
55
'''
66
"""
77

@@ -13,7 +13,7 @@ type
1313

1414
var
1515
a = M(v:[ V(v:[0.0,1.0]), V(v:[2.0,3.0]) ])
16-
b = M(v:[ V(v:[0.0,0.1]), V(v:[0.2,0.3]) ])
16+
b = M(v:[ V(v:[0.0,0.125]), V(v:[0.25,0.375]) ])
1717

1818
echo M(v: [V(v: [b.v[0].v[0] + a.v[0].v[0], b.v[0].v[1] + a.v[0].v[1]]),
1919
V(v: [b.v[1].v[0] + a.v[1].v[0], b.v[1].v[1] + a.v[1].v[1]])])

tests/showoff/tdrdobbs_examples.nim

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
discard """
22
output: '''108
33
11 -1 1936
4-
0.4
4+
0.5
55
true
66
truefalse'''
77
"""
@@ -75,7 +75,7 @@ proc evaluate(n: Formula, varToVal: proc (name: string): float): float =
7575
of fkMul: evaluate(n.left, varToVal) * evaluate(n.right, varToVal)
7676
of fkExp: pow(evaluate(n.left, varToVal), evaluate(n.right, varToVal))
7777

78-
echo evaluate(Formula(kind: fkLit, value: 0.4), nil)
78+
echo evaluate(Formula(kind: fkLit, value: 0.5), nil)
7979

8080
proc isPolyTerm(n: Formula): bool =
8181
n.kind == fkMul and n.left.kind == fkLit and (let e = n.right;

tests/system/tostring.nim

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ doAssert """["", "foo", "bar"]""" == $(@["", "foo", "bar"].toOpenArray(0, 2))
1111
# bug #2395
1212
let alphaSet: set[char] = {'a'..'c'}
1313
doAssert "{'a', 'b', 'c'}" == $alphaSet
14-
doAssert "2.3242" == $(2.3242)
15-
doAssert "2.982" == $(2.982)
16-
doAssert "123912.1" == $(123912.1)
17-
doAssert "123912.1823" == $(123912.1823)
1814
doAssert "5.0" == $(5.0)
1915
doAssert "1e+100" == $(1e100)
2016
doAssert "inf" == $(1e1000000)

0 commit comments

Comments
 (0)