Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ state_out = pattern.simulate_pattern(backend="statevector")

- [`graphix-ibmq`](https://github.com/TeamGraphix/graphix-ibmq): pattern transpiler for IBMQ / `qiskit`
- [`graphix-perceval`](https://github.com/TeamGraphix/graphix-perceval): pattern transpiler for Quandela's `perceval` simulator and QPU
- [`graphix-pyzx`](https://github.com/thierry-martinez/graphix-pyzx): conversion between open graphs and PyZX diagrams
- [`graphix-pyzx`](https://github.com/TeamGraphix/graphix-pyzx): conversion between open graphs and PyZX diagrams
- [`graphix-qasm-parser`](https://github.com/TeamGraphix/graphix-qasm-parser): a plugin for parsing OpenQASM circuit.
- [`graphix-stim-backend`](https://github.com/thierry-martinez/graphix-stim-backend): `stim` backend for efficient Clifford pattern simulation
- [`graphix-stim-compiler`](https://github.com/qat-inria/graphix-stim-compiler): `stim` backend for efficient compilation of Clifford maps.
- [`graphix-stim-backend`](https://github.com/TeamGraphix/graphix-stim-backend): `stim` backend for efficient Clifford pattern simulation
- [`graphix-stim-compiler`](https://github.com/TeamGraphix/graphix-stim-compiler): `stim` backend for efficient compilation of Clifford maps.
- [`graphix-symbolic`](https://github.com/TeamGraphix/graphix-symbolic): parameterized patterns with symbolic simulation

## Related packages
Expand Down
11 changes: 5 additions & 6 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,18 +95,17 @@ class ReverseDependency:
@nox.parametrize(
"package",
[
ReverseDependency("https://github.com/thierry-martinez/graphix-stim-backend", branch="fix/add_jcz"),
ReverseDependency("https://github.com/TeamGraphix/graphix-stim-backend"),
ReverseDependency("https://github.com/TeamGraphix/graphix-symbolic"),
ReverseDependency("https://github.com/TeamGraphix/graphix-qasm-parser"),
ReverseDependency("https://github.com/TeamGraphix/graphix-ibmq", doctest_modules=False),
ReverseDependency("https://github.com/TeamGraphix/graphix-stim-compiler"),
ReverseDependency("https://github.com/TeamGraphix/graphix-pyzx"),
ReverseDependency(
"https://github.com/thierry-martinez/veriphix",
"https://github.com/qat-inria/veriphix",
doctest_modules=False,
install_target=".[dev]",
branch="fix_reorder_and_refresh",
),
ReverseDependency("https://github.com/TeamGraphix/graphix-ibmq", doctest_modules=False),
ReverseDependency("https://github.com/qat-inria/graphix-stim-compiler", branch="ps_dim"),
ReverseDependency("https://github.com/thierry-martinez/graphix-pyzx", branch="pyzx_from_graphix"),
],
)
def tests_reverse_dependencies(session: Session, package: ReverseDependency) -> None:
Expand Down
Loading