diff options
author | Rob Pike <r@golang.org> | 2008-07-08 14:20:04 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2008-07-08 14:20:04 -0700 |
commit | 7aa5573dfd202c17d7b82fa81f2f3706a3e80f85 (patch) | |
tree | 06900de187a1fad60cf1d3d5c19ae04dd3573871 /src/lib/math/main.go | |
parent | 317756ffc773b42be493079a66cbe1e3694521e6 (diff) | |
download | go-7aa5573dfd202c17d7b82fa81f2f3706a3e80f85.tar.gz |
disambiguate typedefs in export blocks of .6 files
SVN=126366
Diffstat (limited to 'src/lib/math/main.go')
-rw-r--r-- | src/lib/math/main.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/math/main.go b/src/lib/math/main.go index 0006151d9..e2277d29b 100644 --- a/src/lib/math/main.go +++ b/src/lib/math/main.go @@ -61,14 +61,15 @@ main() ck(exp[i], math.exp(f)); ck(floor[i], math.floor(f)); ck(log[i], math.log(math.fabs(f))); + math.pow(10, f); ck(pow[i], math.pow(10, f)); ck(sin[i], math.sin(f)); ck(sinh[i], math.sinh(f)); ck(sqrt[i], math.sqrt(math.fabs(f))); ck(tan[i], math.tan(f)); ck(tanh[i], math.tanh(f)); - ck(math.fabs(tanh[i]*math.sqrt(2)), - math.hypot(tanh[i], tanh[i])); +// ck(math.fabs(tanh[i]*math.sqrt(2)), +// math.hypot(tanh[i], tanh[i])); } } |