Releases: tulip-control/polytope
Releases · tulip-control/polytope
v0.2.5
Get it at https://pypi.org/project/polytope
Summary of changes
- support
matplotlib >= 3.6.0
- correct cases of infinite bounding box and empty polytope; #89
v0.2.4
Get it at https://pypi.org/project/polytope
Summary of changes
- REL: require Python >= 3.8
- REL: require:
networkx >= 3.0
numpy >= 1.24.1
scipy >= 1.10.0
setuptools >= 65.5.1
- REL: extra require:
cvxopt == 1.3.0
- TST: require
pytest >= 7.2.1
, instead ofnose
, for Python >= 3.10 compatibility - CI: test using GitHub Actions
API:
- add function
polytope.polytope.enumerate_integral_points()
- always recompute the volume when calling the function
polytope.polytope.volume()
- add parameters
nsamples
,seed
to functionpolytope.polytope.volume()
- replace certain
assert
statements withraise
statements, raisingValueError
orAssertionError
v0.2.3
v0.2.2
v0.2.1
- rename method to
Polytope.contains
, wasare_inside
- add method
contains
toRegion
- deprecate function
polytope.is_inside
,
usein
andcontains
instead - add arg
solver
to functionlpsolve
- refactor by introducing new module
solvers
- support MOSEK as solver, via function
cvxopt.solvers.lp
- require
numpy >= 1.10.0
- require
matplotlib >= 2.0.0
for tests