mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-21 06:39:17 +02:00
Allow asin and acos to return an exact zero result in the R7RS tests
This commit is contained in:
parent
701c752d61
commit
c5f24c64ce
1 changed files with 2 additions and 2 deletions
|
@ -836,9 +836,9 @@
|
||||||
(test 0.0 (inexact (tan 0))) ;; may return exact number
|
(test 0.0 (inexact (tan 0))) ;; may return exact number
|
||||||
(test 1.5574077246549 (tan 1))
|
(test 1.5574077246549 (tan 1))
|
||||||
|
|
||||||
(test 0.0 (asin 0))
|
(test 0.0 (inexact (asin 0))) ;; may return exact number
|
||||||
(test 1.5707963267949 (asin 1))
|
(test 1.5707963267949 (asin 1))
|
||||||
(test 0.0 (acos 1))
|
(test 0.0 (inexact (acos 1))) ;; may return exact number
|
||||||
(test 3.14159265358979 (acos -1))
|
(test 3.14159265358979 (acos -1))
|
||||||
|
|
||||||
(test 0.0 (atan 0.0 1.0))
|
(test 0.0 (atan 0.0 1.0))
|
||||||
|
|
Loading…
Add table
Reference in a new issue