python-constraint2 2.3.2__tar.gz → 2.5.0__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.
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/PKG-INFO +6 -3
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/README.rst +1 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/constraints.c +15241 -13596
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/constraints.py +201 -77
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/domain.c +1260 -1184
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/parser.c +5555 -5322
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/parser.py +110 -39
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/problem.c +2669 -2629
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/problem.py +3 -1
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/solvers.c +3020 -3100
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/pyproject.toml +8 -7
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_constraint.py +2 -2
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_parser.py +87 -52
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_solvers.py +60 -24
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_util_benchmark.py +6 -1
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/LICENSE +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/__init__.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/domain.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/constraint/solvers.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/cythonize_build.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/__init__.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/benchmarks.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/setup_teardown.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_compilation.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_doctests.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_problem.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_some_not_in_set.py +0 -0
- {python_constraint2-2.3.2 → python_constraint2-2.5.0}/tests/test_toml_file.py +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python-constraint2
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.5.0
|
|
4
4
|
Summary: python-constraint is a module for efficiently solving CSPs (Constraint Solving Problems) over finite domains.
|
|
5
|
-
License: BSD-2-Clause
|
|
5
|
+
License-Expression: BSD-2-Clause
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Keywords: CSP,constraint solving problems,problem solver,SMT,satisfiability modulo theory,SAT
|
|
7
8
|
Author: Floris-Jan Willemsen
|
|
8
9
|
Author-email: fjwillemsen97@gmail.com
|
|
@@ -24,6 +25,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
24
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
27
|
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
29
|
Project-URL: Changelog, https://github.com/python-constraint/python-constraint/blob/main/CHANGELOG.md
|
|
28
30
|
Project-URL: Documentation, http://python-constraint.github.io/python-constraint/
|
|
29
31
|
Project-URL: Homepage, http://python-constraint.github.io/python-constraint/
|
|
@@ -211,6 +213,7 @@ For an overview of recent changes, visit the `Changelog <https://github.com/pyth
|
|
|
211
213
|
Planned development:
|
|
212
214
|
|
|
213
215
|
- Support constant modifiers on parsed (variable) constraints instead defaulting to `FunctionConstraint`, e.g. :code:`problem.addConstraint("a+2 == b")` or :code:`problem.addConstraint("x / y == 100")`
|
|
216
|
+
- Parse using Abstract Syntax Trees (AST) instead of the current parser to be more robust and support decomposing lambdas
|
|
214
217
|
- Rewrite hotspots in C / Pyx instead of pure python mode
|
|
215
218
|
- Improvements to make the ParallelSolver competitive (experiments reveal the freethreading mode to be promising)
|
|
216
219
|
- Versioned documentation
|
|
@@ -178,6 +178,7 @@ For an overview of recent changes, visit the `Changelog <https://github.com/pyth
|
|
|
178
178
|
Planned development:
|
|
179
179
|
|
|
180
180
|
- Support constant modifiers on parsed (variable) constraints instead defaulting to `FunctionConstraint`, e.g. :code:`problem.addConstraint("a+2 == b")` or :code:`problem.addConstraint("x / y == 100")`
|
|
181
|
+
- Parse using Abstract Syntax Trees (AST) instead of the current parser to be more robust and support decomposing lambdas
|
|
181
182
|
- Rewrite hotspots in C / Pyx instead of pure python mode
|
|
182
183
|
- Improvements to make the ParallelSolver competitive (experiments reveal the freethreading mode to be promising)
|
|
183
184
|
- Versioned documentation
|