Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(41)

Delta Between Two Patch Sets: src/pkg/math/acosh.go

Issue 4715041: code review 4715041: go/printer: changed max. number of newlines from 3 to 2 (Closed)
Left Patch Set: Created 13 years, 8 months ago
Right Patch Set: diff -r 43f78423340b https://go.googlecode.com/hg/ Created 13 years, 8 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/json/decode.go ('k') | src/pkg/math/asin.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2010 The Go Authors. All rights reserved. 1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package math 5 package math
6
7 6
8 // The original C code, the long comment, and the constants 7 // The original C code, the long comment, and the constants
9 // below are from FreeBSD's /usr/src/lib/msun/src/e_acosh.c 8 // below are from FreeBSD's /usr/src/lib/msun/src/e_acosh.c
10 // and came with this notice. The go code is a simplified 9 // and came with this notice. The go code is a simplified
11 // version of the original C. 10 // version of the original C.
12 // 11 //
13 // ==================================================== 12 // ====================================================
14 // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. 13 // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
15 // 14 //
16 // Developed at SunPro, a Sun Microsystems, Inc. business. 15 // Developed at SunPro, a Sun Microsystems, Inc. business.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 case x == 1: 52 case x == 1:
54 return 0 53 return 0
55 case x >= Large: 54 case x >= Large:
56 return Log(x) + Ln2 // x > 2**28 55 return Log(x) + Ln2 // x > 2**28
57 case x > 2: 56 case x > 2:
58 return Log(2*x - 1/(x+Sqrt(x*x-1))) // 2**28 > x > 2 57 return Log(2*x - 1/(x+Sqrt(x*x-1))) // 2**28 > x > 2
59 } 58 }
60 t := x - 1 59 t := x - 1
61 return Log1p(t + Sqrt(2*t+t*t)) // 2 >= x > 1 60 return Log1p(t + Sqrt(2*t+t*t)) // 2 >= x > 1
62 } 61 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b