Skip to content
This repository has been archived by the owner on Dec 22, 2018. It is now read-only.

Commit

Permalink
Fix name and test
Browse files Browse the repository at this point in the history
  • Loading branch information
btracey committed Oct 25, 2016
1 parent d3c96ed commit e782a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions distmv/studentst_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func TestStudentsTRand(t *testing.T) {
mean: []float64{0, 0},
cov: mat64.NewSymDense(2, []float64{1, 0, 0, 1}),
nu: 3,
tolcov: 5e-2,
tolcov: 1e-2,
},
{
mean: []float64{3, 4},
Expand All @@ -113,7 +113,7 @@ func TestStudentsTRand(t *testing.T) {
if !ok {
t.Fatal("bad test")
}
nSamples := 1000000
nSamples := 10000000
dim := len(test.mean)
samps := mat64.NewDense(nSamples, dim, nil)
for i := 0; i < nSamples; i++ {
Expand Down

0 comments on commit e782a2f

Please sign in to comment.