Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
ed490dbe
Commit
ed490dbe
authored
Nov 25, 2008
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add author lines
R=r DELTA=150 (147 added, 0 deleted, 3 changed) OCL=19968 CL=19977
parent
b1297aa0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
5 deletions
+1
-5
src/lib/math/all_test.go
src/lib/math/all_test.go
+0
-2
src/lib/math/asin.go
src/lib/math/asin.go
+1
-1
src/lib/time/time_test.go
src/lib/time/time_test.go
+0
-2
No files found.
src/lib/math/all_test.go
View file @
ed490dbe
...
...
@@ -2,8 +2,6 @@
// 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
(
...
...
src/lib/math/asin.go
View file @
ed490dbe
...
...
@@ -46,7 +46,7 @@ export func Asin(arg float64) float64 {
}
export
func
Acos
(
arg
float64
)
float64
{
if
(
arg
>
1
||
arg
<
-
1
)
{
if
arg
>
1
||
arg
<
-
1
{
return
sys
.
NaN
();
}
return
pio2
-
Asin
(
arg
);
...
...
src/lib/time/time_test.go
View file @
ed490dbe
...
...
@@ -2,8 +2,6 @@
// 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
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment