Skip to content

Commit 3aa0f28

Browse files
Finalize confirm_paper_results.py for updating manuscript
1 parent c3005f7 commit 3aa0f28

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

scripts/paper_results/confirm_paper_results.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,25 @@
5959
lai_hardware_50 = MirroredLaiTest(
6060
alternative=Hypothesis.P0LessThanP1, n_max=50, alpha=0.05
6161
)
62+
lai_hardware_50.calibrate_c()
63+
6264
lai_hardware_200 = MirroredLaiTest(
6365
alternative=Hypothesis.P0LessThanP1, n_max=200, alpha=0.05
6466
)
65-
lai_hardware_200.set_c(0.00014741399676752065)
67+
lai_hardware_200.calibrate_c()
68+
# lai_hardware_200.set_c(0.00014741399676752065)
6669

6770
lai_hardware_500 = MirroredLaiTest(
6871
alternative=Hypothesis.P0LessThanP1, n_max=500, alpha=0.05
6972
)
70-
lai_hardware_500.set_c(5.349419043278717e-05)
73+
lai_hardware_500.calibrate_c()
74+
# lai_hardware_500.set_c(5.349419043278717e-05)
7175

7276
lai_simulation_500 = MirroredLaiTest(
7377
alternative=Hypothesis.P0LessThanP1, n_max=500, alpha=0.01
7478
)
75-
lai_simulation_500.set_c(1.184327928758278e-05)
79+
lai_simulation_500.calibrate_c()
80+
# lai_simulation_500.set_c(1.184327928758278e-05)
7681

7782
# Load STEP tests
7883
step_random_seed = 42

0 commit comments

Comments
 (0)