You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
Prior to 0.7 the VQE construct_circuit, like the same method in other algorithms, would supply back the circuit the algorithm would running - now parameters or other information might be needed for a variational or iterative algo, but it was a circuit. People are interested in viewing and understanding the circuits the algos are using. None more so than VQE.
In 0.7 construct_circuit is returning an opflow construction. Now while its fine to have that available as well (via a more appropriately name method) it would be nice to have the actual circuit from the construct_circuit method available as was available in the past.
The text was updated successfully, but these errors were encountered:
Hello @woodsp-ibm ,
I am working on it.
I renamed it 'construct_observable_measurement' and created new implementation of 'construct_circuit' that returns a circuit and is called inside 'construct_observable_measurement'.
1) original construct_circuit method is renamed to construct_observable_measurement
2) new implementation of construct_circuit, that returns the actual circuit, and is called as part of the construct_observable_measurement procedure
Prior to 0.7 the VQE construct_circuit, like the same method in other algorithms, would supply back the circuit the algorithm would running - now parameters or other information might be needed for a variational or iterative algo, but it was a circuit. People are interested in viewing and understanding the circuits the algos are using. None more so than VQE.
In 0.7 construct_circuit is returning an opflow construction. Now while its fine to have that available as well (via a more appropriately name method) it would be nice to have the actual circuit from the construct_circuit method available as was available in the past.
The text was updated successfully, but these errors were encountered: