graphqomb 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. graphqomb-0.1.0/LICENSE +21 -0
  2. graphqomb-0.1.0/PKG-INFO +258 -0
  3. graphqomb-0.1.0/README.md +209 -0
  4. graphqomb-0.1.0/docs/requirements.txt +5 -0
  5. graphqomb-0.1.0/graphqomb/__init__.py +1 -0
  6. graphqomb-0.1.0/graphqomb/circuit.py +271 -0
  7. graphqomb-0.1.0/graphqomb/command.py +110 -0
  8. graphqomb-0.1.0/graphqomb/common.py +399 -0
  9. graphqomb-0.1.0/graphqomb/euler.py +318 -0
  10. graphqomb-0.1.0/graphqomb/feedforward.py +149 -0
  11. graphqomb-0.1.0/graphqomb/focus_flow.py +201 -0
  12. graphqomb-0.1.0/graphqomb/gates.py +1272 -0
  13. graphqomb-0.1.0/graphqomb/graphstate.py +805 -0
  14. graphqomb-0.1.0/graphqomb/matrix.py +52 -0
  15. graphqomb-0.1.0/graphqomb/pattern.py +263 -0
  16. graphqomb-0.1.0/graphqomb/pauli_frame.py +129 -0
  17. graphqomb-0.1.0/graphqomb/qompiler.py +131 -0
  18. graphqomb-0.1.0/graphqomb/random_objects.py +82 -0
  19. graphqomb-0.1.0/graphqomb/rng.py +40 -0
  20. graphqomb-0.1.0/graphqomb/schedule_solver.py +230 -0
  21. graphqomb-0.1.0/graphqomb/scheduler.py +323 -0
  22. graphqomb-0.1.0/graphqomb/simulator.py +230 -0
  23. graphqomb-0.1.0/graphqomb/simulator_backend.py +275 -0
  24. graphqomb-0.1.0/graphqomb/statevec.py +296 -0
  25. graphqomb-0.1.0/graphqomb/visualizer.py +567 -0
  26. graphqomb-0.1.0/graphqomb.egg-info/PKG-INFO +258 -0
  27. graphqomb-0.1.0/graphqomb.egg-info/SOURCES.txt +42 -0
  28. graphqomb-0.1.0/graphqomb.egg-info/dependency_links.txt +1 -0
  29. graphqomb-0.1.0/graphqomb.egg-info/requires.txt +19 -0
  30. graphqomb-0.1.0/graphqomb.egg-info/top_level.txt +1 -0
  31. graphqomb-0.1.0/pyproject.toml +160 -0
  32. graphqomb-0.1.0/requirements-dev.txt +6 -0
  33. graphqomb-0.1.0/requirements.txt +5 -0
  34. graphqomb-0.1.0/setup.cfg +4 -0
  35. graphqomb-0.1.0/tests/test_circuit.py +377 -0
  36. graphqomb-0.1.0/tests/test_common.py +52 -0
  37. graphqomb-0.1.0/tests/test_euler.py +175 -0
  38. graphqomb-0.1.0/tests/test_feedforward.py +82 -0
  39. graphqomb-0.1.0/tests/test_focus_flow.py +51 -0
  40. graphqomb-0.1.0/tests/test_gate.py +128 -0
  41. graphqomb-0.1.0/tests/test_graphstate.py +287 -0
  42. graphqomb-0.1.0/tests/test_scheduler_integration.py +375 -0
  43. graphqomb-0.1.0/tests/test_simulator_backend.py +194 -0
  44. graphqomb-0.1.0/tests/test_statevec.py +533 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Masato Fukushima and Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,258 @@
