Skip to content

Commit

Permalink
reduce fail probability
Browse files Browse the repository at this point in the history
  • Loading branch information
unixpickle committed Jul 9, 2024
1 parent 54520c6 commit fa859b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions render3d/bidir_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func TestBidirPathTracer(t *testing.T) {
MaxDepth: 10,
NumSamples: 100000,
MinSamples: 1000,
MaxStddev: 0.002,
MaxStddev: 0.0015,
}

groundTruth := NewImage(4, 4)
Expand All @@ -41,7 +41,7 @@ func TestBidirPathTracer(t *testing.T) {
MaxDepth: 10,
NumSamples: 200000,
MinSamples: 1000,
MaxStddev: 0.00175,
MaxStddev: 0.0015,
}

runTest := func(t *testing.T) {
Expand Down

0 comments on commit fa859b8

Please sign in to comment.