What should we add?
Qiskit C++ supports building parameterized circuits, but can not run them. One reason it does not support is QASM3 exporter implemented in QuantumCircuit class
(
|
std::string to_qasm3(void) |
)
does not support parameterized circuit.
- Move
to_qasm3 function to outside of QuantumCircuit class (to other source file)
- implement QASM3 exporter with parameter support
What should we add?
Qiskit C++ supports building parameterized circuits, but can not run them. One reason it does not support is QASM3 exporter implemented in
QuantumCircuitclass(
qiskit-cpp/src/circuit/quantumcircuit_def.hpp
Line 1542 in 91f4b5d
does not support parameterized circuit.
to_qasm3function to outside ofQuantumCircuitclass (to other source file)