1 // Copyright 2016 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package math 6 7 // Export internal functions and variable for testing. 8 var Log10NoVec = log10 9 var CosNoVec = cos 10 var CoshNoVec = cosh 11 var SinNoVec = sin 12 var SinhNoVec = sinh 13 var TanhNoVec = tanh 14 var HasVX = hasVX 15