summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/c/real_prop.expect13
-rw-r--r--test/c/real_prop.sail77
2 files changed, 90 insertions, 0 deletions
diff --git a/test/c/real_prop.expect b/test/c/real_prop.expect
new file mode 100644
index 00000000..980e1fbc
--- /dev/null
+++ b/test/c/real_prop.expect
@@ -0,0 +1,13 @@
+0.5 1/2
+1.0 1
+2.0 2
+2.5 5/2
+0.25 1/4
+0.1 1/10
+0.01 1/100
+0.001 1/1000
+0.0001 1/10000
+0.00001 1/100000
+0.000001 1/1000000
+0.0000001 1/10000000
+ok
diff --git a/test/c/real_prop.sail b/test/c/real_prop.sail
new file mode 100644
index 00000000..0a6cf36f
--- /dev/null
+++ b/test/c/real_prop.sail
@@ -0,0 +1,77 @@
+default Order dec
+
+$include <arith.sail>
+$include <real.sail>
+$include <exception_basic.sail>
+
+val "prerr" : string -> unit
+val "print" : string -> unit
+
+val main : unit -> unit effect {escape}
+
+function main() = {
+ print_real("0.5 ", 0.5);
+ print_real("1.0 ", 1.0);
+ print_real("2.0 ", 2.0);
+ print_real("2.5 ", 2.5);
+ print_real("0.25 ", 0.25);
+ print_real("0.1 ", 0.1);
+ print_real("0.01 ", 0.01);
+ print_real("0.001 ", 0.001);
+ print_real("0.0001 ", 0.0001);
+ print_real("0.00001 ", 0.00001);
+ print_real("0.000001 ", 0.000001);
+ print_real("0.0000001 ", 0.0000001);
+
+ foreach (i from 1 to 1000 by 1 in inc) {
+ let x = random_real();
+ let y = random_real();
+ let z = random_real();
+
+ assert(x + y == y + x, "add_commutative");
+ assert(x + 0.0 == x, "add_unit");
+ assert((x + y) + z == x + (y + z), "add_assoc");
+ assert(x + 1.0 >= x, "add_order");
+
+ assert(x + x == 2.0 * x, "mult_two");
+
+ assert(x * y == y * x, "mul_commutative");
+ assert(x * 1.0 == x, "mul_unit");
+ assert(x * 0.0 == 0.0, "mul_zero");
+ assert((x * y) * z == x * (y * z), "mul_assoc");
+
+ assert(x * (y + z) == (x * y) + (x * z), "mul_left_distrib");
+
+ if not_bool(y == 0.0 | z == 0.0) then {
+ assert((x * y) / y == x, "mul_div_cancel");
+ assert((x + y) / z == (x / z) + (y / z), "div_right_distrib");
+ } else {
+ prerr("avoiding division by zero\n");
+ };
+
+ assert(abs_real(x) >= x, "abs_gteq_1");
+ assert(abs_real(x) >= 0.0, "abs_gteq_2");
+
+ assert(to_real(floor(x)) <= x, "floor_lteq");
+ assert(to_real(ceil(x)) >= x, "ceil_gteq");
+
+ if x >= 0.0 then {
+ assert(abs_real(x) == x, "abs_id")
+ };
+
+ if x > 1.0 then {
+ let s = sqrt(x);
+ assert(s < x, "sqrt_lt");
+ assert(floor(abs_real(s * s - x)) == 0, "sqrt_floor_zero");
+ assert(ceil(abs_real(s * s - x)) == 1, "sqrt_ceil_one");
+ assert(abs_real((s * s) - x) <= 0.000000001, "sqrt_close")
+ };
+
+ assert(to_real(floor(x)) <= x, "floor_lteq");
+ assert(to_real(ceil(x)) >= x, "ceil_gteq");
+ assert(floor(to_real(floor(x))) == floor(x), "floor_to_real");
+ assert(ceil(to_real(ceil(x))) == ceil(x), "floor_to_real");
+ };
+
+ print("ok\n");
+} \ No newline at end of file