diff --git a/supermarq-benchmarks/supermarq/qcvv/irb_test.py b/supermarq-benchmarks/supermarq/qcvv/irb_test.py index ae8e66e95..550a076ae 100644 --- a/supermarq-benchmarks/supermarq/qcvv/irb_test.py +++ b/supermarq-benchmarks/supermarq/qcvv/irb_test.py @@ -300,6 +300,20 @@ def test_analyse_results(irb_experiment: IRB) -> None: "0": 0.5 * 0.8**1 + 0.5 - 0.00000015, "1": 0.5 - 0.5 * 0.8**1 + 0.00000015, }, + { + "clifford_depth": 2, + "circuit_depth": 3, + "experiment": "RB", + "0": 0.5 * 0.95**2 + 0.5 + 0.0000011, + "1": 0.5 - 0.5 * 0.95**2 - 0.0000011, + }, + { + "clifford_depth": 2, + "circuit_depth": 4, + "experiment": "IRB", + "0": 0.5 * 0.8**2 + 0.5 - 0.00000017, + "1": 0.5 - 0.5 * 0.8**2 + 0.00000017, + }, { "clifford_depth": 5, "circuit_depth": 6, @@ -356,6 +370,13 @@ def test_analyse_results_rb() -> None: "0": 0.5 * 0.95**1 + 0.5 - 0.0000001, "1": 0.5 - 0.5 * 0.95**1 + 0.0000001, }, + { + "clifford_depth": 3, + "circuit_depth": 4, + "experiment": "RB", + "0": 0.5 * 0.95**3 + 0.5 - 0.0000003, + "1": 0.5 - 0.5 * 0.95**3 + 0.0000003, + }, { "clifford_depth": 5, "circuit_depth": 6,