pyqrackising 9.5.7__tar.gz → 9.5.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyqrackising might be problematic. Click here for more details.
- {pyqrackising-9.5.7/pyqrackising.egg-info → pyqrackising-9.5.8}/PKG-INFO +1 -1
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyproject.toml +1 -1
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/otoc.py +2 -2
- {pyqrackising-9.5.7 → pyqrackising-9.5.8/pyqrackising.egg-info}/PKG-INFO +1 -1
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/setup.py +1 -1
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/LICENSE.md +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/MANIFEST.in +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/README.md +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/__init__.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/convert_tensor_network_to_tsp.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/generate_tfim_samples.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/kernels.cl +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/maxcut_tfim.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/maxcut_tfim_sparse.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/maxcut_tfim_streaming.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/maxcut_tfim_util.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/spin_glass_solver.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/spin_glass_solver_sparse.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/spin_glass_solver_streaming.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/tfim_magnetization.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/tfim_square_magnetization.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/tsp.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising/tsp_maxcut.py +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising.egg-info/SOURCES.txt +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising.egg-info/dependency_links.txt +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising.egg-info/not-zip-safe +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/pyqrackising.egg-info/top_level.txt +0 -0
- {pyqrackising-9.5.7 → pyqrackising-9.5.8}/setup.cfg +0 -0
|
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
|
|
|
10
10
|
|
|
11
11
|
[project]
|
|
12
12
|
name = "pyqrackising"
|
|
13
|
-
version = "9.5.
|
|
13
|
+
version = "9.5.8"
|
|
14
14
|
requires-python = ">=3.8"
|
|
15
15
|
description = "Fast MAXCUT, TSP, and sampling heuristics from near-ideal transverse field Ising model (TFIM)"
|
|
16
16
|
readme = {file = "README.txt", content-type = "text/markdown"}
|
|
@@ -35,7 +35,7 @@ def get_otoc_hamming_distribution(J=-1.0, h=2.0, z=4, theta=0.0, t=5, n_qubits=6
|
|
|
35
35
|
if len(pauli_string) != n_qubits:
|
|
36
36
|
raise ValueError("OTOCS pauli_string must be same length as n_qubits! (Use 'I' for qubits that aren't changed.)")
|
|
37
37
|
|
|
38
|
-
signal_frac -= pauli_string.count('
|
|
38
|
+
signal_frac -= 0.5 * pauli_string.count('X') + pauli_string.count('Z') + 1.5 * pauli_string.count('Y')
|
|
39
39
|
|
|
40
40
|
fwd = probability_by_hamming_weight(J, h, z, theta, t, n_qubits + 1)
|
|
41
41
|
rev = probability_by_hamming_weight(-J, -h, z, theta + np.pi, t, n_qubits + 1)
|
|
@@ -189,7 +189,7 @@ def generate_otoc_samples(J=-1.0, h=2.0, z=4, theta=0.0, t=5, n_qubits=65, pauli
|
|
|
189
189
|
signal_frac = 0.0
|
|
190
190
|
for pauli_string in pauli_strings:
|
|
191
191
|
pauli_string = list(pauli_string)
|
|
192
|
-
signal_frac -= pauli_string.count('
|
|
192
|
+
signal_frac -= 0.5 * pauli_string.count('X') + pauli_string.count('Z') + 1.5 * pauli_string.count('Y')
|
|
193
193
|
signal_frac = 2 ** signal_frac
|
|
194
194
|
|
|
195
195
|
row_len, col_len = factor_width(n_qubits)
|
|
@@ -7,7 +7,7 @@ with open(README_PATH) as readme_file:
|
|
|
7
7
|
|
|
8
8
|
setup(
|
|
9
9
|
name='pyqrackising',
|
|
10
|
-
version='9.5.
|
|
10
|
+
version='9.5.8',
|
|
11
11
|
author='Dan Strano',
|
|
12
12
|
author_email='stranoj@gmail.com',
|
|
13
13
|
description='Fast MAXCUT, TSP, and sampling heuristics from near-ideal transverse field Ising model (TFIM)',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|