1
+ Metadata-Version: 2.4
2
+ Name: graphqomb
3
+ Version: 0.1.0
4
+ Summary: A modular Graph State qompiler for measurement-based quantum computing.
5
+ Author: Yuki Watanabe, Daichi Sasaki
6
+ Author-email: Masato Fukushima <masa1063fuk@gmail.com>
7
+ Maintainer-email: Masato Fukushima <masa1063fuk@gmail.com>
8
+ License: MIT
9
+ Project-URL: Homepage, https://github.com/TeamGraphix/graphqomb
10
+ Project-URL: Documentation, https://graphqomb.readthedocs.io/
11
+ Project-URL: Repository, https://github.com/TeamGraphix/graphqomb
12
+ Project-URL: Changelog, https://github.com/TeamGraphix/graphqomb/blob/master/CHANGELOG.md
13
+ Project-URL: Bug Tracker, https://github.com/TeamGraphix/graphqomb/issues
14
+ Keywords: quantum computing,MBQC,measurement-based quantum computing,quantum compilation,fault-tolerant quantum computing,graph state
15
+ Classifier: Development Status :: 4 - Beta
16
+ Classifier: Intended Audience :: Science/Research
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: License :: OSI Approved :: MIT License
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Topic :: Scientific/Engineering :: Physics
26
+ Classifier: Topic :: Scientific/Engineering :: Quantum Computing
27
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
28
+ Requires-Python: <3.14,>=3.9
29
+ Description-Content-Type: text/markdown
30
+ License-File: LICENSE
31
+ Requires-Dist: numpy<3,>=1.22
32
+ Requires-Dist: matplotlib
33
+ Requires-Dist: networkx
34
+ Requires-Dist: ortools<10,>=9
35
+ Requires-Dist: typing_extensions
36
+ Provides-Extra: dev
37
+ Requires-Dist: ruff==0.14.1; extra == "dev"
38
+ Requires-Dist: mypy==1.18.2; extra == "dev"
39
+ Requires-Dist: pyright==1.1.406; extra == "dev"
40
+ Requires-Dist: pytest==8.4.2; extra == "dev"
41
+ Requires-Dist: pytest-cov; extra == "dev"
42
+ Requires-Dist: types-networkx; extra == "dev"
43
+ Provides-Extra: doc
44
+ Requires-Dist: sphinx>=7.4.0; extra == "doc"
45
+ Requires-Dist: sphinx_gallery>=0.17.0; extra == "doc"
46
+ Requires-Dist: furo>=2024.01.29; extra == "doc"
47
+ Requires-Dist: matplotlib>=3.7.0; extra == "doc"
48
+ Dynamic: license-file
49
+
50
+ # GraphQOMB
51
+
52
+ ![License](https://img.shields.io/github/license/TeamGraphix/graphqomb)
53
+ [![PyPI version](https://badge.fury.io/py/graphqomb.svg)](https://badge.fury.io/py/graphqomb)
54
+ [![Python Versions](https://img.shields.io/pypi/pyversions/graphqomb.svg)](https://pypi.org/project/graphqomb/)
55
+ [![Documentation Status](https://readthedocs.org/projects/graphqomb/badge/?version=latest)](https://graphqomb.readthedocs.io/en/latest/?badge=latest)
56
+ [![pytest](https://github.com/TeamGraphix/graphqomb/actions/workflows/pytest.yml/badge.svg)](https://github.com/TeamGraphix/graphqomb/actions/workflows/pytest.yml)
57
+ [![typecheck](https://github.com/TeamGraphix/graphqomb/actions/workflows/typecheck.yml/badge.svg)](https://github.com/TeamGraphix/graphqomb/actions/workflows/typecheck.yml)
58
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
59
+
60
+ **GraphQOMB** (Qompiler for Measurement-Based Quantum Computing) is a comprehensive reimplementation of the [graphix](https://github.com/TeamGraphix/graphix). Our package compiles ZX-diagrams with optional feedforward strategy into measurement patterns with Pauli frame tracking.
61
+
62
+ ## Features
63
+
64
+ ### Computation Design
65
+
66
+ - **ZX-Calculus Integration**: Use ZX-diagrams as an abstract expression of measurement pattern
67
+ - **Feedforward Strategy Design**: Our library accepts general feedforward strategy and optimization, eliminating the necessity of measurement calculus
68
+ - **Scheduler**: Scheduling the node preparation and measurement time
69
+
70
+ ### Compilation
71
+
72
+ - **MBQC Pattern Generation**: Measurement pattern is treated as a quantum assembly
73
+ - **Pauli Frame Tracking**: Manage all the classical feedforward with Pauli Frame, enabling fault-tolerant computing as well
74
+
75
+ ### Simulation
76
+
77
+ - **Pattern Simulation**: Simulate measurement patterns with statevector backend
78
+ - **Simulation in Stim circuit**: Generate a stim circuit implementing a fault-tolerant MBQC
79
+
80
+ ### Others
81
+
82
+ - **Transpilation into Graphix Pattern**: Transpile generated pattern into `graphix.pattern.Pattern` object for variety of execution backend (WIP)
83
+ - **Visualization**: Visualize graph states
84
+
85
+ ## Installation
86
+
87
+ ### From PyPI (Recommended)
88
+
89
+ ```bash
90
+ pip install graphqomb
91
+ ```
92
+
93
+ ### From Source (Development)
94
+
95
+ ```bash
96
+ git clone https://github.com/TeamGraphix/graphqomb.git
97
+ cd graphqomb/
98
+ pip install -e .
99
+ ```
100
+
101
+ Install with development dependencies:
102
+
103
+ ```bash
104
+ pip install -e .[dev]
105
+ ```
106
+
107
+ Install with documentation dependencies:
108
+
109
+ ```bash
110
+ pip install -e .[doc]
111
+ ```
112
+
113
+ ## Quick Start
114
+
115
+ ### Prepare Resource State and Feedforward
116
+
117
+ ```python
118
+ from graphqomb.circuit import Circuit, circuit2graph
119
+ from graphqomb.gates import H, CNOT
120
+ from graphqomb.qompiler import qompile
121
+ from graphqomb.simulator import PatternSimulator, SimulatorBackend
122
+
123
+ # Create a quantum circuit
124
+ circuit = Circuit(2)
125
+ circuit.apply_macro_gate(H(0))
126
+ circuit.apply_macro_gate(CNOT((0, 1)))
127
+
128
+ graph, feedforward = circuit2graph(circuit)
129
+
130
+ # Compile into pattern
131
+ pattern = qompile(graph, feedforward)
132
+
133
+ # Simulate the pattern
134
+ simulator = PatternSimulator(pattern, SimulatorBackend.StateVector)
135
+ simulator.simulate()
136
+ print(simulator.state)
137
+ ```
138
+
139
+ ### Creating and Visualizing Graph States
140
+
141
+ ```python
142
+ from graphqomb.graphstate import GraphState
143
+ from graphqomb.visualizer import visualize
144
+
145
+ # Create a graph state
146
+ graph = GraphState()
147
+ node1 = graph.add_physical_node()
148
+ node2 = graph.add_physical_node()
149
+ node3 = graph.add_physical_node()
150
+
151
+ # Register input/output nodes
152
+ q_index = 0
153
+ graph.register_input(node1, q_index)
154
+ graph.register_output(node3, q_index)
155
+
156
+ # Add edges
157
+ graph.add_physical_edge(node1, node2)
158
+ graph.add_physical_edge(node2, node3)
159
+
160
+ # Visualize the graph
161
+ visualize(graph)
162
+ ```
163
+
164
+ ## Documentation
165
+
166
+ - **Tutorial**: [WIP] for detailed usage guides
167
+ - **Examples**: See [examples](https://graphqomb.readthedocs.io/en/latest/gallery/index.html) for code demonstrations
168
+ - **API Reference**: Full API documentation is available [here](https://graphqomb.readthedocs.io/en/latest/references.html)
169
+
170
+ ## Development
171
+
172
+ ### Running Tests
173
+
174
+ ```bash
175
+ pytest # Run all tests
176
+ pytest tests/test_specific.py # Run specific test file
177
+ ```
178
+
179
+ ### Code Quality
180
+
181
+ ```bash
182
+ ruff check # Lint code
183
+ ruff format # Format code
184
+ mypy # Type checking
185
+ pyright # Type checking
186
+ ```
187
+
188
+ ### Building Documentation
189
+
190
+ ```bash
191
+ cd docs/
192
+ make html # Build HTML documentation
193
+ # Output will be in docs/build/html/
194
+ ```
195
+
196
+ ## Project Structure
197
+
198
+ ```
199
+ graphqomb/
200
+ ├── graphqomb/ # Main source code
201
+ │ ├── circuit.py # Quantum circuit implementation
202
+ │ ├── graphstate.py # Graph state manipulation
203
+ | ├── scheduler.py # Scheduling computaional order
204
+ │ ├── qompiler.py # Generate MBQC pattern
205
+ │ ├── simulator.py # Pattern simulation
206
+ │ ├── visualizer.py # Visualization tools
207
+ │ └── ...
208
+ ├── tests/ # Test suite
209
+ ├── examples/ # Example scripts
210
+ ├── docs/ # Sphinx documentation
211
+ │ └── source/
212
+ │ ├── gallery/ # Example gallery
213
+ │ └── ...
214
+ └── pyproject.toml # Project configuration
215
+ ```
216
+
217
+ ## Contributing
218
+
219
+ We welcome contributions! Please:
220
+
221
+ 1. Fork the repository
222
+ 2. Create a feature branch
223
+ 3. Make your changes with tests
224
+ 4. Ensure all tests pass and code is properly formatted
225
+ 5. Submit a pull request
226
+
227
+ ## Related Projects
228
+
229
+ - [graphix](https://github.com/TeamGraphix/graphix): The original MBQC library
230
+ - [PyZX](https://github.com/Quantomatic/pyzx): ZX-calculus library for Python
231
+ - [swiflow](https://github.com/TeamGraphix/swiflow): Rust-based fast flow finding algorithms
232
+
233
+ ## License
234
+
235
+ [MIT License](LICENSE)
236
+
237
+ ## Citation
238
+
239
+ If you use GraphQOMB in your research, please cite:
240
+
241
+ ```bibtex
242
+ @software{graphqomb,
243
+ title = {GraphQOMB: A Modular Graph State Qompiler for Measurement-Based Quantum Computation},
244
+ author = {Masato Fukushima, Yuki Watanabe, and Daichi Sasaki},
245
+ year = {2025},
246
+ url = {https://github.com/TeamGraphix/graphqomb}
247
+ }
248
+ ```
249
+
250
+ ## Acknowledgements
251
+
252
+ We acknowledge the [NICT Quantum Camp](https://nqc.nict.go.jp/) for supporting our development.
253
+
254
+ Special thanks to Fixstars Amplify:
255
+
256
+ <p><a href="https://amplify.fixstars.com/en/">
257
+ <img src="https://github.com/TeamGraphix/graphix/raw/master/docs/imgs/fam_logo.png" alt="amplify" width="200"/>
258
+ </a></p>
@@ -0,0 +1,209 @@
1
+ # GraphQOMB
2
+
3
+ ![License](https://img.shields.io/github/license/TeamGraphix/graphqomb)
4
+ [![PyPI version](https://badge.fury.io/py/graphqomb.svg)](https://badge.fury.io/py/graphqomb)
5
+ [![Python Versions](https://img.shields.io/pypi/pyversions/graphqomb.svg)](https://pypi.org/project/graphqomb/)
6
+ [![Documentation Status](https://readthedocs.org/projects/graphqomb/badge/?version=latest)](https://graphqomb.readthedocs.io/en/latest/?badge=latest)
7
+ [![pytest](https://github.com/TeamGraphix/graphqomb/actions/workflows/pytest.yml/badge.svg)](https://github.com/TeamGraphix/graphqomb/actions/workflows/pytest.yml)
8
+ [![typecheck](https://github.com/TeamGraphix/graphqomb/actions/workflows/typecheck.yml/badge.svg)](https://github.com/TeamGraphix/graphqomb/actions/workflows/typecheck.yml)
9
+ [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
10
+
11
+ **GraphQOMB** (Qompiler for Measurement-Based Quantum Computing) is a comprehensive reimplementation of the [graphix](https://github.com/TeamGraphix/graphix). Our package compiles ZX-diagrams with optional feedforward strategy into measurement patterns with Pauli frame tracking.
12
+
13
+ ## Features
14
+
15
+ ### Computation Design
16
+
17
+ - **ZX-Calculus Integration**: Use ZX-diagrams as an abstract expression of measurement pattern
18
+ - **Feedforward Strategy Design**: Our library accepts general feedforward strategy and optimization, eliminating the necessity of measurement calculus
19
+ - **Scheduler**: Scheduling the node preparation and measurement time
20
+
21
+ ### Compilation
22
+
23
+ - **MBQC Pattern Generation**: Measurement pattern is treated as a quantum assembly
24
+ - **Pauli Frame Tracking**: Manage all the classical feedforward with Pauli Frame, enabling fault-tolerant computing as well
25
+
26
+ ### Simulation
27
+
28
+ - **Pattern Simulation**: Simulate measurement patterns with statevector backend
29
+ - **Simulation in Stim circuit**: Generate a stim circuit implementing a fault-tolerant MBQC
30
+
31
+ ### Others
32
+
33
+ - **Transpilation into Graphix Pattern**: Transpile generated pattern into `graphix.pattern.Pattern` object for variety of execution backend (WIP)
34
+ - **Visualization**: Visualize graph states
35
+
36
+ ## Installation
37
+
38
+ ### From PyPI (Recommended)
39
+
40
+ ```bash
41
+ pip install graphqomb
42
+ ```
43
+
44
+ ### From Source (Development)
45
+
46
+ ```bash
47
+ git clone https://github.com/TeamGraphix/graphqomb.git
48
+ cd graphqomb/
49
+ pip install -e .
50
+ ```
51
+
52
+ Install with development dependencies:
53
+
54
+ ```bash
55
+ pip install -e .[dev]
56
+ ```
57
+
58
+ Install with documentation dependencies:
59
+
60
+ ```bash
61
+ pip install -e .[doc]
62
+ ```
63
+
64
+ ## Quick Start
65
+
66
+ ### Prepare Resource State and Feedforward
67
+
68
+ ```python
69
+ from graphqomb.circuit import Circuit, circuit2graph
70
+ from graphqomb.gates import H, CNOT
71
+ from graphqomb.qompiler import qompile
72
+ from graphqomb.simulator import PatternSimulator, SimulatorBackend
73
+
74
+ # Create a quantum circuit
75
+ circuit = Circuit(2)
76
+ circuit.apply_macro_gate(H(0))
77
+ circuit.apply_macro_gate(CNOT((0, 1)))
78
+
79
+ graph, feedforward = circuit2graph(circuit)
80
+
81
+ # Compile into pattern
82
+ pattern = qompile(graph, feedforward)
83
+
84
+ # Simulate the pattern
85
+ simulator = PatternSimulator(pattern, SimulatorBackend.StateVector)
86
+ simulator.simulate()
87
+ print(simulator.state)
88
+ ```
89
+
90
+ ### Creating and Visualizing Graph States
91
+
92
+ ```python
93
+ from graphqomb.graphstate import GraphState
94
+ from graphqomb.visualizer import visualize
95
+
96
+ # Create a graph state
97
+ graph = GraphState()
98
+ node1 = graph.add_physical_node()
99
+ node2 = graph.add_physical_node()
100
+ node3 = graph.add_physical_node()
101
+
102
+ # Register input/output nodes
103
+ q_index = 0
104
+ graph.register_input(node1, q_index)
105
+ graph.register_output(node3, q_index)
106
+
107
+ # Add edges
108
+ graph.add_physical_edge(node1, node2)
109
+ graph.add_physical_edge(node2, node3)
110
+
111
+ # Visualize the graph
112
+ visualize(graph)
113
+ ```
114
+
115
+ ## Documentation
116
+
117
+ - **Tutorial**: [WIP] for detailed usage guides
118
+ - **Examples**: See [examples](https://graphqomb.readthedocs.io/en/latest/gallery/index.html) for code demonstrations
119
+ - **API Reference**: Full API documentation is available [here](https://graphqomb.readthedocs.io/en/latest/references.html)
120
+
121
+ ## Development
122
+
123
+ ### Running Tests
124
+
125
+ ```bash
126
+ pytest # Run all tests
127
+ pytest tests/test_specific.py # Run specific test file
128
+ ```
129
+
130
+ ### Code Quality
131
+
132
+ ```bash
133
+ ruff check # Lint code
134
+ ruff format # Format code
135
+ mypy # Type checking
136
+ pyright # Type checking
137
+ ```
138
+
139
+ ### Building Documentation
140
+
141
+ ```bash
142
+ cd docs/
143
+ make html # Build HTML documentation
144
+ # Output will be in docs/build/html/
145
+ ```
146
+
147
+ ## Project Structure
148
+
149
+ ```
150
+ graphqomb/
151
+ ├── graphqomb/ # Main source code
152
+ │ ├── circuit.py # Quantum circuit implementation
153
+ │ ├── graphstate.py # Graph state manipulation
154
+ | ├── scheduler.py # Scheduling computaional order
155
+ │ ├── qompiler.py # Generate MBQC pattern
156
+ │ ├── simulator.py # Pattern simulation
157
+ │ ├── visualizer.py # Visualization tools
158
+ │ └── ...
159
+ ├── tests/ # Test suite
160
+ ├── examples/ # Example scripts
161
+ ├── docs/ # Sphinx documentation
162
+ │ └── source/
163
+ │ ├── gallery/ # Example gallery
164
+ │ └── ...
165
+ └── pyproject.toml # Project configuration
166
+ ```
167
+
168
+ ## Contributing
169
+
170
+ We welcome contributions! Please:
171
+
172
+ 1. Fork the repository
173
+ 2. Create a feature branch
174
+ 3. Make your changes with tests
175
+ 4. Ensure all tests pass and code is properly formatted
176
+ 5. Submit a pull request
177
+
178
+ ## Related Projects
179
+
180
+ - [graphix](https://github.com/TeamGraphix/graphix): The original MBQC library
181
+ - [PyZX](https://github.com/Quantomatic/pyzx): ZX-calculus library for Python
182
+ - [swiflow](https://github.com/TeamGraphix/swiflow): Rust-based fast flow finding algorithms
183
+
184
+ ## License
185
+
186
+ [MIT License](LICENSE)
187
+
188
+ ## Citation
189
+
190
+ If you use GraphQOMB in your research, please cite:
191
+
192
+ ```bibtex
193
+ @software{graphqomb,
194
+ title = {GraphQOMB: A Modular Graph State Qompiler for Measurement-Based Quantum Computation},
195
+ author = {Masato Fukushima, Yuki Watanabe, and Daichi Sasaki},
196
+ year = {2025},
197
+ url = {https://github.com/TeamGraphix/graphqomb}
198
+ }
199
+ ```
200
+
201
+ ## Acknowledgements
202
+
203
+ We acknowledge the [NICT Quantum Camp](https://nqc.nict.go.jp/) for supporting our development.
204
+
205
+ Special thanks to Fixstars Amplify:
206
+
207
+ <p><a href="https://amplify.fixstars.com/en/">
208
+ <img src="https://github.com/TeamGraphix/graphix/raw/master/docs/imgs/fam_logo.png" alt="amplify" width="200"/>
209
+ </a></p>
@@ -0,0 +1,5 @@
1
+ sphinx>=7.4.0
2
+ sphinx_gallery>=0.17.0
3
+ furo>=2024.01.29
4
+
5
+ matplotlib>=3.7.0
@@ -0,0 +1 @@
1
+ """GraphQOMB library."""