qiskit.opflow.converters.ConverterBase¶
-
class
ConverterBase
[código fonte]¶ Converters take an Operator and return a new Operator, generally isomorphic in some way with the first, but with certain desired properties. For example, a converter may accept
CircuitOp
and return aSummedOp
ofPauliOps
representing the circuit unitary. Converters may not have polynomial space or time scaling in their operations. On the contrary, many converters, such as aMatrixExpectation
orMatrixEvolution
, which convertPauliOps
toMatrixOps
internally, will require time or space exponential in the number of qubits unless a clever trick is known (such as the use of sparse matrices).-
__init__
()¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
convert
(operator)Accept the Operator and return the converted Operator
-
abstract
convert
(operator)[código fonte]¶ Accept the Operator and return the converted Operator
- Parâmetros
operator (
OperatorBase
) – The Operator to convert.- Tipo de retorno
OperatorBase
- Retorna
The converted Operator.
-