From 7229b963e5dc91cefaee8184990642ea5c7c7a95 Mon Sep 17 00:00:00 2001 From: isobelhooper Date: Wed, 14 Aug 2024 12:17:54 +0100 Subject: [PATCH] Fix typo in name of CliffordPushThroughMeasures pass Noticed this typo while testing some code that used sequences of compiler passes. --- tket/src/Predicates/PassGenerators.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tket/src/Predicates/PassGenerators.cpp b/tket/src/Predicates/PassGenerators.cpp index 54b0d98683..e790691009 100644 --- a/tket/src/Predicates/PassGenerators.cpp +++ b/tket/src/Predicates/PassGenerators.cpp @@ -347,7 +347,7 @@ PassPtr gen_clifford_push_through_pass() { PostConditions pc{{}, {}, Guarantee::Preserve}; nlohmann::json j; - j["name"] = "CliffordPushThroughMeausres"; + j["name"] = "CliffordPushThroughMeasures"; return std::make_shared(precons, t, pc, j); }