Source code for mimiqcircuits.classical.setbits
#
# 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.
#
from mimiqcircuits.classical.abstract_classical import AbstractClassical
[docs]
class SetBit0(AbstractClassical):
r"""
SetBit0 operation.
Classical operation that sets a classical bit to 0.
`0 → 0` and `1 → 0`.
Examples:
>>> from mimiqcircuits import *
>>> not_op = SetBit0()
>>> not_op.name
'set0'
>>> c = Circuit()
>>> c.push(SetBit0(), 1)
2-bit circuit with 1 instruction:
└── c[1] = 0
<BLANKLINE>
"""
_name = "set0"
_num_bits = 1
_num_qubits = 0
_num_cregs = 0
_num_zvars = 0
_qregsizes = []
_cregsizes = [1]
[docs]
def inverse(self):
return SetBit1()
[docs]
def iswrapper(self):
return False
[docs]
def get_operation(self):
return self
def __repr__(self):
return f"{self._name}"
[docs]
class SetBit1(AbstractClassical):
r"""
SetBit1 operation.
Classical operation that sets a classical bit to 1.
`0 → 1` and `1 → 1`.
Examples:
>>> from mimiqcircuits import *
>>> not_op = SetBit1()
>>> not_op.name
'set1'
>>> c = Circuit()
>>> c.push(SetBit1(), 1)
2-bit circuit with 1 instruction:
└── c[1] = 1
<BLANKLINE>
"""
_name = "set1"
_num_bits = 1
_num_qubits = 0
_num_cregs = 0
_num_zvars = 0
_qregsizes = []
_cregsizes = [1]
[docs]
def inverse(self):
return SetBit0()
[docs]
def iswrapper(self):
return False
[docs]
def get_operation(self):
return self
def __repr__(self):
return f"{self._name}"
__all__ = ["SetBit0", "SetBit1"]