German
Sprachen
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

Quellcode für qiskit.providers.options

# 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.

"""Container class for backend options."""

import types


[Doku]class Options(types.SimpleNamespace): """Base options object This class is the abstract class that all backend options are based on. The properties of the class are intended to be all dynamically adjustable so that a user can reconfigure the backend on demand. If a property is immutable to the user (eg something like number of qubits) that should be a configuration of the backend class itself instead of the options. """
[Doku] def update_options(self, **fields): """Update options with kwargs""" self.__dict__.update(fields)
[Doku] def get(self, field, default=None): """Get an option value for a given key.""" return getattr(self, field, default)

© Copyright 2020, Qiskit Development Team. Zuletzt aktualisiert am 2021/06/04.

Built with Sphinx using a theme provided by Read the Docs.