Skip to content

Commit

Permalink
sigma
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-aws committed Nov 7, 2023
1 parent 652c9af commit 3563143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Tests.dfy
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module Tests {
{
var empiricalMean := empiricalSum / n as real;
var diff := Abs(empiricalMean - trueMean);
var threshold := 4.0 * 4.0 * trueVariance / n as real;
var threshold := 7.0 * 7.0 * trueVariance / n as real;
if diff * diff > threshold {
print "Test failed: ", description, "\n";
print "Difference between empirical and true mean: ", diff, "\n";
Expand Down

0 comments on commit 3563143

Please sign in to comment.