Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a15acb0
feat: Add new Quantikz rendering modules and enhance existing functio…
zlatko-minev May 17, 2025
e8bf43f
Merge branch 'main' into main
zlatko-minev May 17, 2025
dd26e2e
PR fixes suggested by Doug
zlatko-minev May 17, 2025
8d55e5c
Added test file as suggested by Doug
zlatko-minev May 17, 2025
a565286
Update coverage and clean up CI and redundant conditions.
dstrain115 Aug 1, 2025
d72b74d
Fix __init__
dstrain115 Aug 1, 2025
213ffa7
Fix default for qubit display
dstrain115 Aug 1, 2025
b43d56f
Create new moments for overlapping operations.
dstrain115 Aug 1, 2025
50bea0b
Fix multi-measurement and also coverage.
dstrain115 Aug 2, 2025
d94298a
Added classical controls, cleaned up code, and added coverage.
dstrain115 Aug 4, 2025
dbb51d4
Merge branch 'main' into main
mhucka Aug 10, 2025
d065bc5
Merge branch 'main' into zlatko-minev/main
pavoljuhas Sep 18, 2025
ad58ffb
Fix ruff PLR1736 - List index lookup in `enumerate()` loop
pavoljuhas Sep 18, 2025
7804f89
Drop conditionals from _PARAMETERIZED_GATE_BASE_NAMES constructions
pavoljuhas Sep 18, 2025
0af7587
Assume IPython is installed
pavoljuhas Sep 18, 2025
c6bbdbf
Delete create_gif_from_ipython_images
pavoljuhas Sep 18, 2025
d10d4ca
Drop `hasattr(gate, "exponent")` where certainly True
pavoljuhas Sep 19, 2025
42ed72b
Clean except-clause which has no apparent code path
pavoljuhas Sep 19, 2025
2c4406f
Use `X | None` for type annotations
pavoljuhas Sep 19, 2025
ad7af4d
Create test-session outputs in a temporary directory
pavoljuhas Sep 19, 2025
6c1b753
Use common upper/lower case in iSwap and iSwap_pow style names
pavoljuhas Sep 23, 2025
3191a9c
Move quantikz-rendering functions to cirq.contrib
pavoljuhas Sep 23, 2025
8e21af1
Eliminate top-level try-except block in render_circuit
pavoljuhas Sep 23, 2025
f669eb4
Remove unlikely try-catch-all blocks from render_circuit
pavoljuhas Sep 23, 2025
ee2acd7
Clean up unnecessary `# pragma: no cover` markup
pavoljuhas Sep 23, 2025
b8e260b
Drop unused "physics" package from DEFAULT_PREAMBLE_TEMPLATE
pavoljuhas Sep 24, 2025
8ccb8c8
Fix doctest in cirq.contrib.quantikz.circuit_to_latex_quantikz module…
pavoljuhas Sep 24, 2025
6942741
Merge branch 'main' into zlatko-minev/main
pavoljuhas Sep 24, 2025
e1b838a
Fix render_circuit doctest example
pavoljuhas Sep 25, 2025
53ddb3d
Make the output PDF document binary reproducible
pavoljuhas Sep 25, 2025
c198bb0
Merge branch 'main' into zlatko-minev/main
pavoljuhas Sep 25, 2025
53a9a75
Add note suggested by mhucka
pavoljuhas Sep 25, 2025
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
3 changes: 3 additions & 0 deletions cirq-core/cirq/vis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@
from cirq.vis.density_matrix import plot_density_matrix as plot_density_matrix

from cirq.vis.vis_utils import relative_luminance as relative_luminance

from cirq.vis.circuit_to_latex_quantikz import CircuitToQuantikz as CircuitToQuantikz
from cirq.vis.circuit_to_latex_render import render_circuit as render_circuit
Loading