lightsolver-lib 0.5.0__tar.gz → 0.5.2__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.
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/PKG-INFO +2 -1
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/lightsolver_lib/__init__.py +6 -0
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/lightsolver_lib.egg-info/PKG-INFO +2 -1
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/lightsolver_lib.egg-info/requires.txt +1 -0
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/pyproject.toml +2 -2
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/LICENSE +0 -0
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/README.md +0 -0
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/lightsolver_lib/lightsolver_lib.py +0 -0
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/lightsolver_lib.egg-info/SOURCES.txt +0 -0
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/lightsolver_lib.egg-info/dependency_links.txt +0 -0
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/lightsolver_lib.egg-info/top_level.txt +0 -0
- {lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lightsolver-lib
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: Tools for developers using LightSolver's Cloud Platform
|
|
5
5
|
Author-email: Matan Arkin <matan@lightsolver.com>
|
|
6
6
|
Project-URL: Homepage, https://lightsolver.com
|
|
@@ -11,6 +11,7 @@ Requires-Python: >=3.8
|
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
13
|
Requires-Dist: numpy==1.26.4
|
|
14
|
+
Requires-Dist: plotly
|
|
14
15
|
Dynamic: license-file
|
|
15
16
|
|
|
16
17
|
# lightsolver-lib
|
|
@@ -5,6 +5,9 @@ from .lightsolver_lib import create_random_initial_states
|
|
|
5
5
|
from .lightsolver_lib import calc_ising_energy_from_states
|
|
6
6
|
from .lightsolver_lib import XYModelParams
|
|
7
7
|
from .lightsolver_lib import coupling_matrix_xy
|
|
8
|
+
from .lightsolver_lib import embed_coupmat
|
|
9
|
+
from .lightsolver_lib import analyze_sol_XY
|
|
10
|
+
from .lightsolver_lib import generate_animation
|
|
8
11
|
|
|
9
12
|
__all__ = ['calc_ising_energies',
|
|
10
13
|
'probmat_qubo_to_ising',
|
|
@@ -13,4 +16,7 @@ __all__ = ['calc_ising_energies',
|
|
|
13
16
|
'calc_ising_energy_from_states',
|
|
14
17
|
'XYModelParams',
|
|
15
18
|
'coupling_matrix_xy',
|
|
19
|
+
'embed_coupmat',
|
|
20
|
+
'analyze_sol_XY',
|
|
21
|
+
'generate_animation',
|
|
16
22
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lightsolver-lib
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: Tools for developers using LightSolver's Cloud Platform
|
|
5
5
|
Author-email: Matan Arkin <matan@lightsolver.com>
|
|
6
6
|
Project-URL: Homepage, https://lightsolver.com
|
|
@@ -11,6 +11,7 @@ Requires-Python: >=3.8
|
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
License-File: LICENSE
|
|
13
13
|
Requires-Dist: numpy==1.26.4
|
|
14
|
+
Requires-Dist: plotly
|
|
14
15
|
Dynamic: license-file
|
|
15
16
|
|
|
16
17
|
# lightsolver-lib
|
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "lightsolver-lib"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.2"
|
|
8
8
|
description = "Tools for developers using LightSolver's Cloud Platform"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
11
|
-
dependencies = [ "numpy==1.26.4",]
|
|
11
|
+
dependencies = [ "numpy==1.26.4", "plotly",]
|
|
12
12
|
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent",]
|
|
13
13
|
[[project.authors]]
|
|
14
14
|
name = "Matan Arkin"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lightsolver_lib-0.5.0 → lightsolver_lib-0.5.2}/lightsolver_lib.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|