From 81b8a0cc57ef620d84ceb17cfdc26a7452d3ba17 Mon Sep 17 00:00:00 2001 From: Alec Edgington Date: Thu, 10 Mar 2022 11:38:54 +0000 Subject: [PATCH] clang-format --- tket/src/Predicates/Predicates.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tket/src/Predicates/Predicates.cpp b/tket/src/Predicates/Predicates.cpp index b0fa53a732..a2652bcdc8 100644 --- a/tket/src/Predicates/Predicates.cpp +++ b/tket/src/Predicates/Predicates.cpp @@ -334,7 +334,7 @@ bool ConnectivityPredicate::implies(const Predicate& other) const { const Architecture& arc1 = arch_; const Architecture& arc2 = other_c.arch_; // Check that all nodes in arc1 are in arc2: - for (const Node &n : arc1.get_all_nodes_vec()) { + for (const Node& n : arc1.get_all_nodes_vec()) { if (!arc2.node_exists(n)) { return false; }