Skip to content
Draft
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
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ requires-python = ">=3.10"

dependencies = [
"matplotlib>=3.10.5, <4",
"plotly>=6.5.0, <7",
"pyscf>=2.10, <3",
"qiskit[visualization]>=2.2, <3",
"pauli-prop>=0.1.0, <1",
Expand Down
4 changes: 4 additions & 0 deletions qiskit_addon_slc/visualization/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

This module provides visualization methods for shaded lightcones.

.. autofunction:: animate_shaded_lightcone

.. autofunction:: draw_shaded_lightcone

.. autofunction:: accumulate_filtered_bounds
Expand All @@ -37,6 +39,7 @@

from ..bounds.commutator_bounds import Bounds
from .accumulate_filtered_bounds import accumulate_filtered_bounds
from .animate_shaded_lightcone import animate_shaded_lightcone
from .overlay_bounds import overlay_bounds_onto_circuit
from .render_bounds import render_bounds

Expand Down Expand Up @@ -78,6 +81,7 @@ def draw_shaded_lightcone(

__all__ = [
"accumulate_filtered_bounds",
"animate_shaded_lightcone",
"draw_shaded_lightcone",
"overlay_bounds_onto_circuit",
"render_bounds",
Expand Down
Loading
Loading