Releases: cda-tum/mqt-qcec
Releases · cda-tum/mqt-qcec
Version 1.6.2 Release
This minor release provides a functioning sdist
for Python distribution.
Version 1.6.1 Release
Minor release
- Switched CI/CD to Github Actions.
- Updated submodules
- Slight modification to Python bindings structure
Version 1.6 Release
v1.6 introduces random stimuli generation methods for the verification of quantum circuits.
It also adds the option of persisting the state vector used for verification methods based on simulation.
Version 1.5 Release
v1.5 adds JKQ QCEC to PyPI---allowing user to install the tool by calling
pip install jkq.qcec
and use it to verify quantum circuits in Python with
from jkq import qcec
qcec.verify([...])
Additionally, configuration options now also include optimization passes applied before equivalence checking:
- swapGateFusion: Reconstruct SWAP operations from elementary operations
- singleQubitGateFusion: Fuse consecutive single qubit gates
- removeDiagonalGatesBeforeMeasure: Remove diagonal gates before measurements
Beta Release for Version 1.5
v1.5 adds JKQ QCEC to PyPI---allowing user to install the tool by calling
pip install jkq.qcec
and use it to verify quantum circuits in Python with
from jkq import qcec
qcec.verify([...])
This beta release tests the CI/CD functionality for automatically building and deploying to PyPI.