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
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,18 @@ def kernel_cycle_length(self) -> int:
def experiment_repetitions(self) -> int:
"""Number of repetitions for this experiment."""
raise InterfaceMethodException

@property
@abstractmethod
def include_heralded_initialization(self) -> bool:
""":return: Boolean whether, heralded initialization indices are included."""
raise InterfaceMethodException

@property
@abstractmethod
def include_qutrit_calibration_points(self) -> bool:
""":return: Boolean whether, qutrit (Default qubit) calibration point indices are included."""
raise InterfaceMethodException
# endregion

# region Interface Methods
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,16 @@ def kernel_cycle_length(self) -> int:
def experiment_repetitions(self) -> int:
"""Number of repetitions for this experiment."""
return self._repetitions

@property
def include_heralded_initialization(self) -> bool:
""":return: Boolean whether, heralded initialization indices are included."""
return self._heralded_initialization

@property
def include_qutrit_calibration_points(self) -> bool:
""":return: Boolean whether, qutrit (Default qubit) calibration point indices are included."""
return self._qutrit_calibration_points
# endregion

# region Class Properties
Expand Down