qiskit.dagcircuit.DAGCircuit.count_ops¶
- DAGCircuit.count_ops(*, recurse=True)[código fonte]¶
Count the occurrences of operation names.
- Parâmetros
recurse (bool) – if
True
(default), then recurse into control-flow operations. In all cases, this counts only the number of times the operation appears in any possible block; both branches of if-elses are counted, and for- and while-loop blocks are only counted once.- Retorno
a mapping of operation names to the number of times it appears.
- Tipo de retorno
Mapping[str, int]