From 37cec73009b12319d851af937fe3e1608fb34e9b Mon Sep 17 00:00:00 2001 From: Silas Dilkes <36165522+sjdilkes@users.noreply.github.com> Date: Tue, 12 Nov 2024 10:38:06 +0000 Subject: [PATCH] Update test_GreedyPauli.cpp --- tket/test/src/test_GreedyPauli.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tket/test/src/test_GreedyPauli.cpp b/tket/test/src/test_GreedyPauli.cpp index 9696ecb611..28f8dee277 100644 --- a/tket/test/src/test_GreedyPauli.cpp +++ b/tket/test/src/test_GreedyPauli.cpp @@ -762,20 +762,6 @@ SCENARIO("Test GreedyPauliSimp pass construction") { } SCENARIO("Test GreedyPauliSimpMT") { - GIVEN("Circuit with measures, classicals, and resets") { - Circuit circ(3, 1); - circ.add_box( - PauliExpBox(SymPauliTensor({Pauli::X, Pauli::Z, Pauli::Z}, 0.3)), - {0, 1, 2}); - circ.add_op(OpType::Measure, {0, 0}); - circ.add_op(ClassicalX(), {0}); - circ.add_op(OpType::Reset, {1}); - REQUIRE(Transforms::multi_thread_greedy_pauli_optimisation(3).apply(circ)); - REQUIRE(circ.count_n_qubit_gates(2) == 4); - REQUIRE(circ.count_gates(OpType::ClassicalTransform) == 1); - REQUIRE(circ.count_gates(OpType::Measure) == 1); - REQUIRE(circ.count_gates(OpType::Reset) == 1); - } GIVEN("Large circuit with ZZPhase") { Circuit circ(6); circ.add_box(