File tree 3 files changed +20
-2
lines changed
3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change log
2
2
3
+ ## 0.9.4
4
+
5
+ Major:
6
+ * re-enabled MiniZinc as a backend solver!
7
+ * reworked how solvers (and subsolvers) are accessed
8
+ -> you can now do ` model.solve(solver="minizinc:chuffed") ` and the like
9
+ * added a SolverLookup.solvernames() to get supported names
10
+ * a debugging guide in the docs
11
+
12
+ Minor:
13
+ * various documentation and test updates
14
+ * some more explicit errors
15
+ * add vectorized operations that were missing (thanks Hakan)
16
+ * pysat: fix bug where constraints were duplicated
17
+ * ort: show validation error when model is invalid
18
+ * ort: work around 'xor' not being reifiable
19
+ * add missing negated_normal for 'xor'
20
+
3
21
## 0.9.3
4
22
* make progress logging work in jupyter/IPython (beta ortools feature)
5
23
* transf/get_variables now has print_variables that prints domains, for debugging with domains
Original file line number Diff line number Diff line change 14
14
"""
15
15
# Tias Guns, 2019-2021
16
16
17
- __version__ = "0.9.3 "
17
+ __version__ = "0.9.4 "
18
18
19
19
20
20
from .expressions import *
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def get_version(rel_path):
27
27
description = 'A numpy-based library for modeling constraint programming problems' ,
28
28
long_description = long_description ,
29
29
long_description_content_type = "text/markdown" ,
30
- url = "https://github.com/tias/cppy " ,
30
+ url = "https://github.com/CPMpy/cpmpy " ,
31
31
packages = find_packages (),
32
32
include_package_data = True ,
33
33
zip_safe = False ,
You can’t perform that action at this time.
0 commit comments