2018-01-26 20:20:12 -08:00
|
|
|
#..
|
|
|
|
Tests for the stuff defined in lib/control_flow.nom
|
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
use "core"
|
2018-01-26 20:20:12 -08:00
|
|
|
|
|
|
|
assume (all of [inf, pi, tau, golden ratio, e]) or barf "math constants failed"
|
|
|
|
%nan <- (NaN)
|
|
|
|
assume (%nan != %nan) or barf "NaN failed"
|
|
|
|
assume (("5" as a number) = 5)
|
|
|
|
assume
|
|
|
|
all of [..]
|
|
|
|
abs 5, |5|, sqrt 5, √(5), sine 5, cosine 5, tangent 5, arc sine 5, arc cosine 5,
|
|
|
|
arc tangent 5, arc tangent 5/10, hyperbolic sine 5, hyperbolic cosine 5,
|
2018-06-14 21:59:25 -07:00
|
|
|
hyperbolic tangent 5, e^5, ln 5, log base 2 of 5, floor 5, ceiling 5, round 5,
|
2018-01-26 20:20:12 -08:00
|
|
|
..or barf "math functions failed"
|
|
|
|
assume ((463 to the nearest 100) = 500) or barf "rounding failed"
|
|
|
|
assume ((2.6 to the nearest 0.25) = 2.5) or barf "rounding failed"
|
2018-05-27 18:28:23 -07:00
|
|
|
assume ((min of [3,-4,1,2] by % = (%*%)) = 1)
|
|
|
|
assume ((max of [3,-4,1,2] by % = (%*%)) = -4)
|
2018-02-02 15:48:28 -08:00
|
|
|
|
|
|
|
say "Math test passed"
|