Source code for mimiqcircuits.operations.utils
#
# Copyright © 2022-2024 University of Strasbourg. All Rights Reserved.
# Copyright © 2023-2025 QPerfect. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""Operation utilities."""
from mimiqcircuits.operations.power import Power
from mimiqcircuits.operations.control import Control
from mimiqcircuits.operations.gates.standard.id import GateID
[docs]
def power_idempotent(op, pow):
pmod = pow % 2
if pmod == 0:
if op.num_qubits < 1:
raise ValueError("Operation defined on zero qubits.")
if op.num_qubits == 1:
return GateID()
else:
return GateID().parallel(op.num_qubits)
elif pmod == 1:
return op
elif pow == pmod:
return Power(op, pmod)
else:
return op.power(pmod)
[docs]
def control_one_defined(n, op, cop, ccop=None, c3op=None):
if n == 1:
return cop
elif n == 2 and ccop is not None:
return ccop
elif n == 3 and c3op is not None:
return c3op
else:
return Control(n, op)