We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This refers to interpreting gate parameters as actual sequences of Quil instructions. For example,
RX(2*a) 0
is presently not very meaningful as a linear list of instructions. It could be interpreted as something like
temp = a temp *= 2 RX(temp) 0
but Quil doesn't say.
The text was updated successfully, but these errors were encountered:
It would be neat to also allow something like: MOVE a 2*pi*b
MOVE a 2*pi*b
Sorry, something went wrong.
No branches or pull requests
This refers to interpreting gate parameters as actual sequences of Quil instructions. For example,
is presently not very meaningful as a linear list of instructions. It could be interpreted as something like
but Quil doesn't say.
The text was updated successfully, but these errors were encountered: