From 447b2787445317fdeb7f1a1224622fa365ec63ab Mon Sep 17 00:00:00 2001 From: Yannick Stade <100073938+ystade@users.noreply.github.com> Date: Sat, 8 Jun 2024 17:04:54 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Add=20more=20debug=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cliffordsynthesis/CliffordSynthesizer.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cliffordsynthesis/CliffordSynthesizer.cpp b/src/cliffordsynthesis/CliffordSynthesizer.cpp index 962d8b20..e0cbbcf7 100644 --- a/src/cliffordsynthesis/CliffordSynthesizer.cpp +++ b/src/cliffordsynthesis/CliffordSynthesizer.cpp @@ -519,10 +519,14 @@ void CliffordSynthesizer::depthHeuristicSynthesis() { } std::cout << "Combine Circuits" << std::endl; for (auto& subCircuit : subCircuits) { + std::cout << "I am still here" << std::endl; const auto& circ = subCircuit.get(); + std::cout << "I am still on" << std::endl; for (auto& it : *circ) { + std::cout << "and still on" << std::endl; optCircuit.emplace_back(std::move(it)); } + std::cout << "And done" << std::endl; } std::cout << "Set Results" << std::endl; results.setDepth(optCircuit.getDepth());