Skip to main content

Python PPL wrapper

Project description

This Python package provides a wrapper to the C++ Parma Polyhedra Library (PPL).

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)

Note that in order to compile this package you need the ppl libraries and header files.

Source

Find the latest version on github: https://github.com/videlec/pplpy/

Requirements

  • PPL libraries with headers

  • Cython

Project details


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.2.tar.gz (283.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page