projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Rename islhelper into _isl
[linpy.git]
/
pypol
/
isl.py
diff --git
a/pypol/isl.py
b/pypol/isl.py
index
0513358
..
5a20514
100644
(file)
--- a/
pypol/isl.py
+++ b/
pypol/isl.py
@@
-10,10
+10,13
@@
import numbers
import operator
import re
+from . import _isl
+
libisl = ctypes.CDLL(ctypes.util.find_library('isl'))
libisl.isl_printer_get_str.restype = ctypes.c_char_p
+libisl.isl_dim_set = _isl.isl_dim_set
class IslObject: