Skip to content

Commit

Permalink
🐛 Add more debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
ystade committed Jun 8, 2024
1 parent cede8f7 commit 447b278
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cliffordsynthesis/CliffordSynthesizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 447b278

Please sign in to comment.