Add variable-handling methods to QuantumCircuit
#10962
Closed
+1,369
−63
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This adds all the new
QuantumCircuit
methods discussed in the variable-declaration RFC1, and threads the support for them through the methods that are called in turn, such asQuantumCircuit.append
. It does yet not add support to methods such ascopy
orcompose
, which will be done in a follow-up.The APIs discussed in the RFC necessitated making
Var
nodes hashable. This is done in this commit, as it is logically connected. These nodes now have enforced immutability, which is technically a minor breaking change, but in practice required for the properties of such expressions to be tracked correctly through circuits.A helper attribute
Var.standalone
is added to unify the handling of whether a variable is an old-style existing-memory wrapper, or a new "proper" variable with its own memory.Details and comments
Depends on #10946
Close #10924
Two changelog entries are added for the semi-orthogonal changes, but the main thrust will come as with most things at the end of the epic.
Footnotes
https://github.com/Qiskit/RFCs/pull/50 ↩