Skip to main content
IBM Quantum Platform
Esta página pertence a uma versão antiga do site Qiskit SDK e não existe na versão mais recente. Recomendamos que você migre para a versão mais recente. Consulte as notas sobre a liberação para obter mais informações.

Bit

class qiskit.circuit.Bit(register=None, index=None)

GitHub

Bases: object

Implement a generic bit.

Note

This class should not be instantiated directly. This is just a superclass for Clbit and Qubit.

Create a new generic bit.


Attributes

index

Get the index of an old-style bit in the register that owns it.

In modern Qiskit Terra (version 0.17+), bits are the fundamental object and registers are aliases to collections of bits. A bit can be in many registers depending on the circuit, so a single containing register is no longer a property of a bit. It is an error to access this attribute on bits that were not constructed as “owned” by a register.

Deprecated since version 0.17

The property qiskit.circuit.bit.Bit.index is deprecated as of qiskit-terra 0.17. It will be removed in the Qiskit 1.0 release. Instead, use find_bit() to find all the containing registers within a circuit and the index of the bit within the circuit.

register

Get the register of an old-style bit.

In modern Qiskit Terra (version 0.17+), bits are the fundamental object and registers are aliases to collections of bits. A bit can be in many registers depending on the circuit, so a single containing register is no longer a property of a bit. It is an error to access this attribute on bits that were not constructed as “owned” by a register.

Deprecated since version 0.17

The property qiskit.circuit.bit.Bit.register is deprecated as of qiskit-terra 0.17. It will be removed in the Qiskit 1.0 release. Instead, use find_bit() to find all the containing registers within a circuit and the index of the bit within the circuit.

Esta página foi útil?
Relate um bug, erro de digitação ou solicite conteúdo no GitHub.