Began process of making sliceops godoc compatible

This commit is contained in:
btracey
2013-07-18 16:09:28 -07:00
parent bbe98dbd39
commit 3ebc707c26
2 changed files with 25 additions and 25 deletions

View File

@@ -9,10 +9,10 @@ import (
const (
EQTOLERANCE = 1E-14
SMALL = 10
MEDIUM = 1000
LARGE = 100000
HUGE = 10000000
SMALL = 1E2
MEDIUM = 1E3
LARGE = 1E5
HUGE = 1E7
)
func AreSlicesEqual(t *testing.T, truth, comp []float64, str string) {