Portuguese
Idiomas
English
Bengali
French
German
Japanese
Korean
Portuguese
Spanish
Tamil

qiskit.circuit.QuantumCircuit.find_bit

QuantumCircuit.find_bit(bit)[código fonte]

Find locations in the circuit which can be used to reference a given Bit.

Parâmetros

bit (Bit) – The bit to locate.

Retorno

A 2-tuple. The first element (index)

contains the index at which the Bit can be found (in either qubits, clbits, depending on its type). The second element (registers) is a list of (register, index) pairs with an entry for each Register in the circuit which contains the Bit (and the index in the Register at which it can be found).

Tipo de retorno

namedtuple(int, List[Tuple(Register, int)])

Notes

The circuit index of an AncillaQubit will be its index in qubits, not ancillas.

Levanta
  • CircuitError – If the supplied Bit was of an unknown type.

  • CircuitError – If the supplied Bit could not be found on the circuit.

Tipo de retorno

BitLocations