From 8600238fcc3bbd7d93a52656ed8a8ab8d521aa72 Mon Sep 17 00:00:00 2001 From: Misty Wahl <82074193+Misty-W@users.noreply.github.com> Date: Wed, 22 Jan 2025 11:12:38 -0800 Subject: [PATCH 1/4] Update user_guide.rst --- docs/source/user_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user_guide.rst b/docs/source/user_guide.rst index f01331d0..99922078 100644 --- a/docs/source/user_guide.rst +++ b/docs/source/user_guide.rst @@ -16,7 +16,7 @@ To install ``ucc`` run: pip install -e . # Editable mode -UCC requires Python version :math:`\ge` 3.12. +UCC requires Python version ≥ 3.12. Basic usage *********** From 6920c1ffb1925e132f27abcbb055c90fd3921e88 Mon Sep 17 00:00:00 2001 From: Misty Wahl <82074193+Misty-W@users.noreply.github.com> Date: Wed, 22 Jan 2025 11:18:17 -0800 Subject: [PATCH 2/4] Symbol update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 718413d6..c061f7f2 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ UCC interfaces automatically with multiple quantum computing frameworks, includi ### Installation -**Note**: UCC requires Python version >= 3.12. +**Note**: UCC requires Python version ≥ 3.12. ```bash pip install ucc From a9e7b7555eab264dd0688c97a3ca9b1bcd32f789 Mon Sep 17 00:00:00 2001 From: Misty Wahl <82074193+Misty-W@users.noreply.github.com> Date: Mon, 3 Feb 2025 14:12:09 -0800 Subject: [PATCH 3/4] Fix import in user_guide.rst --- docs/source/user_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user_guide.rst b/docs/source/user_guide.rst index 99922078..39c178a1 100644 --- a/docs/source/user_guide.rst +++ b/docs/source/user_guide.rst @@ -30,7 +30,7 @@ For example, we can define a random circuit in Qiskit and optimize it using the from qiskit.circuit.random import random_clifford_circuit import ucc - from ucc.benchmarks.utils import count_multi_qubit_gates_qiskit + from benchmarks.utils import count_multi_qubit_gates_qiskit gates = ["cx", "cz", "cy", "swap", "x", "y", "z", "s", "sdg", "h"] From b263301b76fabd38fa18ca92bd61aadcccf784d3 Mon Sep 17 00:00:00 2001 From: Misty Wahl <82074193+Misty-W@users.noreply.github.com> Date: Mon, 3 Feb 2025 15:43:35 -0800 Subject: [PATCH 4/4] Update user_guide.rst --- docs/source/user_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/user_guide.rst b/docs/source/user_guide.rst index 39c178a1..2ac2cde6 100644 --- a/docs/source/user_guide.rst +++ b/docs/source/user_guide.rst @@ -30,7 +30,7 @@ For example, we can define a random circuit in Qiskit and optimize it using the from qiskit.circuit.random import random_clifford_circuit import ucc - from benchmarks.utils import count_multi_qubit_gates_qiskit + from benchmarks.scripts.common import count_multi_qubit_gates_qiskit gates = ["cx", "cz", "cy", "swap", "x", "y", "z", "s", "sdg", "h"]