-
Notifications
You must be signed in to change notification settings - Fork 4
/
asinh.lsp
97 lines (75 loc) · 2.26 KB
/
asinh.lsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Wed Feb 11 19:19:02 2004
;;;; Contains: Tests of ASINH
(in-package :cl-test)
(deftest asinh.1
(let ((result (asinh 0)))
(or (eqlt result 0)
(eqlt result 0.0)))
t)
(deftest asinh.2
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 type)
unless (equal (multiple-value-list (asinh zero))
(list zero))
collect type)
nil)
(deftest asinh.3
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 `(complex ,type))
unless (equal (multiple-value-list (asinh zero))
(list zero))
collect type)
nil)
(deftest asinh.4
(loop for den = (1+ (random 10000))
for num = (random (* 10 den))
for x = (/ num den)
for rlist = (multiple-value-list (asinh x))
for y = (car rlist)
repeat 1000
unless (and (null (cdr rlist))
(numberp y))
collect (list x rlist))
nil)
(deftest asinh.5
(loop for type in '(short-float single-float double-float long-float)
nconc
(loop
for x = (- (random (coerce 20 type)) 10)
for rlist = (multiple-value-list (asinh x))
for y = (car rlist)
repeat 1000
unless (and (null (cdr rlist))
(typep y type))
collect (list x rlist)))
nil)
(deftest asinh.6
(loop for type in '(short-float single-float double-float long-float)
nconc
(loop
for x1 = (- (random (coerce 20 type)) 10)
for x2 = (- (random (coerce 20 type)) 10)
for rlist = (multiple-value-list (asinh (complex x1 x2)))
for y = (car rlist)
repeat 1000
unless (and (null (cdr rlist))
(typep y `(complex ,type)))
collect (list x1 x2 rlist)))
nil)
(deftest asinh.7
(macrolet ((%m (z) z)) (asinh (expand-in-current-env (%m 0.0))))
0.0)
;;; FIXME
;;; Add accuracy tests here
;;; Error tests
(deftest asinh.error.1
(signals-error (asinh) program-error)
t)
(deftest asinh.error.2
(signals-error (asinh 1.0 1.0) program-error)
t)
(deftest asinh.error.3
(check-type-error #'asinh #'numberp)
nil)