Repository URL to install this package:
|
Version:
0.24.2 ▾
|
# This code is part of Qiskit.
#
# (C) Copyright IBM 2022.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
"""Management of schedule block references."""
from typing import Tuple
from collections import UserDict
from qiskit.pulse.exceptions import PulseError
class ReferenceManager(UserDict):
"""Dictionary wrapper to manage pulse schedule references."""
def unassigned(self) -> Tuple[Tuple[str, ...], ...]:
"""Get the keys of unassigned references.
Returns:
Tuple of reference keys.
"""
keys = []
for key, value in self.items():
if value is None:
keys.append(key)
return tuple(keys)
def __setitem__(self, key, value):
if key in self and self[key] is not None:
# Check subroutine conflict.
if self[key] != value:
raise PulseError(
f"Subroutine {key} is already assigned to the reference of the current scope, "
"however, the newly assigned schedule conflicts with the existing schedule. "
"This operation was not successfully done."
)
return
super().__setitem__(key, value)
def __repr__(self):
keys = ", ".join(map(repr, self.keys()))
return f"{self.__class__.__name__}(references=[{keys}])"
def __str__(self):
out = f"{self.__class__.__name__}:"
for key, reference in self.items():
prog_repr = repr(reference)
if len(prog_repr) > 50:
prog_repr = prog_repr[:50] + "..."
out += f"\n - {repr(key)}: {prog_repr}"
return out