-
Notifications
You must be signed in to change notification settings - Fork 4
/
atan.lsp
153 lines (127 loc) · 4.17 KB
/
atan.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
;-*- Mode: Lisp -*-
;;;; Author: Paul Dietz
;;;; Created: Wed Feb 11 06:01:55 2004
;;;; Contains: Tests of ATAN
(in-package :cl-test)
(deftest atan.1
(let ((result (atan 0)))
(or (eqlt result 0)
(eqlt result 0.0)))
t)
(deftest atan.2
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 type)
unless (eql (atan zero) zero)
collect type)
nil)
(deftest atan.3
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 type)
unless (eql (atan zero 1) zero)
collect type)
nil)
(deftest atan.4
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 type)
for one = (coerce 1 type)
unless (eql (atan 0 one) zero)
collect type)
nil)
(deftest atan.5
(loop for type in '(short-float single-float double-float long-float)
for zero = (coerce 0 type)
for one = (coerce 1 type)
unless (eql (atan zero one) zero)
collect type)
nil)
(deftest atan.6
(loop for type in '(short-float single-float double-float long-float)
for a = (coerce 2000 type)
for b = (coerce -1000 type)
collect
(loop for x = (- (random a) b)
for rlist = (multiple-value-list (atan x))
for y = (car rlist)
repeat 1000
unless (and (null (cdr rlist))
(typep y type))
collect (list x rlist)))
(nil nil nil nil))
(deftest atan.7
(loop for type in '(short-float single-float double-float long-float)
for a = (coerce 2000 type)
for b = (coerce -1000 type)
for zero = (coerce 0 type)
collect
(loop for x = (- (random a) b)
for rlist = (multiple-value-list (atan (complex x zero)))
for y = (car rlist)
repeat 1000
unless (and (null (cdr rlist))
(typep y `(complex ,type)))
collect (list x rlist)))
(nil nil nil nil))
(deftest atan.8
(loop for type in '(short-float single-float double-float long-float)
for a = (coerce 2000 type)
for b = (coerce -1000 type)
for zero = (coerce 0 type)
collect
(loop for x = (- (random a) b)
for rlist = (multiple-value-list (atan (complex zero x)))
for y = (car rlist)
repeat 1000
unless (and (null (cdr rlist))
(typep y `(complex ,type)))
collect (list x rlist)))
(nil nil nil nil))
(deftest atan.9
(loop for type in '(short-float single-float double-float long-float)
for a = (coerce 2000 type)
for b = (coerce -1000 type)
for zero = (coerce 0 type)
collect
(loop for x1 = (- (random a) b)
for x2 = (- (random a) b)
for rlist = (multiple-value-list (atan (complex x1 x2)))
for y = (car rlist)
repeat 1000
unless (and (null (cdr rlist))
(typep y `(complex ,type)))
collect (list x1 x2 rlist)))
(nil nil nil nil))
(deftest atan.10
(approx= (atan 1) (coerce (/ pi 4) 'single-float))
t)
(deftest atan.11
(loop for type in '(short-float single-float double-float long-float)
collect (approx= (atan (coerce 1 type)) (coerce (/ pi 4) type)))
(t t t t))
(deftest atan.12
(approx= (atan -1) (coerce (/ pi -4) 'single-float))
t)
(deftest atan.13
(loop for type in '(short-float single-float double-float long-float)
collect (approx= (atan (coerce -1 type)) (coerce (/ pi -4) type)))
(t t t t))
(deftest atan.14
(macrolet ((%m (z) z)) (atan (expand-in-current-env (%m 0.0))))
0.0)
;;; FIXME
;;; More accuracy tests here
;;; Error tests
(deftest atan.error.1
(signals-error (atan) program-error)
t)
(deftest atan.error.2
(signals-error (atan 1 1 1) program-error)
t)
(deftest atan.error.3
(check-type-error #'atan #'numberp)
nil)
(deftest atan.error.4
(check-type-error #'(lambda (x) (atan x 1)) #'realp)
nil)
(deftest atan.error.5
(check-type-error #'(lambda (x) (atan 1 x)) #'realp)
nil)