rpn/test/06-real.txt

58 lines
610 B
Text
Raw Normal View History

2017-05-13 12:08:41 +02:00
## REAL representation
2017-05-27 18:38:57 +02:00
default erase
# std (1)
2017-05-13 12:08:41 +02:00
erase
1
10 std
-> stack should be 1
2017-05-27 18:38:57 +02:00
# std (2)
2017-05-13 12:08:41 +02:00
3 /
-> stack should be 0.3333333333
2017-05-27 18:38:57 +02:00
# std (3)
2017-05-13 12:08:41 +02:00
3 std
-> stack should be 0.333
2017-05-27 18:38:57 +02:00
# fix (1)
2017-05-13 12:08:41 +02:00
drop
10 fix
1
-> stack should be 1.0000000000
2017-05-27 18:38:57 +02:00
# fix (2)
2017-05-13 12:08:41 +02:00
4 fix
-> stack should be 1.0000
2017-05-27 18:38:57 +02:00
# sci (1)
2017-05-13 12:08:41 +02:00
12 sci
-> stack should be 1.000000000000e+00
2017-05-27 18:38:57 +02:00
# sci (2)
2017-05-13 12:08:41 +02:00
2 sci
-> stack should be 1.00e+00
drop
2017-05-27 18:38:57 +02:00
# prec (1)
default
2 prec pi
-> stack should be 3
drop
# prec (2)
10 prec pi
-> stack should be 3.140625
drop
# prec error (1)
1 prec
-> error should be 4
# prec error (2)
0x8000000000000000 prec
-> error should be 4
2017-05-13 12:08:41 +02:00
default