diff options
Diffstat (limited to 'libgo/go/math/huge_test.go')
-rw-r--r-- | libgo/go/math/huge_test.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libgo/go/math/huge_test.go b/libgo/go/math/huge_test.go index 0b45dbf..9448edc 100644 --- a/libgo/go/math/huge_test.go +++ b/libgo/go/math/huge_test.go @@ -16,6 +16,10 @@ import ( // Inputs to test trig_reduce var trigHuge = []float64{ + 1 << 28, + 1 << 29, + 1 << 30, + 1 << 35, 1 << 120, 1 << 240, 1 << 480, @@ -29,6 +33,10 @@ var trigHuge = []float64{ // 102 decimal digits (1 << 120, 1 << 240, 1 << 480, 1234567891234567 << 180) // were confirmed via https://keisan.casio.com/ var cosHuge = []float64{ + -0.16556897949057876, + -0.94517382606089662, + 0.78670712294118812, + -0.76466301249635305, -0.92587902285483787, 0.93601042593353793, -0.28282777640193788, @@ -38,6 +46,10 @@ var cosHuge = []float64{ } var sinHuge = []float64{ + -0.98619821183697566, + 0.32656766301856334, + -0.61732641504604217, + -0.64443035102329113, 0.37782010936075202, -0.35197227524865778, 0.95917070894368716, @@ -47,6 +59,10 @@ var sinHuge = []float64{ } var tanHuge = []float64{ + 5.95641897939639421, + -0.34551069233430392, + -0.78469661331920043, + 0.84276385870875983, -0.40806638884180424, -0.37603456702698076, -3.39135965054779932, |