All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog. Right now this project is in Beta and does not yet follow Semantic Versioning.
- Mac users can now Command-click instead of Ctrl-click in the editor.
- Added
Graph.to_tikz
andGraph.from_tikz
functions in order to convert ZX-diagrams to and from a tikz file. - Can now compose
Graph
instances using the*
operator. - Added function
Graph.add_edge_smart
as a convenience wrapper forGraph.add_edge_table
. - Added
Graph.auto_detect_io
as an alias ofGraph.auto_detect_inputs
, perhaps deprecating the old function at some point. - Added top-level scalar magic constants
ONE, SQRT_TWO, TWO, SQRT_TWO_INV, TWO_INV
in order to more easily set the value ofg.scalar
forGraph
instances.
- Changed default behaviour of
preserve_scalar
argument incompare_tensors
: now always defaults toFalse
. Circuit.verify_equality
now doesn't say SWAP is equal to the identity. Added an argument to get back the original behaviour.- Changed the output of
zx.draw
slightly: more visible labels, more colourblind friendly colours.
- Fixed several bugs in the rewriting with functions in
editor_actions.py
- Fixed bug where Graph.num_edges() wouldn't return correct number of edges.
- Fixed error that occurred when running pyzx from a different drive than the install drive on Windows.
- Fixed several bugs in
hsimplify.hpivot_simp
. - Fixed exception when entering negative phase in editor.
This release has made many backwards incompatible changes to the API in order to remove some old functions and rename other functions to more logical or consistent names. In particular, all British spelling names have been renamed to American spelling names. After this release the API should be significantly more stable.
The license for this project has been changed from GPLv3 to Apache2, in order to streamline the process of using PyZX with other open-source quantum computing projects.
- All functions now have typing hints, and mypy runs successfully on PyZX.
- ZX-diagram editor that runs in a Jupyter notebook. See the documentation for the details.
- New function
zx.matrix_to_latex
to pretty-print a numpy matrix (useful in Jupyter notebook in combination withipywidgets.Label
). - There is now a
zx.settings
object that stores some global values that affect how PyZX draws stuff, and how it interacts with external executables. - Added
zx.draw_d3
andzx.draw_matplotlib
to account for new behaviour ofzx.draw
.
- Circuit extraction algorithm has been updated to use the one from the There and back again paper.
- Main circuit extraction function has been renamed from
zx.extract.streaming_extract
tozx.extract_circuit
. zx.draw
now intelligently changes whether to use d3 or matplotlib. Setting can be changed usingzx.settings.drawing_backend
.- The official language of PyZX is now American English, instead of a mix of British and American english.
g.normalise()
has been renamed tog.normalize()
.g.neighbours()
has been renamed tog.neighbors()
.- The various functions for converting ZX-diagrams into json or other formats now have become methods of the Graph instance themselves. I.e.
g.to_json()
instead ofzx.io.graph_to_json(g)
andGraph.from_json(js)
instead ofzx.io.json_to_graph(js)
. g.auto_detect_inputs()
is now smarter, and turns any boundary node that 'points right' into an input, and similarly for outputs.zx.compare_tensors
now automatically only checks equality up to scalar if one of the arguments is a Circuit.add_edge_table
function inBaseGraph
now supports more operations involving H-boxes, so that ZH-calculus simplifications can apply to more diagrams.- Numerous small bugfixes that were found as a result of mypy type-checking that probably weren't affecting any existing code.
- Several files and functions that weren't being used and only caused confusion to new users, including
phasepoly.py
, and all the*_threaded
functions fromsimplify.py
- Removed support for running PyZX inside of Quantomatic, as this functionality probably didn't work anyway (since PyZX now used Python3 functionality).
zx.d3.draw
is deprecated. Usezx.draw
orzx.draw_d3
instead.zx.extract.streaming_extract
is deprecated. Usezx.extract_circuit
instead.
Hotfix release to fix syntax error that prevented scripts from being called.
First PyPI release.