Metadata-Version: 1.1
Name: pplpy
Version: 0.1
Summary: Python PPL wrapper
Home-page: https://github.com/videlec/pplpy
Author: Vincent Delecroix
Author-email: vincent.delecroix@labri.fr
License: GPL v3
Download-URL: https://github.com/videlec/pplpy/archive/0.1.tar.gz
Description: PPL Python wrapper
        ==================
        
        This Python package provides a wrapper to the C++ `Parma Polyhedra Library
        (PPL) <http://bugseng.com/products/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
        
Keywords: polyhedron,polytope,convex,mathematics,ppl,milp,linear-programming
Platform: any
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: Unix
