Skip to content

Commit

Permalink
Increased benchmark test sample count since we've boosted performance…
Browse files Browse the repository at this point in the history
… with previous optimizations
  • Loading branch information
soroushjp committed Feb 8, 2015
1 parent bed5b51 commit da8ccc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion montecarlo_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
)

const samples = 1000000
const samples = 10000000

func BenchmarkPI(b *testing.B) {
for i := 0; i < b.N; i++ {
Expand Down
2 changes: 1 addition & 1 deletion wrong/montecarlo_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
)

const samples = 1000000
const samples = 10000000

func BenchmarkPI(b *testing.B) {
for i := 0; i < b.N; i++ {
Expand Down

0 comments on commit da8ccc7

Please sign in to comment.