Source code for qiskit.providers.ibmq.experiment.constants
# This code is part of Qiskit.
#
# (C) Copyright IBM 2020.
#
# 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.
"""Experiment constants."""
import enum
class ExperimentShareLevel(enum.Enum):
"""Possible values for experiment share level (visibility)."""
PRIVATE = 'private' # The experiment is only visible to its owner
PROJECT = 'project' # The experiment is shared within its project
GROUP = 'group' # The experiment is shared within its group
HUB = 'hub' # The experiment is shared within its hub
PUBLIC = 'public' # The experiment is shared publicly regardless of provider
[docs]class ResultQuality(enum.Enum):
"""Possible values for analysis result quality."""
BAD = "BAD"
GOOD = "GOOD"
UNKNOWN = "UNKNOWN"
RESULT_QUALITY_FROM_API = {
"Good": ResultQuality.GOOD,
"Bad": ResultQuality.BAD,
"No Information": ResultQuality.UNKNOWN
}
RESULT_QUALITY_TO_API = {
ResultQuality.GOOD: "Good",
ResultQuality.BAD: "Bad",
ResultQuality.UNKNOWN: "No Information",
}