Python PPL wrapper
Project description
This Python package provides a wrapper to the C++ Parma Polyhedra Library (PPL).
The whole package is essentially a copy/paste of the corresponding file from the Sage software. Though, the pplpy package does not need Sage and can be used directly from Python.
How it works
The names of objects and methods are the same as in the library:
>>> import ppl
>>> x = ppl.Variable(0)
>>> y = ppl.Variable(1)
>>> z = ppl.Variable(2)
>>> cs = ppl.Constraint_System()
>>> cs.insert(x >= 0)
>>> cs.insert(y >= 0)
>>> cs.insert(z >= 0)
>>> cs.insert(x + y + z == 1)
>>> poly = ppl.C_Polyhedron(cs)
>>> poly.minimized_generators()
Generator_System {point(1/1, 0/1, 0/1), point(0/1, 1/1, 0/1), point(0/1, 0/1, 1/1)}
Installation
The project is available at Python Package Index and can be installed with pip
$ pip install pplpy
Source
You can find the latest version of the source code on github: https://github.com/videlec/pplpy/
Requirements
PPL libraries with headers
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pplpy-0.4.tar.gz
(270.0 kB
view details)
File details
Details for the file pplpy-0.4.tar.gz
.
File metadata
- Download URL: pplpy-0.4.tar.gz
- Upload date:
- Size: 270.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b737db6a2c6da5d8e6c4c2b20c17319b86c581d996b343f119383cd988f5ebf |
|
MD5 | 909b0df735ff58b06552df7a641cf671 |
|
BLAKE2b-256 | 710cbcaeafd936d65d9b0f6b6cc0b7c083c08ed4a92c78a43d1ff5c8d6d8d2bc |