Fix symbols() function
[linpy.git] / pypol / isl.py
1 import ctypes, ctypes.util
2 import functools
3 import math
4 import numbers
5 import operator
6 import re
7
8 from . import _isl
9
10
11 libisl = ctypes.CDLL(ctypes.util.find_library('isl'))
12
13 libisl.isl_printer_get_str.restype = ctypes.c_char_p
14 libisl.isl_dim_set = _isl.isl_dim_set
15
16
17 class IslObject:
18
19 __slots__ = ('_ptr')
20
21 def __init__(self, ptr):
22 self._ptr = ptr
23
24 @property
25 def _as_parameter_(self):
26 return self._ptr
27
28
29 class Context(IslObject):
30
31 def __init__(self):
32 ptr = libisl.isl_ctx_alloc()
33 super().__init__(ptr)
34
35 #comment out so does not delete itself after being created
36 #def __del__(self):
37 # libisl.isl_ctx_free(self)
38
39 def __eq__(self, other):
40 if not isinstance(other, Context):
41 return False
42 return self._ptr == other._ptr
43
44
45 class BasicSet(IslObject):
46
47 def __str__(self):
48 ls = libisl.isl_basic_set_get_local_space(self)
49 ctx = libisl.isl_local_space_get_ctx(ls)
50 p = libisl.isl_printer_to_str(ctx)
51 p = libisl.isl_printer_print_basic_set(p, self)
52 string = libisl.isl_printer_get_str(p).decode()
53 return string
54
55 def __del__(self):
56 libisl.isl_basic_set_free(self)