R=r
DELTA=150 (147 added, 0 deleted, 3 changed)
OCL=19968
CL=19977
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// $G $F.go && $L $F.$A && (./$A.out || echo BUG: math fails)
-
package math
import (
}
export func Acos(arg float64) float64 {
- if(arg > 1 || arg < -1) {
+ if arg > 1 || arg < -1 {
return sys.NaN();
}
return pio2 - Asin(arg);
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// $G $F.go && $L $F.$A && ./$A.out
-
package time
import (