mindquantum.device.LinearQubits

查看源文件
class mindquantum.device.LinearQubits(n_qubits: int)[源代码]

线性的量子比特拓扑结构。

参数:
  • n_qubits (int) - 总的比特数。

样例:

>>> from mindquantum.device import LinearQubits
>>> topology = LinearQubits(5)
>>> topology.is_coupled_with(0, 1)
True
>>> topology.is_coupled_with(0, 2)
False