-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
quantumregister.py
75 lines (54 loc) · 1.98 KB
/
quantumregister.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# This code is part of Qiskit.
#
# (C) Copyright IBM 2017.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
# pylint: disable=bad-docstring-quotes
"""
Quantum register reference object.
"""
import itertools
from qiskit.circuit.exceptions import CircuitError
from .register import Register
from .bit import Bit
class Qubit(Bit):
"""Implement a quantum bit."""
__slots__ = ()
def __init__(self, register=None, index=None):
"""Creates a qubit.
Args:
register (QuantumRegister): Optional. A quantum register containing the bit.
index (int): Optional. The index of the bit in its containing register.
Raises:
CircuitError: if the provided register is not a valid :class:`QuantumRegister`
"""
if register is None or isinstance(register, QuantumRegister):
super().__init__(register, index)
else:
raise CircuitError(
f"Qubit needs a QuantumRegister and {type(register).__name__} was provided"
)
class QuantumRegister(Register):
"""Implement a quantum register."""
# Counter for the number of instances in this class.
instances_counter = itertools.count()
# Prefix to use for auto naming.
prefix = "q"
bit_type = Qubit
class AncillaQubit(Qubit):
"""A qubit used as ancillary qubit."""
__slots__ = ()
pass
class AncillaRegister(QuantumRegister):
"""Implement an ancilla register."""
# Counter for the number of instances in this class.
instances_counter = itertools.count()
# Prefix to use for auto naming.
prefix = "a"
bit_type = AncillaQubit