2017-08-23 20:38:40 -07:00
|
|
|
logmsg Validate basic expressions
|
2016-05-02 20:53:48 -07:00
|
|
|
math 3 / 2
|
|
|
|
math 10/6
|
|
|
|
math -s0 10 / 6
|
2018-07-24 00:00:06 -07:00
|
|
|
math 'floor(10 / 6)'
|
2016-05-02 20:53:48 -07:00
|
|
|
math -s3 10/6
|
|
|
|
math '10 % 6'
|
|
|
|
math -s0 '10 % 6'
|
|
|
|
math '23 % 7'
|
2017-07-14 16:03:31 -07:00
|
|
|
math --scale=6 '5 / 3 * 0.3'
|
2017-08-23 17:32:49 -07:00
|
|
|
math "7^2"
|
2017-07-14 16:03:31 -07:00
|
|
|
math -1 + 1
|
|
|
|
math '-2 * -2'
|
|
|
|
math 5 \* -2
|
|
|
|
math -- -4 / 2
|
|
|
|
math -- '-4 * 2'
|
2017-08-23 20:38:40 -07:00
|
|
|
|
2018-07-24 00:00:06 -07:00
|
|
|
logmsg Validate some integral computations
|
|
|
|
math 1
|
|
|
|
math 10
|
|
|
|
math 100
|
|
|
|
math 1000
|
|
|
|
math '10^15'
|
|
|
|
math '-10^14'
|
|
|
|
math '-10^15'
|
|
|
|
|
|
|
|
math -s0 '1.0 / 2.0'
|
|
|
|
math -s0 '3.0 / 2.0'
|
|
|
|
math -s0 '10^15 / 2.0'
|
|
|
|
|
2017-12-17 12:31:39 -08:00
|
|
|
logmsg Validate how variables in an expression are handled
|
|
|
|
math $x + 1
|
2017-08-23 20:38:40 -07:00
|
|
|
set x 1
|
2017-12-17 12:31:39 -08:00
|
|
|
math $x + 1
|
2017-08-23 20:38:40 -07:00
|
|
|
set x 3
|
|
|
|
set y 1.5
|
2017-12-17 12:31:39 -08:00
|
|
|
math "-$x * $y"
|
2018-07-24 00:00:06 -07:00
|
|
|
math -s0 "-$x * $y"
|
2017-11-24 23:04:44 -08:00
|
|
|
|
|
|
|
logmsg Validate math error reporting
|
2018-02-26 11:25:35 +01:00
|
|
|
not math '2 - '
|
|
|
|
not math 'ncr(1)'
|
2017-11-24 23:04:44 -08:00
|
|
|
not math 'max()'
|
2018-02-26 11:25:35 +01:00
|
|
|
not math 'sin()'
|
2018-02-26 14:00:29 +01:00
|
|
|
not math '2 + 2 4'
|
2018-03-01 22:27:24 +01:00
|
|
|
not math
|
|
|
|
not math -s 12
|
2018-07-24 00:00:06 -07:00
|
|
|
not math 2^999999
|
2018-03-07 18:13:26 +01:00
|
|
|
not math 1 / 0
|