diff options
| author | Pierre Roux | 2020-01-28 12:43:51 +0100 |
|---|---|---|
| committer | Pierre Roux | 2020-01-28 22:19:27 +0100 |
| commit | 85b3be5f6998287d90acf89de96129571b244cd7 (patch) | |
| tree | 97d8f65bb143e2d69d449857fe2cc1ed5422f8e6 /test-suite/output/QArithSyntax.out | |
| parent | 614643e6fb1b5029d1c2bf50cd51f95d621010cf (diff) | |
Fix #11467
'e' was not displayed when printing decimal notations in R :
Require Import Reals.
Check (1.23e1, 32e+1, 0.1)%R.
was giving
< (123-1%R, 321%R, 1-1%R)
instead of
< (123e-1%R, 32e1%R, 1e-1%R)
This was introduced in #8764 (in Coq 8.10).
Diffstat (limited to 'test-suite/output/QArithSyntax.out')
| -rw-r--r-- | test-suite/output/QArithSyntax.out | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test-suite/output/QArithSyntax.out b/test-suite/output/QArithSyntax.out new file mode 100644 index 0000000000..6bc04f1cef --- /dev/null +++ b/test-suite/output/QArithSyntax.out @@ -0,0 +1,14 @@ +eq_refl : 102e-2 = 102e-2 + : 102e-2 = 102e-2 +eq_refl : 102e-1 = 102e-1 + : 102e-1 = 102e-1 +eq_refl : 1020 = 1020 + : 1020 = 1020 +eq_refl : 102 = 102 + : 102 = 102 +eq_refl : 102e-2 = 102e-2 + : 102e-2 = 102e-2 +eq_refl : -1e-4 = -1e-4 + : -1e-4 = -1e-4 +eq_refl : -50e-2 = -50e-2 + : -50e-2 = -50e-2 |
