mirror of
https://github.com/golang/go
synced 2024-11-17 01:44:52 -07:00
944a9c7a4f
This is a minor follow-up on https://golang.org/cl/153059. TBR=iant Updates #6794. Change-Id: I03657dafc572959d46a03f86bbeb280825bc969d Reviewed-on: https://go-review.googlesource.com/c/153845 Reviewed-by: Robert Griesemer <gri@golang.org>
15 lines
357 B
Go
15 lines
357 B
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package math
|
|
|
|
// Export internal functions for testing.
|
|
var ExpGo = exp
|
|
var Exp2Go = exp2
|
|
var HypotGo = hypot
|
|
var SqrtGo = sqrt
|
|
var TrigReduce = trigReduce
|
|
|
|
const ReduceThreshold = reduceThreshold
|