This repository was archived by the owner on Mar 7, 2024. It is now read-only.
entanglement-forging v0.2.0 is released to PyPI #57
caleb-johnson
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
entanglement-forging v0.2.0 is released to PyPI.
To get the latest entanglement forging package, install from pip:
pip install --upgrade entanglement-forging
Note that your version of qiskit-nature may have been upgraded when installing the new entanglement forging release. Some common packages have been removed from qiskit-nature in recent releases, and your old scripts may not run after upgrading. A couple of changes that many will have to make:
from qiskit_nature.drivers import PySCFDriver
should become
from qiskit_nature.drivers.second_quantization import PySCFDriver
driver = PySCFDriver(molecule=..., basis=...)
should become
driver = PySCFDriver.from_molecule(molecule=..., basis=...)
Once you have verified your old scripts run with the new forging release, you can check out the latest feature -- the ability to specify different bitstring lists for each of the subsystems, U and V.
Now, anywhere "bitstrings" used to be specified, "bitstrings_u" should be specified, and "bitstrings_v" may optionally be specified. For example, the EFGroundStateSolver can now be instantiated like this:
Please let us know if you have any issues or questions!
Beta Was this translation helpful? Give feedback.
All reactions