Skip to content

Commit

Permalink
Spell "ZX-calculus" consistently with a hyphen.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlyongemallo committed Nov 9, 2023
1 parent c249b7d commit 9468f72
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The [ZX calculus](http://zxcalculus.com) gives us a handy way to represent and work with quantum computations. ZXLive is an interactive tool for working with ZX. Draw graphs or load circuits and apply ZX rules. Intended for experimenting, building proofs, helping to write papers, showing off, or simply learning about ZX and quantum computing. It is powered by the [pyzx](https://github.com/Quantomatic/pyzx) open source library under the hood.
The [ZX-calculus](http://zxcalculus.com) gives us a handy way to represent and work with quantum computations. ZXLive is an interactive tool for working with ZX. Draw graphs or load circuits and apply ZX rules. Intended for experimenting, building proofs, helping to write papers, showing off, or simply learning about ZX and quantum computing. It is powered by the [pyzx](https://github.com/Quantomatic/pyzx) open source library under the hood.

This project is in a pretty early stage, with lots more to come. Have a look at the [Issue Tracker](https://github.com/Quantomatic/zxlive/issues) to see what's in the pipeline.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "zxlive"
version = "0.1"
description = "An interactive tool for the ZX calculus"
description = "An interactive tool for the ZX-calculus"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion test/test_editor_base_panel.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion test/test_mainwindow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion zxlive/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion zxlive/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
4 changes: 2 additions & 2 deletions zxlive/app.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -39,7 +39,7 @@ def __init__(self) -> None:
self.lastWindowClosed.connect(self.quit)

parser = QCommandLineParser()
parser.setApplicationDescription("ZXLive - An interactive tool for the ZX calculus")
parser.setApplicationDescription("ZXLive - An interactive tool for the ZX-calculus")
parser.addHelpOption()
parser.addVersionOption()
parser.addPositionalArgument("files", "File(s) to open.", "[files...]")
Expand Down
2 changes: 1 addition & 1 deletion zxlive/eitem.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion zxlive/graphscene.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion zxlive/graphview.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion zxlive/mainwindow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion zxlive/settings_dialog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion zxlive/vitem.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zxlive - An interactive tool for the ZX calculus
# zxlive - An interactive tool for the ZX-calculus
# Copyright (C) 2023 - Aleks Kissinger
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down

0 comments on commit 9468f72

Please sign in to comment.