src/braket/default_simulator/gate_operations.py [403:410]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    r"""Controlled phase shift gate phasing the :math:`\ket{01}` state"""

    def __init__(self, targets, angle):
        self._targets = tuple(targets)
        self._angle = angle

    @property
    def matrix(self) -> np.ndarray:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/braket/default_simulator/gate_operations.py [424:431]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    r"""Controlled phase shift gate phasing the :math:`\ket{10}` state"""

    def __init__(self, targets, angle):
        self._targets = tuple(targets)
        self._angle = angle

    @property
    def matrix(self) -> np.ndarray:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



