-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathasin.lsp
105 lines (85 loc) · 2.78 KB
/
asin.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
89
90
91
92
93
94
95
96
97
98
99
100
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Wed Feb 11 05:59:43 2004
;;;; Contains: Tests for ASIN
(in-package :cl-test)
(deftest asin.1
(loop for i from -1000 to 1000
for rlist = (multiple-value-list (asin i))
for y = (car rlist)
always (and (null (cdr rlist))
(numberp y)))
t)
(deftest asin.2
(loop for type in '(short-float single-float double-float long-float)
collect
(let ((a (coerce 2000 type))
(b (coerce -1000 type)))
(loop for x = (- (random a) b)
for rlist = (multiple-value-list (asin x))
for y = (car rlist)
repeat 1000
always (and (null (cdr rlist))
(numberp y)))))
(t t t t))
(deftest asin.3
(loop for type in '(integer short-float single-float double-float long-float)
collect
(let ((a (coerce 2000 type))
(b (coerce -1000 type)))
(loop for x = (- (random a) b)
for rlist = (multiple-value-list (asin (complex 0 x)))
for y = (car rlist)
repeat 1000
always (and (null (cdr rlist))
(numberp y)))))
(t t t t t))
(deftest asin.4
(loop for type in '(integer short-float single-float double-float long-float)
collect
(let ((a (coerce 2000 type))
(b (coerce -1000 type)))
(loop for x1 = (- (random a) b)
for x2 = (- (random a) b)
for rlist = (multiple-value-list (asin (complex x1 x2)))
for y = (car rlist)
repeat 1000
always (and (null (cdr rlist))
(numberp y)))))
(t t t t t))
(deftest asin.5
(approx= (asin 1) (coerce (/ pi 2) 'single-float))
t)
(deftest asin.6
(loop for type in '(single-float short-float double-float long-float)
unless (approx= (asin (coerce 1 type))
(coerce (/ pi 2) type))
collect type)
nil)
(deftest asin.7
(loop for type in '(single-float short-float double-float long-float)
unless (approx= (asin (coerce 0 type))
(coerce 0 type))
collect type)
nil)
(deftest asin.8
(loop for type in '(single-float short-float double-float long-float)
unless (approx= (asin (coerce -1 type))
(coerce (/ pi -2) type))
collect type)
nil)
(deftest asin.9
(macrolet ((%m (z) z)) (asin (expand-in-current-env (%m 0.0))))
0.0)
;;; FIXME
;;; Add accuracy tests
;;; Error tests
(deftest asin.error.1
(signals-error (asin) program-error)
t)
(deftest asin.error.2
(signals-error (asin 0.0 0.0) program-error)
t)
(deftest asin.error.3
(check-type-error #'asin #'numberp)
nil)