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
Users should be able to export their circuits either with a custom QuantumContext implementation or a new abstraction (e.g., QuantumExporter).
QuantumContext
QuantumExporter
If we decide to go down the path of extending QuantumContext then run's signature should change to something like:
run
sealed trait Result trait State extends Result trait ExportedCircuit extends Result case class QuantumContext[T <: Result] { run(): T // ... }
Might be a better idea to just have QuantumExporter, since it's enough of a separate use case.
Initial exporter implementations should have Quil and OpenQASM support.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Users should be able to export their circuits either with a custom
QuantumContext
implementation or a new abstraction (e.g.,QuantumExporter
).If we decide to go down the path of extending
QuantumContext
thenrun
's signature should change to something like:Might be a better idea to just have
QuantumExporter
, since it's enough of a separate use case.Initial exporter implementations should have Quil and OpenQASM support.
The text was updated successfully, but these errors were encountered: