String formatting for empty expressions
[linpy.git] / pypol / __init__.py
1
2 """
3 A polyhedral library based on ISL.
4 """
5
6 from .linear import constant, symbol, symbols
7 from .linear import eq, le, lt, ge, gt
8 from .linear import empty, universe
9
10
11 __all__ = [
12 'constant', 'symbol', 'symbols',
13 'eq', 'le', 'lt', 'ge', 'gt',
14 'empty', 'universe'
15 ]