islpy 2025.1.5__tar.gz → 2025.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1504) hide show
  1. islpy-2025.2/.basedpyright/baseline.json +214 -0
  2. islpy-2025.2/.editorconfig +32 -0
  3. islpy-2025.2/.gitignore +65 -0
  4. islpy-2025.2/.gitlab-ci.yml +92 -0
  5. islpy-2025.2/.gitmodules +3 -0
  6. islpy-2025.2/CMakeLists.txt +249 -0
  7. islpy-2025.2/PKG-INFO +69 -0
  8. islpy-2025.2/README.rst +46 -0
  9. islpy-2025.2/build-with-barvinok.sh +83 -0
  10. islpy-2025.2/doc/.gitignore +1 -0
  11. islpy-2025.2/doc/conf.py +80 -0
  12. islpy-2025.2/doc/misc.rst +206 -0
  13. islpy-2025.2/doc/ref_fundamental.rst +224 -0
  14. islpy-2025.2/doc/reference.rst +195 -0
  15. islpy-2025.2/doc/upload-docs.sh +3 -0
  16. islpy-2025.2/examples/.gitignore +1 -0
  17. islpy-2025.2/examples/demo.py +85 -0
  18. islpy-2025.2/gen_wrap.py +1675 -0
  19. islpy-2025.2/isl/.gitignore +60 -0
  20. islpy-2025.2/isl/.gitmodules +3 -0
  21. islpy-2025.2/isl/AUTHORS +71 -0
  22. islpy-2025.2/isl/ChangeLog +277 -0
  23. islpy-2025.2/isl/Makefile.am +746 -0
  24. islpy-2025.2/isl/README +53 -0
  25. islpy-2025.2/isl/autogen.sh +2 -0
  26. islpy-2025.2/isl/bound_test.sh.in +36 -0
  27. islpy-2025.2/isl/codegen_test.sh.in +25 -0
  28. islpy-2025.2/isl/cp_if_different.sh +10 -0
  29. islpy-2025.2/isl/cpp/cpp-checked-conversion.h.bot +2 -0
  30. islpy-2025.2/isl/cpp/cpp-checked-conversion.h.top +14 -0
  31. islpy-2025.2/isl/cpp/cpp-checked.h.bot +2 -0
  32. islpy-2025.2/isl/cpp/cpp-checked.h.top +200 -0
  33. islpy-2025.2/isl/cpp/cpp.h.bot +2 -0
  34. islpy-2025.2/isl/cpp/cpp.h.top +267 -0
  35. islpy-2025.2/isl/cpp/typed_cpp.h.bot +5 -0
  36. islpy-2025.2/isl/cpp/typed_cpp.h.top +21 -0
  37. islpy-2025.2/isl/doc/CodingStyle +42 -0
  38. islpy-2025.2/isl/doc/Makefile.am +33 -0
  39. islpy-2025.2/isl/doc/SubmittingPatches +53 -0
  40. islpy-2025.2/isl/doc/implementation.tex +2049 -0
  41. islpy-2025.2/isl/doc/interface +27 -0
  42. islpy-2025.2/isl/doc/isl.bib +485 -0
  43. islpy-2025.2/isl/doc/manual.tex +95 -0
  44. islpy-2025.2/isl/doc/mypod2latex +14 -0
  45. islpy-2025.2/isl/doc/reading.tex +46 -0
  46. islpy-2025.2/isl/doc/user.pod +13133 -0
  47. islpy-2025.2/isl/flow_test.sh.in +18 -0
  48. islpy-2025.2/isl/imath/.dockerignore +12 -0
  49. islpy-2025.2/isl/imath/.gitattributes +1 -0
  50. islpy-2025.2/isl/imath/.travis.yml +14 -0
  51. islpy-2025.2/isl/imath/ChangeLog +563 -0
  52. islpy-2025.2/isl/imath/README.md +107 -0
  53. islpy-2025.2/isl/imath/contrib/Makefile.msvc +84 -0
  54. islpy-2025.2/isl/imath/contrib/README +3 -0
  55. islpy-2025.2/isl/imath/doc.md +1198 -0
  56. islpy-2025.2/isl/imath/doc.md.in +394 -0
  57. islpy-2025.2/isl/imath/examples/basecvt.c +117 -0
  58. islpy-2025.2/isl/imath/examples/findprime.c +67 -0
  59. islpy-2025.2/isl/imath/examples/imcalc.c +1134 -0
  60. islpy-2025.2/isl/imath/examples/input.c +116 -0
  61. islpy-2025.2/isl/imath/examples/pi.c +173 -0
  62. islpy-2025.2/isl/imath/examples/randprime.c +240 -0
  63. islpy-2025.2/isl/imath/examples/rounding.c +83 -0
  64. islpy-2025.2/isl/imath/examples/rsakey.c +304 -0
  65. islpy-2025.2/isl/imath/tests/add.tc +848 -0
  66. islpy-2025.2/isl/imath/tests/bigmul.tc +10 -0
  67. islpy-2025.2/isl/imath/tests/bigsqr.tc +11 -0
  68. islpy-2025.2/isl/imath/tests/bintest.c +104 -0
  69. islpy-2025.2/isl/imath/tests/bug-swap.c +22 -0
  70. islpy-2025.2/isl/imath/tests/compare.tc +31 -0
  71. islpy-2025.2/isl/imath/tests/conv.tc +228 -0
  72. islpy-2025.2/isl/imath/tests/div.tc +963 -0
  73. islpy-2025.2/isl/imath/tests/egcd.tc +752 -0
  74. islpy-2025.2/isl/imath/tests/emod.tc +756 -0
  75. islpy-2025.2/isl/imath/tests/emodv.tc +305 -0
  76. islpy-2025.2/isl/imath/tests/expt.tc +154 -0
  77. islpy-2025.2/isl/imath/tests/gcd.tc +761 -0
  78. islpy-2025.2/isl/imath/tests/imath-test.scm +172 -0
  79. islpy-2025.2/isl/imath/tests/init.tc +12 -0
  80. islpy-2025.2/isl/imath/tests/invmod.tc +452 -0
  81. islpy-2025.2/isl/imath/tests/isprime.tc +33 -0
  82. islpy-2025.2/isl/imath/tests/lcm.tc +780 -0
  83. islpy-2025.2/isl/imath/tests/linux/Dockerfile +14 -0
  84. islpy-2025.2/isl/imath/tests/mod.tc +754 -0
  85. islpy-2025.2/isl/imath/tests/mul.tc +864 -0
  86. islpy-2025.2/isl/imath/tests/neg.tc +9 -0
  87. islpy-2025.2/isl/imath/tests/pi1024.txt +1 -0
  88. islpy-2025.2/isl/imath/tests/pi1500-10.txt +1 -0
  89. islpy-2025.2/isl/imath/tests/pi1698-16.txt +1 -0
  90. islpy-2025.2/isl/imath/tests/qadd.tc +803 -0
  91. islpy-2025.2/isl/imath/tests/qaddz.tc +800 -0
  92. islpy-2025.2/isl/imath/tests/qdiv.tc +803 -0
  93. islpy-2025.2/isl/imath/tests/qdivz.tc +800 -0
  94. islpy-2025.2/isl/imath/tests/qmisc.tc +49 -0
  95. islpy-2025.2/isl/imath/tests/qmul.tc +803 -0
  96. islpy-2025.2/isl/imath/tests/qmulz.tc +800 -0
  97. islpy-2025.2/isl/imath/tests/qsub.tc +803 -0
  98. islpy-2025.2/isl/imath/tests/qsubz.tc +800 -0
  99. islpy-2025.2/isl/imath/tests/qtodec.tc +1303 -0
  100. islpy-2025.2/isl/imath/tests/root.tc +44 -0
  101. islpy-2025.2/isl/imath/tests/rtest.c +120 -0
  102. islpy-2025.2/isl/imath/tests/set.tc +12 -0
  103. islpy-2025.2/isl/imath/tests/sqr.tc +755 -0
  104. islpy-2025.2/isl/imath/tests/sub.tc +849 -0
  105. islpy-2025.2/isl/imath/tests/test.bc +155 -0
  106. islpy-2025.2/isl/imath/tests/test.sh +85 -0
  107. islpy-2025.2/isl/imath/tools/findthreshold.py +94 -0
  108. islpy-2025.2/isl/imath/tools/mkdoc.py +209 -0
  109. islpy-2025.2/isl/interface/Makefile.am +28 -0
  110. islpy-2025.2/isl/interface/configure.ac +31 -0
  111. islpy-2025.2/isl/interface/cpp.cc +1311 -0
  112. islpy-2025.2/isl/interface/cpp.h +212 -0
  113. islpy-2025.2/isl/interface/cpp_conversion.cc +86 -0
  114. islpy-2025.2/isl/interface/cpp_conversion.h +15 -0
  115. islpy-2025.2/isl/interface/extract_interface.cc +630 -0
  116. islpy-2025.2/isl/interface/extract_interface.h +3 -0
  117. islpy-2025.2/isl/interface/generator.cc +889 -0
  118. islpy-2025.2/isl/interface/generator.h +203 -0
  119. islpy-2025.2/isl/interface/isl.py.core +19097 -0
  120. islpy-2025.2/isl/interface/plain_cpp.cc +2098 -0
  121. islpy-2025.2/isl/interface/plain_cpp.h +174 -0
  122. islpy-2025.2/isl/interface/python.cc +1179 -0
  123. islpy-2025.2/isl/interface/python.h +68 -0
  124. islpy-2025.2/isl/interface/set_lang_defaults_arg4.h +16 -0
  125. islpy-2025.2/isl/isl_srcdir.c.in +1 -0
  126. islpy-2025.2/isl/isl_test2.cc +950 -0
  127. islpy-2025.2/isl/isl_test_cpp-checked-conversion.cc +99 -0
  128. islpy-2025.2/isl/isl_test_cpp-checked.cc +312 -0
  129. islpy-2025.2/isl/isl_test_cpp-generic.cc +374 -0
  130. islpy-2025.2/isl/isl_test_cpp.cc +381 -0
  131. islpy-2025.2/isl/isl_test_cpp17-checked.cc +41 -0
  132. islpy-2025.2/isl/isl_test_cpp17-generic.cc +68 -0
  133. islpy-2025.2/isl/isl_test_cpp17.cc +78 -0
  134. islpy-2025.2/isl/isl_test_cpp_failed.sh +8 -0
  135. islpy-2025.2/isl/isl_test_python.py +504 -0
  136. islpy-2025.2/isl/libisl-gdb.py +100 -0
  137. islpy-2025.2/isl/m4/ax_c___attribute__.m4 +66 -0
  138. islpy-2025.2/isl/m4/ax_cc_maxopt.m4 +206 -0
  139. islpy-2025.2/isl/m4/ax_cflags_warn_all.m4 +158 -0
  140. islpy-2025.2/isl/m4/ax_check_compile_flag.m4 +53 -0
  141. islpy-2025.2/isl/m4/ax_compiler_vendor.m4 +120 -0
  142. islpy-2025.2/isl/m4/ax_create_pkgconfig_info.m4 +351 -0
  143. islpy-2025.2/isl/m4/ax_create_stdint_h.m4 +716 -0
  144. islpy-2025.2/isl/m4/ax_cxx_compile_stdcxx.m4 +962 -0
  145. islpy-2025.2/isl/m4/ax_cxx_compile_stdcxx_11.m4 +39 -0
  146. islpy-2025.2/isl/m4/ax_cxx_compile_stdcxx_11_no_override.m4 +37 -0
  147. islpy-2025.2/isl/m4/ax_cxx_compile_stdcxx_17.m4 +35 -0
  148. islpy-2025.2/isl/m4/ax_detect_clang.m4 +297 -0
  149. islpy-2025.2/isl/m4/ax_detect_git_head.m4 +34 -0
  150. islpy-2025.2/isl/m4/ax_detect_gmp.m4 +47 -0
  151. islpy-2025.2/isl/m4/ax_detect_imath.m4 +16 -0
  152. islpy-2025.2/isl/m4/ax_gcc_archflag.m4 +267 -0
  153. islpy-2025.2/isl/m4/ax_gcc_warn_unused_result.m4 +37 -0
  154. islpy-2025.2/isl/m4/ax_gcc_x86_cpuid.m4 +89 -0
  155. islpy-2025.2/isl/m4/ax_prog_cc_for_build.m4 +187 -0
  156. islpy-2025.2/isl/m4/ax_prog_cxx_for_build.m4 +110 -0
  157. islpy-2025.2/isl/m4/ax_set_warning_flags.m4 +17 -0
  158. islpy-2025.2/isl/m4/ax_submodule.m4 +71 -0
  159. islpy-2025.2/isl/m4/isl_detect_diff_options.m4 +13 -0
  160. islpy-2025.2/isl/pip_test.sh.in +31 -0
  161. islpy-2025.2/isl/python/isl.py.top +49 -0
  162. islpy-2025.2/isl/schedule_test.sh.in +27 -0
  163. islpy-2025.2/isl/test_inputs/affine.polylib +9 -0
  164. islpy-2025.2/isl/test_inputs/affine2.polylib +9 -0
  165. islpy-2025.2/isl/test_inputs/affine3.polylib +7 -0
  166. islpy-2025.2/isl/test_inputs/application.omega +3 -0
  167. islpy-2025.2/isl/test_inputs/application2.omega +3 -0
  168. islpy-2025.2/isl/test_inputs/basicLinear.pwqp +1 -0
  169. islpy-2025.2/isl/test_inputs/basicLinear2.pwqp +1 -0
  170. islpy-2025.2/isl/test_inputs/basicTest.pwqp +1 -0
  171. islpy-2025.2/isl/test_inputs/basicTestParameterPosNeg.pwqp +1 -0
  172. islpy-2025.2/isl/test_inputs/boulet.pip +13 -0
  173. islpy-2025.2/isl/test_inputs/brisebarre.pip +34 -0
  174. islpy-2025.2/isl/test_inputs/cg1.pip +15 -0
  175. islpy-2025.2/isl/test_inputs/codegen/atomic.c +6 -0
  176. islpy-2025.2/isl/test_inputs/codegen/atomic.in +3 -0
  177. islpy-2025.2/isl/test_inputs/codegen/atomic.st +8 -0
  178. islpy-2025.2/isl/test_inputs/codegen/atomic2.c +2 -0
  179. islpy-2025.2/isl/test_inputs/codegen/atomic2.in +4 -0
  180. islpy-2025.2/isl/test_inputs/codegen/atomic3.c +9 -0
  181. islpy-2025.2/isl/test_inputs/codegen/atomic3.in +5 -0
  182. islpy-2025.2/isl/test_inputs/codegen/atomic4.c +2 -0
  183. islpy-2025.2/isl/test_inputs/codegen/atomic4.in +4 -0
  184. islpy-2025.2/isl/test_inputs/codegen/bilinear.c +9 -0
  185. islpy-2025.2/isl/test_inputs/codegen/bilinear.st +9 -0
  186. islpy-2025.2/isl/test_inputs/codegen/cholesky.c +4 -0
  187. islpy-2025.2/isl/test_inputs/codegen/cholesky.st +9 -0
  188. islpy-2025.2/isl/test_inputs/codegen/cloog/0D-1.c +1 -0
  189. islpy-2025.2/isl/test_inputs/codegen/cloog/0D-1.st +3 -0
  190. islpy-2025.2/isl/test_inputs/codegen/cloog/0D-2.c +2 -0
  191. islpy-2025.2/isl/test_inputs/codegen/cloog/0D-2.st +3 -0
  192. islpy-2025.2/isl/test_inputs/codegen/cloog/0D-3.c +1 -0
  193. islpy-2025.2/isl/test_inputs/codegen/cloog/0D-3.st +3 -0
  194. islpy-2025.2/isl/test_inputs/codegen/cloog/1point-1.c +1 -0
  195. islpy-2025.2/isl/test_inputs/codegen/cloog/1point-1.st +6 -0
  196. islpy-2025.2/isl/test_inputs/codegen/cloog/1point-2.c +1 -0
  197. islpy-2025.2/isl/test_inputs/codegen/cloog/1point-2.st +6 -0
  198. islpy-2025.2/isl/test_inputs/codegen/cloog/4-param.c +12 -0
  199. islpy-2025.2/isl/test_inputs/codegen/cloog/4-param.st +10 -0
  200. islpy-2025.2/isl/test_inputs/codegen/cloog/README +2 -0
  201. islpy-2025.2/isl/test_inputs/codegen/cloog/backtrack.c +1 -0
  202. islpy-2025.2/isl/test_inputs/codegen/cloog/backtrack.st +6 -0
  203. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-1.c +2 -0
  204. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-1.st +6 -0
  205. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-2.c +1 -0
  206. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-2.st +6 -0
  207. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-3.c +2 -0
  208. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-3.st +6 -0
  209. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-4.c +2 -0
  210. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-4.st +6 -0
  211. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-5.c +1 -0
  212. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-5.st +6 -0
  213. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-6.c +1 -0
  214. islpy-2025.2/isl/test_inputs/codegen/cloog/basic-bounds-6.st +6 -0
  215. islpy-2025.2/isl/test_inputs/codegen/cloog/block.c +4 -0
  216. islpy-2025.2/isl/test_inputs/codegen/cloog/block.st +10 -0
  217. islpy-2025.2/isl/test_inputs/codegen/cloog/block2.c +5 -0
  218. islpy-2025.2/isl/test_inputs/codegen/cloog/block2.st +11 -0
  219. islpy-2025.2/isl/test_inputs/codegen/cloog/block3.c +4 -0
  220. islpy-2025.2/isl/test_inputs/codegen/cloog/block3.st +6 -0
  221. islpy-2025.2/isl/test_inputs/codegen/cloog/byu98-1-2-3.c +16 -0
  222. islpy-2025.2/isl/test_inputs/codegen/cloog/byu98-1-2-3.st +10 -0
  223. islpy-2025.2/isl/test_inputs/codegen/cloog/cholesky.c +12 -0
  224. islpy-2025.2/isl/test_inputs/codegen/cloog/cholesky.st +26 -0
  225. islpy-2025.2/isl/test_inputs/codegen/cloog/cholesky2.c +15 -0
  226. islpy-2025.2/isl/test_inputs/codegen/cloog/cholesky2.st +6 -0
  227. islpy-2025.2/isl/test_inputs/codegen/cloog/christian.c +6 -0
  228. islpy-2025.2/isl/test_inputs/codegen/cloog/christian.st +6 -0
  229. islpy-2025.2/isl/test_inputs/codegen/cloog/classen.c +63 -0
  230. islpy-2025.2/isl/test_inputs/codegen/cloog/classen.st +24 -0
  231. islpy-2025.2/isl/test_inputs/codegen/cloog/classen2.c +4 -0
  232. islpy-2025.2/isl/test_inputs/codegen/cloog/classen2.st +6 -0
  233. islpy-2025.2/isl/test_inputs/codegen/cloog/constant.c +16 -0
  234. islpy-2025.2/isl/test_inputs/codegen/cloog/constant.st +11 -0
  235. islpy-2025.2/isl/test_inputs/codegen/cloog/constbound.c +8 -0
  236. islpy-2025.2/isl/test_inputs/codegen/cloog/constbound.st +16 -0
  237. islpy-2025.2/isl/test_inputs/codegen/cloog/darte.c +14 -0
  238. islpy-2025.2/isl/test_inputs/codegen/cloog/darte.st +6 -0
  239. islpy-2025.2/isl/test_inputs/codegen/cloog/dealII.c +16 -0
  240. islpy-2025.2/isl/test_inputs/codegen/cloog/dealII.st +10 -0
  241. islpy-2025.2/isl/test_inputs/codegen/cloog/donotsimp.c +6 -0
  242. islpy-2025.2/isl/test_inputs/codegen/cloog/donotsimp.st +9 -0
  243. islpy-2025.2/isl/test_inputs/codegen/cloog/dot.c +5 -0
  244. islpy-2025.2/isl/test_inputs/codegen/cloog/dot.st +10 -0
  245. islpy-2025.2/isl/test_inputs/codegen/cloog/dot2.c +10 -0
  246. islpy-2025.2/isl/test_inputs/codegen/cloog/dot2.st +10 -0
  247. islpy-2025.2/isl/test_inputs/codegen/cloog/durbin_e_s.c +21 -0
  248. islpy-2025.2/isl/test_inputs/codegen/cloog/durbin_e_s.st +16 -0
  249. islpy-2025.2/isl/test_inputs/codegen/cloog/emploi.c +5 -0
  250. islpy-2025.2/isl/test_inputs/codegen/cloog/emploi.st +10 -0
  251. islpy-2025.2/isl/test_inputs/codegen/cloog/equality.c +7 -0
  252. islpy-2025.2/isl/test_inputs/codegen/cloog/equality.st +10 -0
  253. islpy-2025.2/isl/test_inputs/codegen/cloog/equality2.c +8 -0
  254. islpy-2025.2/isl/test_inputs/codegen/cloog/equality2.st +10 -0
  255. islpy-2025.2/isl/test_inputs/codegen/cloog/esced.c +5 -0
  256. islpy-2025.2/isl/test_inputs/codegen/cloog/esced.st +10 -0
  257. islpy-2025.2/isl/test_inputs/codegen/cloog/ex1.c +13 -0
  258. islpy-2025.2/isl/test_inputs/codegen/cloog/ex1.st +10 -0
  259. islpy-2025.2/isl/test_inputs/codegen/cloog/faber.c +147 -0
  260. islpy-2025.2/isl/test_inputs/codegen/cloog/faber.st +18 -0
  261. islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-1-1-2.c +7 -0
  262. islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-1-1-2.st +12 -0
  263. islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-2-1-2-3.c +8 -0
  264. islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-2-1-2-3.st +12 -0
  265. islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-3-1-2.c +15 -0
  266. islpy-2025.2/isl/test_inputs/codegen/cloog/forwardsub-3-1-2.st +12 -0
  267. islpy-2025.2/isl/test_inputs/codegen/cloog/gauss.c +7 -0
  268. islpy-2025.2/isl/test_inputs/codegen/cloog/gauss.st +6 -0
  269. islpy-2025.2/isl/test_inputs/codegen/cloog/gesced.c +14 -0
  270. islpy-2025.2/isl/test_inputs/codegen/cloog/gesced.st +6 -0
  271. islpy-2025.2/isl/test_inputs/codegen/cloog/gesced2.c +18 -0
  272. islpy-2025.2/isl/test_inputs/codegen/cloog/gesced2.st +6 -0
  273. islpy-2025.2/isl/test_inputs/codegen/cloog/gesced3.c +8 -0
  274. islpy-2025.2/isl/test_inputs/codegen/cloog/gesced3.st +6 -0
  275. islpy-2025.2/isl/test_inputs/codegen/cloog/guide.c +4 -0
  276. islpy-2025.2/isl/test_inputs/codegen/cloog/guide.st +10 -0
  277. islpy-2025.2/isl/test_inputs/codegen/cloog/iftest.c +2 -0
  278. islpy-2025.2/isl/test_inputs/codegen/cloog/iftest.st +6 -0
  279. islpy-2025.2/isl/test_inputs/codegen/cloog/iftest2.c +3 -0
  280. islpy-2025.2/isl/test_inputs/codegen/cloog/iftest2.st +6 -0
  281. islpy-2025.2/isl/test_inputs/codegen/cloog/infinite2.c +7 -0
  282. islpy-2025.2/isl/test_inputs/codegen/cloog/infinite2.st +10 -0
  283. islpy-2025.2/isl/test_inputs/codegen/cloog/jacobi-shared.c +3 -0
  284. islpy-2025.2/isl/test_inputs/codegen/cloog/jacobi-shared.st +6 -0
  285. islpy-2025.2/isl/test_inputs/codegen/cloog/largeur.c +3 -0
  286. islpy-2025.2/isl/test_inputs/codegen/cloog/largeur.st +6 -0
  287. islpy-2025.2/isl/test_inputs/codegen/cloog/levenshtein-1-2-3.c +30 -0
  288. islpy-2025.2/isl/test_inputs/codegen/cloog/levenshtein-1-2-3.st +16 -0
  289. islpy-2025.2/isl/test_inputs/codegen/cloog/lex.c +4 -0
  290. islpy-2025.2/isl/test_inputs/codegen/cloog/lex.st +10 -0
  291. islpy-2025.2/isl/test_inputs/codegen/cloog/lineality-1-2.c +8 -0
  292. islpy-2025.2/isl/test_inputs/codegen/cloog/lineality-1-2.st +10 -0
  293. islpy-2025.2/isl/test_inputs/codegen/cloog/lineality-2-1-2.c +12 -0
  294. islpy-2025.2/isl/test_inputs/codegen/cloog/lineality-2-1-2.st +10 -0
  295. islpy-2025.2/isl/test_inputs/codegen/cloog/logo.c +15 -0
  296. islpy-2025.2/isl/test_inputs/codegen/cloog/logo.st +10 -0
  297. islpy-2025.2/isl/test_inputs/codegen/cloog/logopar.c +15 -0
  298. islpy-2025.2/isl/test_inputs/codegen/cloog/logopar.st +10 -0
  299. islpy-2025.2/isl/test_inputs/codegen/cloog/lu.c +7 -0
  300. islpy-2025.2/isl/test_inputs/codegen/cloog/lu.st +6 -0
  301. islpy-2025.2/isl/test_inputs/codegen/cloog/lu2.c +7 -0
  302. islpy-2025.2/isl/test_inputs/codegen/cloog/lu2.st +10 -0
  303. islpy-2025.2/isl/test_inputs/codegen/cloog/lux.c +7 -0
  304. islpy-2025.2/isl/test_inputs/codegen/cloog/lux.st +10 -0
  305. islpy-2025.2/isl/test_inputs/codegen/cloog/merge.c +6 -0
  306. islpy-2025.2/isl/test_inputs/codegen/cloog/merge.st +11 -0
  307. islpy-2025.2/isl/test_inputs/codegen/cloog/min-1-1.c +3 -0
  308. islpy-2025.2/isl/test_inputs/codegen/cloog/min-1-1.st +6 -0
  309. islpy-2025.2/isl/test_inputs/codegen/cloog/min-2-1.c +4 -0
  310. islpy-2025.2/isl/test_inputs/codegen/cloog/min-2-1.st +6 -0
  311. islpy-2025.2/isl/test_inputs/codegen/cloog/min-3-1.c +3 -0
  312. islpy-2025.2/isl/test_inputs/codegen/cloog/min-3-1.st +6 -0
  313. islpy-2025.2/isl/test_inputs/codegen/cloog/min-4-1.c +2 -0
  314. islpy-2025.2/isl/test_inputs/codegen/cloog/min-4-1.st +6 -0
  315. islpy-2025.2/isl/test_inputs/codegen/cloog/mod.c +3 -0
  316. islpy-2025.2/isl/test_inputs/codegen/cloog/mod.st +6 -0
  317. islpy-2025.2/isl/test_inputs/codegen/cloog/mod2.c +3 -0
  318. islpy-2025.2/isl/test_inputs/codegen/cloog/mod2.st +6 -0
  319. islpy-2025.2/isl/test_inputs/codegen/cloog/mod3.c +4 -0
  320. islpy-2025.2/isl/test_inputs/codegen/cloog/mod3.st +6 -0
  321. islpy-2025.2/isl/test_inputs/codegen/cloog/mod4.c +5 -0
  322. islpy-2025.2/isl/test_inputs/codegen/cloog/mod4.st +11 -0
  323. islpy-2025.2/isl/test_inputs/codegen/cloog/mode.c +10 -0
  324. islpy-2025.2/isl/test_inputs/codegen/cloog/mode.st +10 -0
  325. islpy-2025.2/isl/test_inputs/codegen/cloog/multi-mm-1.c +8 -0
  326. islpy-2025.2/isl/test_inputs/codegen/cloog/multi-mm-1.st +10 -0
  327. islpy-2025.2/isl/test_inputs/codegen/cloog/multi-stride.st +6 -0
  328. islpy-2025.2/isl/test_inputs/codegen/cloog/multi-stride2.c +2 -0
  329. islpy-2025.2/isl/test_inputs/codegen/cloog/multi-stride2.st +6 -0
  330. islpy-2025.2/isl/test_inputs/codegen/cloog/mxm-shared.c +3 -0
  331. islpy-2025.2/isl/test_inputs/codegen/cloog/mxm-shared.st +6 -0
  332. islpy-2025.2/isl/test_inputs/codegen/cloog/no_lindep.c +1 -0
  333. islpy-2025.2/isl/test_inputs/codegen/cloog/no_lindep.st +6 -0
  334. islpy-2025.2/isl/test_inputs/codegen/cloog/nul_basic1.c +2 -0
  335. islpy-2025.2/isl/test_inputs/codegen/cloog/nul_basic1.st +6 -0
  336. islpy-2025.2/isl/test_inputs/codegen/cloog/nul_basic2.c +5 -0
  337. islpy-2025.2/isl/test_inputs/codegen/cloog/nul_basic2.st +10 -0
  338. islpy-2025.2/isl/test_inputs/codegen/cloog/nul_complex1.c +3 -0
  339. islpy-2025.2/isl/test_inputs/codegen/cloog/nul_complex1.st +6 -0
  340. islpy-2025.2/isl/test_inputs/codegen/cloog/nul_lcpc.c +11 -0
  341. islpy-2025.2/isl/test_inputs/codegen/cloog/nul_lcpc.st +10 -0
  342. islpy-2025.2/isl/test_inputs/codegen/cloog/orc.c +14 -0
  343. islpy-2025.2/isl/test_inputs/codegen/cloog/orc.st +13 -0
  344. islpy-2025.2/isl/test_inputs/codegen/cloog/otl.c +7 -0
  345. islpy-2025.2/isl/test_inputs/codegen/cloog/otl.st +6 -0
  346. islpy-2025.2/isl/test_inputs/codegen/cloog/param-split.c +6 -0
  347. islpy-2025.2/isl/test_inputs/codegen/cloog/param-split.st +10 -0
  348. islpy-2025.2/isl/test_inputs/codegen/cloog/pouchet.c +12 -0
  349. islpy-2025.2/isl/test_inputs/codegen/cloog/pouchet.st +6 -0
  350. islpy-2025.2/isl/test_inputs/codegen/cloog/rectangle.c +3 -0
  351. islpy-2025.2/isl/test_inputs/codegen/cloog/rectangle.st +6 -0
  352. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-QR.c +54 -0
  353. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-QR.st +36 -0
  354. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-bastoul3.c +3 -0
  355. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-bastoul3.st +6 -0
  356. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-cholesky2.c +9 -0
  357. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-cholesky2.st +20 -0
  358. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-fusion1.c +6 -0
  359. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-fusion1.st +17 -0
  360. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-fusion2.c +12 -0
  361. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-fusion2.st +16 -0
  362. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-jacobi2.c +3 -0
  363. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-jacobi2.st +9 -0
  364. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-jacobi3.c +8 -0
  365. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-jacobi3.st +22 -0
  366. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam1.c +10 -0
  367. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam1.st +13 -0
  368. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam2.c +8 -0
  369. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam2.st +23 -0
  370. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam3.c +11 -0
  371. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam3.st +23 -0
  372. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam4.c +10 -0
  373. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam4.st +19 -0
  374. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam5.c +9 -0
  375. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam5.st +26 -0
  376. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam6.c +6 -0
  377. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-lim-lam6.st +19 -0
  378. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-liu-zhuge1.c +19 -0
  379. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-liu-zhuge1.st +16 -0
  380. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner3.c +4 -0
  381. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner3.st +12 -0
  382. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner4.c +5 -0
  383. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner4.st +15 -0
  384. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner5.c +5 -0
  385. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-loechner5.st +15 -0
  386. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-long.c +14 -0
  387. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-long.st +36 -0
  388. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-interp.c +83 -0
  389. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-interp.st +115 -0
  390. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-interp2.c +16 -0
  391. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-interp2.st +45 -0
  392. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-psinv.c +9 -0
  393. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-psinv.st +23 -0
  394. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-resid.c +9 -0
  395. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-resid.st +23 -0
  396. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-rprj3.c +35 -0
  397. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-mg-rprj3.st +28 -0
  398. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali1.c +7 -0
  399. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali1.st +16 -0
  400. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali2.c +6 -0
  401. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali2.st +19 -0
  402. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali3.c +7 -0
  403. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali3.st +22 -0
  404. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali4.c +6 -0
  405. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali4.st +19 -0
  406. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali5.c +10 -0
  407. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali5.st +26 -0
  408. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali6.c +8 -0
  409. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-pingali6.st +22 -0
  410. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-stride.c +2 -0
  411. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-stride.st +6 -0
  412. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-stride2.c +2 -0
  413. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-stride2.st +6 -0
  414. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-tang-xue1.c +5 -0
  415. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-tang-xue1.st +15 -0
  416. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-two.c +1 -0
  417. islpy-2025.2/isl/test_inputs/codegen/cloog/reservoir-two.st +6 -0
  418. islpy-2025.2/isl/test_inputs/codegen/cloog/singleton.c +2 -0
  419. islpy-2025.2/isl/test_inputs/codegen/cloog/singleton.st +7 -0
  420. islpy-2025.2/isl/test_inputs/codegen/cloog/sor1d.c +13 -0
  421. islpy-2025.2/isl/test_inputs/codegen/cloog/sor1d.st +24 -0
  422. islpy-2025.2/isl/test_inputs/codegen/cloog/square+triangle-1-1-2-3.c +9 -0
  423. islpy-2025.2/isl/test_inputs/codegen/cloog/square+triangle-1-1-2-3.st +10 -0
  424. islpy-2025.2/isl/test_inputs/codegen/cloog/stride.c +5 -0
  425. islpy-2025.2/isl/test_inputs/codegen/cloog/stride.st +6 -0
  426. islpy-2025.2/isl/test_inputs/codegen/cloog/stride2.c +6 -0
  427. islpy-2025.2/isl/test_inputs/codegen/cloog/stride2.st +6 -0
  428. islpy-2025.2/isl/test_inputs/codegen/cloog/stride3.c +2 -0
  429. islpy-2025.2/isl/test_inputs/codegen/cloog/stride3.st +6 -0
  430. islpy-2025.2/isl/test_inputs/codegen/cloog/stride4.c +3 -0
  431. islpy-2025.2/isl/test_inputs/codegen/cloog/stride4.st +6 -0
  432. islpy-2025.2/isl/test_inputs/codegen/cloog/swim.c +159 -0
  433. islpy-2025.2/isl/test_inputs/codegen/cloog/swim.st +223 -0
  434. islpy-2025.2/isl/test_inputs/codegen/cloog/test.c +15 -0
  435. islpy-2025.2/isl/test_inputs/codegen/cloog/test.st +10 -0
  436. islpy-2025.2/isl/test_inputs/codegen/cloog/thomasset.c +7 -0
  437. islpy-2025.2/isl/test_inputs/codegen/cloog/thomasset.st +6 -0
  438. islpy-2025.2/isl/test_inputs/codegen/cloog/tiling.c +3 -0
  439. islpy-2025.2/isl/test_inputs/codegen/cloog/tiling.st +6 -0
  440. islpy-2025.2/isl/test_inputs/codegen/cloog/uday_scalars.c +4 -0
  441. islpy-2025.2/isl/test_inputs/codegen/cloog/uday_scalars.st +13 -0
  442. islpy-2025.2/isl/test_inputs/codegen/cloog/union.c +7 -0
  443. islpy-2025.2/isl/test_inputs/codegen/cloog/union.st +6 -0
  444. islpy-2025.2/isl/test_inputs/codegen/cloog/unroll.c +11 -0
  445. islpy-2025.2/isl/test_inputs/codegen/cloog/unroll.st +6 -0
  446. islpy-2025.2/isl/test_inputs/codegen/cloog/unroll2.c +5 -0
  447. islpy-2025.2/isl/test_inputs/codegen/cloog/unroll2.st +6 -0
  448. islpy-2025.2/isl/test_inputs/codegen/cloog/usvd_e_t.c +346 -0
  449. islpy-2025.2/isl/test_inputs/codegen/cloog/usvd_e_t.st +34 -0
  450. islpy-2025.2/isl/test_inputs/codegen/cloog/vasilache.c +22 -0
  451. islpy-2025.2/isl/test_inputs/codegen/cloog/vasilache.st +37 -0
  452. islpy-2025.2/isl/test_inputs/codegen/cloog/vivien.c +85 -0
  453. islpy-2025.2/isl/test_inputs/codegen/cloog/vivien.st +6 -0
  454. islpy-2025.2/isl/test_inputs/codegen/cloog/vivien2.c +76 -0
  455. islpy-2025.2/isl/test_inputs/codegen/cloog/vivien2.st +6 -0
  456. islpy-2025.2/isl/test_inputs/codegen/cloog/walters.c +14 -0
  457. islpy-2025.2/isl/test_inputs/codegen/cloog/walters.st +12 -0
  458. islpy-2025.2/isl/test_inputs/codegen/cloog/walters2.c +10 -0
  459. islpy-2025.2/isl/test_inputs/codegen/cloog/walters2.st +10 -0
  460. islpy-2025.2/isl/test_inputs/codegen/cloog/walters3.c +5 -0
  461. islpy-2025.2/isl/test_inputs/codegen/cloog/walters3.st +10 -0
  462. islpy-2025.2/isl/test_inputs/codegen/cloog/wavefront.c +3 -0
  463. islpy-2025.2/isl/test_inputs/codegen/cloog/wavefront.st +6 -0
  464. islpy-2025.2/isl/test_inputs/codegen/cloog/yosr.c +10 -0
  465. islpy-2025.2/isl/test_inputs/codegen/cloog/yosr.st +6 -0
  466. islpy-2025.2/isl/test_inputs/codegen/cloog/yosr2.c +11 -0
  467. islpy-2025.2/isl/test_inputs/codegen/cloog/yosr2.st +6 -0
  468. islpy-2025.2/isl/test_inputs/codegen/cloog/youcef.c +6 -0
  469. islpy-2025.2/isl/test_inputs/codegen/cloog/youcef.st +11 -0
  470. islpy-2025.2/isl/test_inputs/codegen/cloog/youcefn.c +8 -0
  471. islpy-2025.2/isl/test_inputs/codegen/cloog/youcefn.st +11 -0
  472. islpy-2025.2/isl/test_inputs/codegen/component0.c +3 -0
  473. islpy-2025.2/isl/test_inputs/codegen/component0.st +3 -0
  474. islpy-2025.2/isl/test_inputs/codegen/component1.c +3 -0
  475. islpy-2025.2/isl/test_inputs/codegen/component1.st +7 -0
  476. islpy-2025.2/isl/test_inputs/codegen/component2.c +5 -0
  477. islpy-2025.2/isl/test_inputs/codegen/component2.st +7 -0
  478. islpy-2025.2/isl/test_inputs/codegen/component3.c +3 -0
  479. islpy-2025.2/isl/test_inputs/codegen/component3.st +7 -0
  480. islpy-2025.2/isl/test_inputs/codegen/component4.c +5 -0
  481. islpy-2025.2/isl/test_inputs/codegen/component4.st +7 -0
  482. islpy-2025.2/isl/test_inputs/codegen/component5.c +6 -0
  483. islpy-2025.2/isl/test_inputs/codegen/component5.st +9 -0
  484. islpy-2025.2/isl/test_inputs/codegen/component6.c +3 -0
  485. islpy-2025.2/isl/test_inputs/codegen/component6.st +10 -0
  486. islpy-2025.2/isl/test_inputs/codegen/component7.c +4 -0
  487. islpy-2025.2/isl/test_inputs/codegen/component7.st +11 -0
  488. islpy-2025.2/isl/test_inputs/codegen/correlation.c +55 -0
  489. islpy-2025.2/isl/test_inputs/codegen/correlation.st +18 -0
  490. islpy-2025.2/isl/test_inputs/codegen/disjuncts.c +10 -0
  491. islpy-2025.2/isl/test_inputs/codegen/disjuncts.in +7 -0
  492. islpy-2025.2/isl/test_inputs/codegen/disjuncts2.c +3 -0
  493. islpy-2025.2/isl/test_inputs/codegen/disjuncts2.st +4 -0
  494. islpy-2025.2/isl/test_inputs/codegen/dwt.c +2 -0
  495. islpy-2025.2/isl/test_inputs/codegen/dwt.in +3 -0
  496. islpy-2025.2/isl/test_inputs/codegen/empty.c +6 -0
  497. islpy-2025.2/isl/test_inputs/codegen/empty.in +5 -0
  498. islpy-2025.2/isl/test_inputs/codegen/expansion.c +7 -0
  499. islpy-2025.2/isl/test_inputs/codegen/expansion.st +9 -0
  500. islpy-2025.2/isl/test_inputs/codegen/filter.c +9 -0
  501. islpy-2025.2/isl/test_inputs/codegen/filter.st +18 -0
  502. islpy-2025.2/isl/test_inputs/codegen/gemm.c +6 -0
  503. islpy-2025.2/isl/test_inputs/codegen/gemm.st +12 -0
  504. islpy-2025.2/isl/test_inputs/codegen/group.c +5 -0
  505. islpy-2025.2/isl/test_inputs/codegen/group.st +2 -0
  506. islpy-2025.2/isl/test_inputs/codegen/hoist.c +45 -0
  507. islpy-2025.2/isl/test_inputs/codegen/hoist.in +10 -0
  508. islpy-2025.2/isl/test_inputs/codegen/hoist2.c +5 -0
  509. islpy-2025.2/isl/test_inputs/codegen/hoist2.in +5 -0
  510. islpy-2025.2/isl/test_inputs/codegen/isolate1.c +6 -0
  511. islpy-2025.2/isl/test_inputs/codegen/isolate1.st +5 -0
  512. islpy-2025.2/isl/test_inputs/codegen/isolate2.c +9 -0
  513. islpy-2025.2/isl/test_inputs/codegen/isolate2.st +7 -0
  514. islpy-2025.2/isl/test_inputs/codegen/isolate3.c +15 -0
  515. islpy-2025.2/isl/test_inputs/codegen/isolate3.st +5 -0
  516. islpy-2025.2/isl/test_inputs/codegen/isolate4.c +11 -0
  517. islpy-2025.2/isl/test_inputs/codegen/isolate4.st +5 -0
  518. islpy-2025.2/isl/test_inputs/codegen/isolate5.c +27 -0
  519. islpy-2025.2/isl/test_inputs/codegen/isolate5.st +5 -0
  520. islpy-2025.2/isl/test_inputs/codegen/isolate6.c +24 -0
  521. islpy-2025.2/isl/test_inputs/codegen/isolate6.st +8 -0
  522. islpy-2025.2/isl/test_inputs/codegen/isolate7.c +27 -0
  523. islpy-2025.2/isl/test_inputs/codegen/isolate7.st +16 -0
  524. islpy-2025.2/isl/test_inputs/codegen/jacobi_kernel4.c +2 -0
  525. islpy-2025.2/isl/test_inputs/codegen/jacobi_kernel4.in +4 -0
  526. islpy-2025.2/isl/test_inputs/codegen/lu.c +18 -0
  527. islpy-2025.2/isl/test_inputs/codegen/lu.in +4 -0
  528. islpy-2025.2/isl/test_inputs/codegen/mod.c +2 -0
  529. islpy-2025.2/isl/test_inputs/codegen/mod.in +4 -0
  530. islpy-2025.2/isl/test_inputs/codegen/mod2.c +1 -0
  531. islpy-2025.2/isl/test_inputs/codegen/mod2.st +8 -0
  532. islpy-2025.2/isl/test_inputs/codegen/omega/README +5 -0
  533. islpy-2025.2/isl/test_inputs/codegen/omega/basics-0.c +6 -0
  534. islpy-2025.2/isl/test_inputs/codegen/omega/basics-0.in +3 -0
  535. islpy-2025.2/isl/test_inputs/codegen/omega/basics-1.c +3 -0
  536. islpy-2025.2/isl/test_inputs/codegen/omega/basics-1.in +3 -0
  537. islpy-2025.2/isl/test_inputs/codegen/omega/chosol-0.c +7 -0
  538. islpy-2025.2/isl/test_inputs/codegen/omega/chosol-0.in +3 -0
  539. islpy-2025.2/isl/test_inputs/codegen/omega/chosol-1.c +7 -0
  540. islpy-2025.2/isl/test_inputs/codegen/omega/chosol-1.in +3 -0
  541. islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-0.c +7 -0
  542. islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-0.in +3 -0
  543. islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-1.c +16 -0
  544. islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-1.in +3 -0
  545. islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-2.c +15 -0
  546. islpy-2025.2/isl/test_inputs/codegen/omega/code_gen-2.in +3 -0
  547. islpy-2025.2/isl/test_inputs/codegen/omega/collard-0.c +14 -0
  548. islpy-2025.2/isl/test_inputs/codegen/omega/collard-0.in +3 -0
  549. islpy-2025.2/isl/test_inputs/codegen/omega/dagstuhl1-0.c +2 -0
  550. islpy-2025.2/isl/test_inputs/codegen/omega/dagstuhl1-0.in +3 -0
  551. islpy-2025.2/isl/test_inputs/codegen/omega/dagstuhl1-1.c +2 -0
  552. islpy-2025.2/isl/test_inputs/codegen/omega/dagstuhl1-1.in +3 -0
  553. islpy-2025.2/isl/test_inputs/codegen/omega/fc1-0.c +7 -0
  554. islpy-2025.2/isl/test_inputs/codegen/omega/fc1-0.in +3 -0
  555. islpy-2025.2/isl/test_inputs/codegen/omega/fc1-1.c +15 -0
  556. islpy-2025.2/isl/test_inputs/codegen/omega/fc1-1.in +3 -0
  557. islpy-2025.2/isl/test_inputs/codegen/omega/fc1-2.c +15 -0
  558. islpy-2025.2/isl/test_inputs/codegen/omega/fc1-2.in +3 -0
  559. islpy-2025.2/isl/test_inputs/codegen/omega/fc2-0.c +7 -0
  560. islpy-2025.2/isl/test_inputs/codegen/omega/fc2-0.in +3 -0
  561. islpy-2025.2/isl/test_inputs/codegen/omega/fc2-1.c +15 -0
  562. islpy-2025.2/isl/test_inputs/codegen/omega/fc2-1.in +3 -0
  563. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-0.c +2 -0
  564. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-0.in +3 -0
  565. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-1.c +2 -0
  566. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-1.in +3 -0
  567. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-2.c +2 -0
  568. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-2.in +3 -0
  569. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-3.c +2 -0
  570. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-3.in +3 -0
  571. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-4.c +3 -0
  572. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-4.in +3 -0
  573. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-5.c +2 -0
  574. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-5.in +3 -0
  575. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-6.c +3 -0
  576. islpy-2025.2/isl/test_inputs/codegen/omega/floor_bound-6.in +3 -0
  577. islpy-2025.2/isl/test_inputs/codegen/omega/gc-0.c +2 -0
  578. islpy-2025.2/isl/test_inputs/codegen/omega/gc-0.in +3 -0
  579. islpy-2025.2/isl/test_inputs/codegen/omega/ge-0.c +7 -0
  580. islpy-2025.2/isl/test_inputs/codegen/omega/ge-0.in +3 -0
  581. islpy-2025.2/isl/test_inputs/codegen/omega/ge-1.c +7 -0
  582. islpy-2025.2/isl/test_inputs/codegen/omega/ge-1.in +3 -0
  583. islpy-2025.2/isl/test_inputs/codegen/omega/gist-0.c +3 -0
  584. islpy-2025.2/isl/test_inputs/codegen/omega/gist-0.in +3 -0
  585. islpy-2025.2/isl/test_inputs/codegen/omega/gist-1.c +3 -0
  586. islpy-2025.2/isl/test_inputs/codegen/omega/gist-1.in +3 -0
  587. islpy-2025.2/isl/test_inputs/codegen/omega/gist-2.c +3 -0
  588. islpy-2025.2/isl/test_inputs/codegen/omega/gist-2.in +3 -0
  589. islpy-2025.2/isl/test_inputs/codegen/omega/gist-3.c +3 -0
  590. islpy-2025.2/isl/test_inputs/codegen/omega/gist-3.in +3 -0
  591. islpy-2025.2/isl/test_inputs/codegen/omega/gist-4.c +3 -0
  592. islpy-2025.2/isl/test_inputs/codegen/omega/gist-4.in +3 -0
  593. islpy-2025.2/isl/test_inputs/codegen/omega/gist-5.c +3 -0
  594. islpy-2025.2/isl/test_inputs/codegen/omega/gist-5.in +3 -0
  595. islpy-2025.2/isl/test_inputs/codegen/omega/guard1-0.c +2 -0
  596. islpy-2025.2/isl/test_inputs/codegen/omega/guard1-0.in +3 -0
  597. islpy-2025.2/isl/test_inputs/codegen/omega/guard1-1.c +2 -0
  598. islpy-2025.2/isl/test_inputs/codegen/omega/guard1-1.in +3 -0
  599. islpy-2025.2/isl/test_inputs/codegen/omega/hpf-0.c +4 -0
  600. islpy-2025.2/isl/test_inputs/codegen/omega/hpf-0.in +3 -0
  601. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-0.c +13 -0
  602. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-0.in +3 -0
  603. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-1.c +9 -0
  604. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-1.in +3 -0
  605. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-2.c +12 -0
  606. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-2.in +3 -0
  607. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-3.c +13 -0
  608. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-3.in +3 -0
  609. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-4.c +7 -0
  610. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-4.in +3 -0
  611. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-5.c +7 -0
  612. islpy-2025.2/isl/test_inputs/codegen/omega/if_then-5.in +3 -0
  613. islpy-2025.2/isl/test_inputs/codegen/omega/iter1-0.c +2 -0
  614. islpy-2025.2/isl/test_inputs/codegen/omega/iter1-0.in +3 -0
  615. islpy-2025.2/isl/test_inputs/codegen/omega/iter2-0.c +3 -0
  616. islpy-2025.2/isl/test_inputs/codegen/omega/iter2-0.in +3 -0
  617. islpy-2025.2/isl/test_inputs/codegen/omega/iter3-0.c +3 -0
  618. islpy-2025.2/isl/test_inputs/codegen/omega/iter3-0.in +3 -0
  619. islpy-2025.2/isl/test_inputs/codegen/omega/iter4-0.c +3 -0
  620. islpy-2025.2/isl/test_inputs/codegen/omega/iter4-0.in +3 -0
  621. islpy-2025.2/isl/test_inputs/codegen/omega/iter5-0.c +3 -0
  622. islpy-2025.2/isl/test_inputs/codegen/omega/iter5-0.in +3 -0
  623. islpy-2025.2/isl/test_inputs/codegen/omega/iter6-0.c +3 -0
  624. islpy-2025.2/isl/test_inputs/codegen/omega/iter6-0.in +3 -0
  625. islpy-2025.2/isl/test_inputs/codegen/omega/iter6-1.c +2 -0
  626. islpy-2025.2/isl/test_inputs/codegen/omega/iter6-1.in +3 -0
  627. islpy-2025.2/isl/test_inputs/codegen/omega/iter7-0.c +2 -0
  628. islpy-2025.2/isl/test_inputs/codegen/omega/iter7-0.in +3 -0
  629. islpy-2025.2/isl/test_inputs/codegen/omega/iter8-0.c +2 -0
  630. islpy-2025.2/isl/test_inputs/codegen/omega/iter8-0.in +3 -0
  631. islpy-2025.2/isl/test_inputs/codegen/omega/iter9-0.c +11 -0
  632. islpy-2025.2/isl/test_inputs/codegen/omega/iter9-0.in +3 -0
  633. islpy-2025.2/isl/test_inputs/codegen/omega/lefur00-0.c +5 -0
  634. islpy-2025.2/isl/test_inputs/codegen/omega/lefur00-0.in +3 -0
  635. islpy-2025.2/isl/test_inputs/codegen/omega/lefur01-0.c +5 -0
  636. islpy-2025.2/isl/test_inputs/codegen/omega/lefur01-0.in +3 -0
  637. islpy-2025.2/isl/test_inputs/codegen/omega/lefur01-1.c +5 -0
  638. islpy-2025.2/isl/test_inputs/codegen/omega/lefur01-1.in +3 -0
  639. islpy-2025.2/isl/test_inputs/codegen/omega/lefur03-0.c +7 -0
  640. islpy-2025.2/isl/test_inputs/codegen/omega/lefur03-0.in +3 -0
  641. islpy-2025.2/isl/test_inputs/codegen/omega/lefur04-0.c +8 -0
  642. islpy-2025.2/isl/test_inputs/codegen/omega/lefur04-0.in +3 -0
  643. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-0.c +9 -0
  644. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-0.in +3 -0
  645. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-1.c +14 -0
  646. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-1.in +3 -0
  647. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-2.c +15 -0
  648. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-2.in +3 -0
  649. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-3.c +16 -0
  650. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-3.in +3 -0
  651. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-4.c +17 -0
  652. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-4.in +3 -0
  653. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-5.c +14 -0
  654. islpy-2025.2/isl/test_inputs/codegen/omega/lift1-5.in +3 -0
  655. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-0.c +9 -0
  656. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-0.in +3 -0
  657. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-1.c +17 -0
  658. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-1.in +3 -0
  659. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-2.c +19 -0
  660. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-2.in +3 -0
  661. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-3.c +21 -0
  662. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-3.in +3 -0
  663. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-4.c +23 -0
  664. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-4.in +3 -0
  665. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-5.c +20 -0
  666. islpy-2025.2/isl/test_inputs/codegen/omega/lift2-5.in +3 -0
  667. islpy-2025.2/isl/test_inputs/codegen/omega/lu-0.c +10 -0
  668. islpy-2025.2/isl/test_inputs/codegen/omega/lu-0.in +3 -0
  669. islpy-2025.2/isl/test_inputs/codegen/omega/lu-1.c +10 -0
  670. islpy-2025.2/isl/test_inputs/codegen/omega/lu-1.in +3 -0
  671. islpy-2025.2/isl/test_inputs/codegen/omega/lu-2.c +10 -0
  672. islpy-2025.2/isl/test_inputs/codegen/omega/lu-2.in +3 -0
  673. islpy-2025.2/isl/test_inputs/codegen/omega/lu-3.c +14 -0
  674. islpy-2025.2/isl/test_inputs/codegen/omega/lu-3.in +3 -0
  675. islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-0.c +7 -0
  676. islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-0.in +3 -0
  677. islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-1.c +7 -0
  678. islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-1.in +3 -0
  679. islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-2.c +11 -0
  680. islpy-2025.2/isl/test_inputs/codegen/omega/lu_ijk-2.in +3 -0
  681. islpy-2025.2/isl/test_inputs/codegen/omega/lu_spmd-0.c +13 -0
  682. islpy-2025.2/isl/test_inputs/codegen/omega/lu_spmd-0.in +3 -0
  683. islpy-2025.2/isl/test_inputs/codegen/omega/lu_spmd-1.c +13 -0
  684. islpy-2025.2/isl/test_inputs/codegen/omega/lu_spmd-1.in +3 -0
  685. islpy-2025.2/isl/test_inputs/codegen/omega/m1-0.c +6 -0
  686. islpy-2025.2/isl/test_inputs/codegen/omega/m1-0.in +3 -0
  687. islpy-2025.2/isl/test_inputs/codegen/omega/m1-1.c +14 -0
  688. islpy-2025.2/isl/test_inputs/codegen/omega/m1-1.in +3 -0
  689. islpy-2025.2/isl/test_inputs/codegen/omega/m10-0.c +7 -0
  690. islpy-2025.2/isl/test_inputs/codegen/omega/m10-0.in +3 -0
  691. islpy-2025.2/isl/test_inputs/codegen/omega/m10-1.c +15 -0
  692. islpy-2025.2/isl/test_inputs/codegen/omega/m10-1.in +3 -0
  693. islpy-2025.2/isl/test_inputs/codegen/omega/m11-0.c +6 -0
  694. islpy-2025.2/isl/test_inputs/codegen/omega/m11-0.in +3 -0
  695. islpy-2025.2/isl/test_inputs/codegen/omega/m12-0.c +3 -0
  696. islpy-2025.2/isl/test_inputs/codegen/omega/m12-0.in +3 -0
  697. islpy-2025.2/isl/test_inputs/codegen/omega/m12-1.c +23 -0
  698. islpy-2025.2/isl/test_inputs/codegen/omega/m12-1.in +3 -0
  699. islpy-2025.2/isl/test_inputs/codegen/omega/m2-0.c +12 -0
  700. islpy-2025.2/isl/test_inputs/codegen/omega/m2-0.in +3 -0
  701. islpy-2025.2/isl/test_inputs/codegen/omega/m2-1.c +10 -0
  702. islpy-2025.2/isl/test_inputs/codegen/omega/m2-1.in +3 -0
  703. islpy-2025.2/isl/test_inputs/codegen/omega/m3-0.c +3 -0
  704. islpy-2025.2/isl/test_inputs/codegen/omega/m3-0.in +3 -0
  705. islpy-2025.2/isl/test_inputs/codegen/omega/m4-0.c +5 -0
  706. islpy-2025.2/isl/test_inputs/codegen/omega/m4-0.in +3 -0
  707. islpy-2025.2/isl/test_inputs/codegen/omega/m4-1.c +5 -0
  708. islpy-2025.2/isl/test_inputs/codegen/omega/m4-1.in +3 -0
  709. islpy-2025.2/isl/test_inputs/codegen/omega/m7-0.c +6 -0
  710. islpy-2025.2/isl/test_inputs/codegen/omega/m7-0.in +3 -0
  711. islpy-2025.2/isl/test_inputs/codegen/omega/m7-1.c +11 -0
  712. islpy-2025.2/isl/test_inputs/codegen/omega/m7-1.in +3 -0
  713. islpy-2025.2/isl/test_inputs/codegen/omega/m8-0.c +6 -0
  714. islpy-2025.2/isl/test_inputs/codegen/omega/m8-0.in +3 -0
  715. islpy-2025.2/isl/test_inputs/codegen/omega/m8-1.c +11 -0
  716. islpy-2025.2/isl/test_inputs/codegen/omega/m8-1.in +3 -0
  717. islpy-2025.2/isl/test_inputs/codegen/omega/m9-0.c +5 -0
  718. islpy-2025.2/isl/test_inputs/codegen/omega/m9-0.in +3 -0
  719. islpy-2025.2/isl/test_inputs/codegen/omega/m9-1.c +5 -0
  720. islpy-2025.2/isl/test_inputs/codegen/omega/m9-1.in +3 -0
  721. islpy-2025.2/isl/test_inputs/codegen/omega/olda-0.c +8 -0
  722. islpy-2025.2/isl/test_inputs/codegen/omega/olda-0.in +3 -0
  723. islpy-2025.2/isl/test_inputs/codegen/omega/olda-1.c +9 -0
  724. islpy-2025.2/isl/test_inputs/codegen/omega/olda-1.in +3 -0
  725. islpy-2025.2/isl/test_inputs/codegen/omega/p.delft-0.c +4 -0
  726. islpy-2025.2/isl/test_inputs/codegen/omega/p.delft-0.in +3 -0
  727. islpy-2025.2/isl/test_inputs/codegen/omega/p.delft2-0.c +11 -0
  728. islpy-2025.2/isl/test_inputs/codegen/omega/p.delft2-0.in +3 -0
  729. islpy-2025.2/isl/test_inputs/codegen/omega/p6-0.c +6 -0
  730. islpy-2025.2/isl/test_inputs/codegen/omega/p6-0.in +3 -0
  731. islpy-2025.2/isl/test_inputs/codegen/omega/p6-1.c +3 -0
  732. islpy-2025.2/isl/test_inputs/codegen/omega/p6-1.in +3 -0
  733. islpy-2025.2/isl/test_inputs/codegen/omega/stride1-0.c +2 -0
  734. islpy-2025.2/isl/test_inputs/codegen/omega/stride1-0.in +3 -0
  735. islpy-2025.2/isl/test_inputs/codegen/omega/stride2-0.c +3 -0
  736. islpy-2025.2/isl/test_inputs/codegen/omega/stride2-0.in +3 -0
  737. islpy-2025.2/isl/test_inputs/codegen/omega/stride3-0.c +3 -0
  738. islpy-2025.2/isl/test_inputs/codegen/omega/stride3-0.in +3 -0
  739. islpy-2025.2/isl/test_inputs/codegen/omega/stride4-0.c +2 -0
  740. islpy-2025.2/isl/test_inputs/codegen/omega/stride4-0.in +3 -0
  741. islpy-2025.2/isl/test_inputs/codegen/omega/stride5-0.c +3 -0
  742. islpy-2025.2/isl/test_inputs/codegen/omega/stride5-0.in +3 -0
  743. islpy-2025.2/isl/test_inputs/codegen/omega/stride6-0.c +3 -0
  744. islpy-2025.2/isl/test_inputs/codegen/omega/stride6-0.in +3 -0
  745. islpy-2025.2/isl/test_inputs/codegen/omega/stride6-1.c +3 -0
  746. islpy-2025.2/isl/test_inputs/codegen/omega/stride6-1.in +3 -0
  747. islpy-2025.2/isl/test_inputs/codegen/omega/stride6-2.c +3 -0
  748. islpy-2025.2/isl/test_inputs/codegen/omega/stride6-2.in +3 -0
  749. islpy-2025.2/isl/test_inputs/codegen/omega/stride7-0.c +15 -0
  750. islpy-2025.2/isl/test_inputs/codegen/omega/stride7-0.in +3 -0
  751. islpy-2025.2/isl/test_inputs/codegen/omega/stride7-1.c +12 -0
  752. islpy-2025.2/isl/test_inputs/codegen/omega/stride7-1.in +3 -0
  753. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-0.c +3 -0
  754. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-0.in +3 -0
  755. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-1.c +3 -0
  756. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-1.in +3 -0
  757. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-2.c +2 -0
  758. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-2.in +3 -0
  759. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-3.c +1 -0
  760. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-3.in +3 -0
  761. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-4.c +1 -0
  762. islpy-2025.2/isl/test_inputs/codegen/omega/substitution-4.in +3 -0
  763. islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-0.c +4 -0
  764. islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-0.in +3 -0
  765. islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-1.c +4 -0
  766. islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-1.in +3 -0
  767. islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-2.c +4 -0
  768. islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-2.in +3 -0
  769. islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-3.c +4 -0
  770. islpy-2025.2/isl/test_inputs/codegen/omega/syr2k-3.in +3 -0
  771. islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-check-sblock-0.c +13 -0
  772. islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-check-sblock-0.in +3 -0
  773. islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-check0-0.c +11 -0
  774. islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-check0-0.in +3 -0
  775. islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-mp-i_ts-m_b-0.c +34 -0
  776. islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-mp-i_ts-m_b-0.in +3 -0
  777. islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-orig0-0.c +8 -0
  778. islpy-2025.2/isl/test_inputs/codegen/omega/ts1d-orig0-0.in +3 -0
  779. islpy-2025.2/isl/test_inputs/codegen/omega/wak1-0.c +25 -0
  780. islpy-2025.2/isl/test_inputs/codegen/omega/wak1-0.in +3 -0
  781. islpy-2025.2/isl/test_inputs/codegen/omega/wak1-1.c +53 -0
  782. islpy-2025.2/isl/test_inputs/codegen/omega/wak1-1.in +3 -0
  783. islpy-2025.2/isl/test_inputs/codegen/omega/wak2-0.c +25 -0
  784. islpy-2025.2/isl/test_inputs/codegen/omega/wak2-0.in +3 -0
  785. islpy-2025.2/isl/test_inputs/codegen/omega/wak2-1.c +34 -0
  786. islpy-2025.2/isl/test_inputs/codegen/omega/wak2-1.in +3 -0
  787. islpy-2025.2/isl/test_inputs/codegen/omega/wak3-0.c +8 -0
  788. islpy-2025.2/isl/test_inputs/codegen/omega/wak3-0.in +3 -0
  789. islpy-2025.2/isl/test_inputs/codegen/omega/wak3-1.c +19 -0
  790. islpy-2025.2/isl/test_inputs/codegen/omega/wak3-1.in +3 -0
  791. islpy-2025.2/isl/test_inputs/codegen/omega/wak4-0.c +4 -0
  792. islpy-2025.2/isl/test_inputs/codegen/omega/wak4-0.in +3 -0
  793. islpy-2025.2/isl/test_inputs/codegen/omega/wak4-1.c +4 -0
  794. islpy-2025.2/isl/test_inputs/codegen/omega/wak4-1.in +3 -0
  795. islpy-2025.2/isl/test_inputs/codegen/omega/x-0.c +14 -0
  796. islpy-2025.2/isl/test_inputs/codegen/omega/x-0.in +3 -0
  797. islpy-2025.2/isl/test_inputs/codegen/omega/x-1.c +14 -0
  798. islpy-2025.2/isl/test_inputs/codegen/omega/x-1.in +3 -0
  799. islpy-2025.2/isl/test_inputs/codegen/pldi2012/README +2 -0
  800. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_b.c +9 -0
  801. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_b.in +5 -0
  802. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_c.c +12 -0
  803. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_c.in +5 -0
  804. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_d.c +13 -0
  805. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure7_d.in +5 -0
  806. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure8_a.c +3 -0
  807. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure8_a.in +4 -0
  808. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure8_b.c +6 -0
  809. islpy-2025.2/isl/test_inputs/codegen/pldi2012/figure8_b.in +4 -0
  810. islpy-2025.2/isl/test_inputs/codegen/redundant.c +12 -0
  811. islpy-2025.2/isl/test_inputs/codegen/redundant.st +6 -0
  812. islpy-2025.2/isl/test_inputs/codegen/residue.c +2 -0
  813. islpy-2025.2/isl/test_inputs/codegen/residue.st +3 -0
  814. islpy-2025.2/isl/test_inputs/codegen/roman.c +30 -0
  815. islpy-2025.2/isl/test_inputs/codegen/roman.in +5 -0
  816. islpy-2025.2/isl/test_inputs/codegen/separate.c +6 -0
  817. islpy-2025.2/isl/test_inputs/codegen/separate.in +3 -0
  818. islpy-2025.2/isl/test_inputs/codegen/separate.st +8 -0
  819. islpy-2025.2/isl/test_inputs/codegen/separate2.c +8 -0
  820. islpy-2025.2/isl/test_inputs/codegen/separate2.in +4 -0
  821. islpy-2025.2/isl/test_inputs/codegen/separation_class.c +15 -0
  822. islpy-2025.2/isl/test_inputs/codegen/separation_class.in +6 -0
  823. islpy-2025.2/isl/test_inputs/codegen/separation_class2.c +13 -0
  824. islpy-2025.2/isl/test_inputs/codegen/separation_class2.in +3 -0
  825. islpy-2025.2/isl/test_inputs/codegen/separation_class3.c +31 -0
  826. islpy-2025.2/isl/test_inputs/codegen/separation_class3.in +4 -0
  827. islpy-2025.2/isl/test_inputs/codegen/separation_class4.c +22 -0
  828. islpy-2025.2/isl/test_inputs/codegen/separation_class4.in +10 -0
  829. islpy-2025.2/isl/test_inputs/codegen/shift.c +4 -0
  830. islpy-2025.2/isl/test_inputs/codegen/shift.in +3 -0
  831. islpy-2025.2/isl/test_inputs/codegen/shift2.c +51 -0
  832. islpy-2025.2/isl/test_inputs/codegen/shift2.in +5 -0
  833. islpy-2025.2/isl/test_inputs/codegen/shift_unroll.c +14 -0
  834. islpy-2025.2/isl/test_inputs/codegen/shift_unroll.in +3 -0
  835. islpy-2025.2/isl/test_inputs/codegen/single_valued.c +2 -0
  836. islpy-2025.2/isl/test_inputs/codegen/single_valued.in +5 -0
  837. islpy-2025.2/isl/test_inputs/codegen/sor1d-part.c +3 -0
  838. islpy-2025.2/isl/test_inputs/codegen/sor1d-part.st +10 -0
  839. islpy-2025.2/isl/test_inputs/codegen/stride.c +6 -0
  840. islpy-2025.2/isl/test_inputs/codegen/stride.in +6 -0
  841. islpy-2025.2/isl/test_inputs/codegen/stride5.c +3 -0
  842. islpy-2025.2/isl/test_inputs/codegen/stride5.in +3 -0
  843. islpy-2025.2/isl/test_inputs/codegen/stride6.c +4 -0
  844. islpy-2025.2/isl/test_inputs/codegen/stride6.in +3 -0
  845. islpy-2025.2/isl/test_inputs/codegen/stride7.c +6 -0
  846. islpy-2025.2/isl/test_inputs/codegen/stride7.in +7 -0
  847. islpy-2025.2/isl/test_inputs/codegen/unroll.c +3 -0
  848. islpy-2025.2/isl/test_inputs/codegen/unroll.in +5 -0
  849. islpy-2025.2/isl/test_inputs/codegen/unroll10.c +29 -0
  850. islpy-2025.2/isl/test_inputs/codegen/unroll10.in +4 -0
  851. islpy-2025.2/isl/test_inputs/codegen/unroll10.st +7 -0
  852. islpy-2025.2/isl/test_inputs/codegen/unroll11.c +6 -0
  853. islpy-2025.2/isl/test_inputs/codegen/unroll11.in +10 -0
  854. islpy-2025.2/isl/test_inputs/codegen/unroll2.c +9 -0
  855. islpy-2025.2/isl/test_inputs/codegen/unroll2.in +5 -0
  856. islpy-2025.2/isl/test_inputs/codegen/unroll3.c +2 -0
  857. islpy-2025.2/isl/test_inputs/codegen/unroll3.in +6 -0
  858. islpy-2025.2/isl/test_inputs/codegen/unroll4.c +14 -0
  859. islpy-2025.2/isl/test_inputs/codegen/unroll4.in +5 -0
  860. islpy-2025.2/isl/test_inputs/codegen/unroll6.c +6 -0
  861. islpy-2025.2/isl/test_inputs/codegen/unroll6.in +7 -0
  862. islpy-2025.2/isl/test_inputs/codegen/unroll7.c +8 -0
  863. islpy-2025.2/isl/test_inputs/codegen/unroll7.in +5 -0
  864. islpy-2025.2/isl/test_inputs/codegen/unroll8.c +6 -0
  865. islpy-2025.2/isl/test_inputs/codegen/unroll8.st +5 -0
  866. islpy-2025.2/isl/test_inputs/codegen/unroll9.c +7 -0
  867. islpy-2025.2/isl/test_inputs/codegen/unroll9.st +7 -0
  868. islpy-2025.2/isl/test_inputs/convex0.polylib +11 -0
  869. islpy-2025.2/isl/test_inputs/convex1.polylib +17 -0
  870. islpy-2025.2/isl/test_inputs/convex10.polylib +17 -0
  871. islpy-2025.2/isl/test_inputs/convex11.polylib +14 -0
  872. islpy-2025.2/isl/test_inputs/convex12.polylib +12 -0
  873. islpy-2025.2/isl/test_inputs/convex13.polylib +17 -0
  874. islpy-2025.2/isl/test_inputs/convex14.polylib +14 -0
  875. islpy-2025.2/isl/test_inputs/convex15.polylib +66 -0
  876. islpy-2025.2/isl/test_inputs/convex2.polylib +24 -0
  877. islpy-2025.2/isl/test_inputs/convex3.polylib +10 -0
  878. islpy-2025.2/isl/test_inputs/convex4.polylib +9 -0
  879. islpy-2025.2/isl/test_inputs/convex5.polylib +12 -0
  880. islpy-2025.2/isl/test_inputs/convex6.polylib +17 -0
  881. islpy-2025.2/isl/test_inputs/convex7.polylib +9 -0
  882. islpy-2025.2/isl/test_inputs/convex8.polylib +24 -0
  883. islpy-2025.2/isl/test_inputs/convex9.polylib +14 -0
  884. islpy-2025.2/isl/test_inputs/devos.pwqp +1 -0
  885. islpy-2025.2/isl/test_inputs/equality1.pwqp +1 -0
  886. islpy-2025.2/isl/test_inputs/equality2.pwqp +1 -0
  887. islpy-2025.2/isl/test_inputs/equality3.pwqp +1 -0
  888. islpy-2025.2/isl/test_inputs/equality4.pwqp +1 -0
  889. islpy-2025.2/isl/test_inputs/equality5.pwqp +1 -0
  890. islpy-2025.2/isl/test_inputs/esced.pip +27 -0
  891. islpy-2025.2/isl/test_inputs/ex.pip +9 -0
  892. islpy-2025.2/isl/test_inputs/ex2.pip +9 -0
  893. islpy-2025.2/isl/test_inputs/exist.pip +5 -0
  894. islpy-2025.2/isl/test_inputs/exist2.pip +5 -0
  895. islpy-2025.2/isl/test_inputs/faddeev.pwqp +1 -0
  896. islpy-2025.2/isl/test_inputs/fimmel.pip +12 -0
  897. islpy-2025.2/isl/test_inputs/flow/kill_loop-tree.ai +11 -0
  898. islpy-2025.2/isl/test_inputs/flow/kill_loop-tree.flow +4 -0
  899. islpy-2025.2/isl/test_inputs/flow/kill_loop.ai +4 -0
  900. islpy-2025.2/isl/test_inputs/flow/kill_loop.flow +4 -0
  901. islpy-2025.2/isl/test_inputs/flow/kill_loop2-tree.ai +11 -0
  902. islpy-2025.2/isl/test_inputs/flow/kill_loop2-tree.flow +4 -0
  903. islpy-2025.2/isl/test_inputs/flow/kill_loop2.ai +4 -0
  904. islpy-2025.2/isl/test_inputs/flow/kill_loop2.flow +4 -0
  905. islpy-2025.2/isl/test_inputs/flow/kill_loop3-tree.ai +11 -0
  906. islpy-2025.2/isl/test_inputs/flow/kill_loop3-tree.flow +4 -0
  907. islpy-2025.2/isl/test_inputs/flow/kill_loop3.ai +4 -0
  908. islpy-2025.2/isl/test_inputs/flow/kill_loop3.flow +4 -0
  909. islpy-2025.2/isl/test_inputs/flow/kill_may_loop-tree.ai +11 -0
  910. islpy-2025.2/isl/test_inputs/flow/kill_may_loop-tree.flow +4 -0
  911. islpy-2025.2/isl/test_inputs/flow/kill_may_loop.ai +4 -0
  912. islpy-2025.2/isl/test_inputs/flow/kill_may_loop.flow +4 -0
  913. islpy-2025.2/isl/test_inputs/flow/kill_may_loop2-tree.ai +11 -0
  914. islpy-2025.2/isl/test_inputs/flow/kill_may_loop2-tree.flow +4 -0
  915. islpy-2025.2/isl/test_inputs/flow/kill_may_loop2.ai +4 -0
  916. islpy-2025.2/isl/test_inputs/flow/kill_may_loop2.flow +4 -0
  917. islpy-2025.2/isl/test_inputs/flow/kill_may_loop3-tree.ai +11 -0
  918. islpy-2025.2/isl/test_inputs/flow/kill_may_loop3-tree.flow +4 -0
  919. islpy-2025.2/isl/test_inputs/flow/kill_may_loop3.ai +4 -0
  920. islpy-2025.2/isl/test_inputs/flow/kill_may_loop3.flow +4 -0
  921. islpy-2025.2/isl/test_inputs/flow/loop-tree.ai +10 -0
  922. islpy-2025.2/isl/test_inputs/flow/loop-tree.flow +4 -0
  923. islpy-2025.2/isl/test_inputs/flow/loop.ai +3 -0
  924. islpy-2025.2/isl/test_inputs/flow/loop.flow +4 -0
  925. islpy-2025.2/isl/test_inputs/flow/may_loop-tree.ai +10 -0
  926. islpy-2025.2/isl/test_inputs/flow/may_loop-tree.flow +4 -0
  927. islpy-2025.2/isl/test_inputs/flow/may_loop.ai +3 -0
  928. islpy-2025.2/isl/test_inputs/flow/may_loop.flow +4 -0
  929. islpy-2025.2/isl/test_inputs/flow/mixed_loop-tree.ai +11 -0
  930. islpy-2025.2/isl/test_inputs/flow/mixed_loop-tree.flow +4 -0
  931. islpy-2025.2/isl/test_inputs/flow/mixed_loop.ai +4 -0
  932. islpy-2025.2/isl/test_inputs/flow/mixed_loop.flow +4 -0
  933. islpy-2025.2/isl/test_inputs/flow/multi.ai +10 -0
  934. islpy-2025.2/isl/test_inputs/flow/multi.flow +4 -0
  935. islpy-2025.2/isl/test_inputs/flow/multi_source-tree.ai +8 -0
  936. islpy-2025.2/isl/test_inputs/flow/multi_source-tree.flow +4 -0
  937. islpy-2025.2/isl/test_inputs/flow/multi_source.ai +3 -0
  938. islpy-2025.2/isl/test_inputs/flow/multi_source.flow +4 -0
  939. islpy-2025.2/isl/test_inputs/flow/multi_source2-tree.ai +9 -0
  940. islpy-2025.2/isl/test_inputs/flow/multi_source2-tree.flow +4 -0
  941. islpy-2025.2/isl/test_inputs/flow/multi_source2.ai +4 -0
  942. islpy-2025.2/isl/test_inputs/flow/multi_source2.flow +4 -0
  943. islpy-2025.2/isl/test_inputs/flow/multi_source3-tree.ai +13 -0
  944. islpy-2025.2/isl/test_inputs/flow/multi_source3-tree.flow +4 -0
  945. islpy-2025.2/isl/test_inputs/flow/multi_source3.ai +4 -0
  946. islpy-2025.2/isl/test_inputs/flow/multi_source3.flow +4 -0
  947. islpy-2025.2/isl/test_inputs/flow/multi_source4-tree.ai +13 -0
  948. islpy-2025.2/isl/test_inputs/flow/multi_source4-tree.flow +4 -0
  949. islpy-2025.2/isl/test_inputs/flow/multi_source4.ai +4 -0
  950. islpy-2025.2/isl/test_inputs/flow/multi_source4.flow +4 -0
  951. islpy-2025.2/isl/test_inputs/flow/no_source-tree.ai +3 -0
  952. islpy-2025.2/isl/test_inputs/flow/no_source-tree.flow +4 -0
  953. islpy-2025.2/isl/test_inputs/flow/no_source.ai +2 -0
  954. islpy-2025.2/isl/test_inputs/flow/no_source.flow +4 -0
  955. islpy-2025.2/isl/test_inputs/flow/no_source2-tree.ai +8 -0
  956. islpy-2025.2/isl/test_inputs/flow/no_source2-tree.flow +4 -0
  957. islpy-2025.2/isl/test_inputs/flow/no_source2.ai +3 -0
  958. islpy-2025.2/isl/test_inputs/flow/no_source2.flow +4 -0
  959. islpy-2025.2/isl/test_inputs/flow/single_may_source-tree.ai +8 -0
  960. islpy-2025.2/isl/test_inputs/flow/single_may_source-tree.flow +4 -0
  961. islpy-2025.2/isl/test_inputs/flow/single_may_source.ai +3 -0
  962. islpy-2025.2/isl/test_inputs/flow/single_may_source.flow +4 -0
  963. islpy-2025.2/isl/test_inputs/flow/single_source-tree.ai +8 -0
  964. islpy-2025.2/isl/test_inputs/flow/single_source-tree.flow +4 -0
  965. islpy-2025.2/isl/test_inputs/flow/single_source.ai +3 -0
  966. islpy-2025.2/isl/test_inputs/flow/single_source.flow +4 -0
  967. islpy-2025.2/isl/test_inputs/linearExample.pwqp +1 -0
  968. islpy-2025.2/isl/test_inputs/max.pip +9 -0
  969. islpy-2025.2/isl/test_inputs/neg.pwqp +1 -0
  970. islpy-2025.2/isl/test_inputs/negative.pip +9 -0
  971. islpy-2025.2/isl/test_inputs/philippe.pwqp +1 -0
  972. islpy-2025.2/isl/test_inputs/philippe3vars.pwqp +1 -0
  973. islpy-2025.2/isl/test_inputs/philippe3vars3pars.pwqp +1 -0
  974. islpy-2025.2/isl/test_inputs/philippeNeg.pwqp +1 -0
  975. islpy-2025.2/isl/test_inputs/philippePolynomialCoeff.pwqp +1 -0
  976. islpy-2025.2/isl/test_inputs/philippePolynomialCoeff1P.pwqp +1 -0
  977. islpy-2025.2/isl/test_inputs/product.pwqp +1 -0
  978. islpy-2025.2/isl/test_inputs/schedule/bounded_coefficients.sc +12 -0
  979. islpy-2025.2/isl/test_inputs/schedule/bounded_coefficients.st +5 -0
  980. islpy-2025.2/isl/test_inputs/schedule/carry_bounded_coefficients.sc +19 -0
  981. islpy-2025.2/isl/test_inputs/schedule/carry_bounded_coefficients.st +5 -0
  982. islpy-2025.2/isl/test_inputs/schedule/disjunctive_domain.sc +4 -0
  983. islpy-2025.2/isl/test_inputs/schedule/disjunctive_domain.st +5 -0
  984. islpy-2025.2/isl/test_inputs/schedule/feautrier_compressed.sc +5 -0
  985. islpy-2025.2/isl/test_inputs/schedule/feautrier_compressed.st +7 -0
  986. islpy-2025.2/isl/test_inputs/schedule/flat1.sc +3 -0
  987. islpy-2025.2/isl/test_inputs/schedule/flat1.st +5 -0
  988. islpy-2025.2/isl/test_inputs/schedule/flat2.sc +3 -0
  989. islpy-2025.2/isl/test_inputs/schedule/flat2.st +5 -0
  990. islpy-2025.2/isl/test_inputs/schedule/flat3.sc +3 -0
  991. islpy-2025.2/isl/test_inputs/schedule/flat3.st +5 -0
  992. islpy-2025.2/isl/test_inputs/schedule/flat4.sc +3 -0
  993. islpy-2025.2/isl/test_inputs/schedule/flat4.st +5 -0
  994. islpy-2025.2/isl/test_inputs/schedule/flat5.sc +3 -0
  995. islpy-2025.2/isl/test_inputs/schedule/flat5.st +5 -0
  996. islpy-2025.2/isl/test_inputs/schedule/flat6.sc +3 -0
  997. islpy-2025.2/isl/test_inputs/schedule/flat6.st +5 -0
  998. islpy-2025.2/isl/test_inputs/schedule/fork1.sc +5 -0
  999. islpy-2025.2/isl/test_inputs/schedule/fork1.st +9 -0
  1000. islpy-2025.2/isl/test_inputs/schedule/fork2.sc +5 -0
  1001. islpy-2025.2/isl/test_inputs/schedule/fork2.st +6 -0
  1002. islpy-2025.2/isl/test_inputs/schedule/fork3.sc +7 -0
  1003. islpy-2025.2/isl/test_inputs/schedule/fork3.st +22 -0
  1004. islpy-2025.2/isl/test_inputs/schedule/leyin1.sc +5 -0
  1005. islpy-2025.2/isl/test_inputs/schedule/leyin1.st +10 -0
  1006. islpy-2025.2/isl/test_inputs/schedule/leyin2a.sc +14 -0
  1007. islpy-2025.2/isl/test_inputs/schedule/leyin2a.st +13 -0
  1008. islpy-2025.2/isl/test_inputs/schedule/leyin2b.sc +14 -0
  1009. islpy-2025.2/isl/test_inputs/schedule/leyin2b.st +10 -0
  1010. islpy-2025.2/isl/test_inputs/schedule/max_coincidence.sc +7 -0
  1011. islpy-2025.2/isl/test_inputs/schedule/max_coincidence.st +13 -0
  1012. islpy-2025.2/isl/test_inputs/schedule/nana.sc +9 -0
  1013. islpy-2025.2/isl/test_inputs/schedule/nana.st +13 -0
  1014. islpy-2025.2/isl/test_inputs/schedule/niewang.sc +29 -0
  1015. islpy-2025.2/isl/test_inputs/schedule/niewang.st +25 -0
  1016. islpy-2025.2/isl/test_inputs/schedule/nomax_coincidence.sc +7 -0
  1017. islpy-2025.2/isl/test_inputs/schedule/nomax_coincidence.st +9 -0
  1018. islpy-2025.2/isl/test_inputs/schedule/poliwoda.sc +47 -0
  1019. islpy-2025.2/isl/test_inputs/schedule/poliwoda.st +5 -0
  1020. islpy-2025.2/isl/test_inputs/seghir-vd.pip +17 -0
  1021. islpy-2025.2/isl/test_inputs/set.omega +1 -0
  1022. islpy-2025.2/isl/test_inputs/small.pip +9 -0
  1023. islpy-2025.2/isl/test_inputs/sor1d.pip +28 -0
  1024. islpy-2025.2/isl/test_inputs/split.pwqp +1 -0
  1025. islpy-2025.2/isl/test_inputs/square.pip +9 -0
  1026. islpy-2025.2/isl/test_inputs/sven.pip +7 -0
  1027. islpy-2025.2/isl/test_inputs/test3Deg3Var.pwqp +1 -0
  1028. islpy-2025.2/isl/test_inputs/tobi.pip +15 -0
  1029. islpy-2025.2/isl/test_inputs/toplas.pwqp +1 -0
  1030. islpy-2025.2/isl/test_inputs/unexpanded.pwqp +1 -0
  1031. islpy-2025.2/isl/testsets/pip/bouleti.pip +30 -0
  1032. islpy-2025.2/isl/testsets/pip/cnt_sum2.pip +54 -0
  1033. islpy-2025.2/isl/testsets/pip/difficult.pip +14 -0
  1034. islpy-2025.2/isl/testsets/pip/jcomplex.pip +47 -0
  1035. islpy-2025.2/isl/testsets/pip/phideo.pip +35 -0
  1036. islpy-2025.2/isl/testsets/pip/seghir-e1.pip +20 -0
  1037. islpy-2025.2/isl/testsets/pip/seghir-e3.pip +17 -0
  1038. islpy-2025.2/isl/testsets/pip/seghir-e4.pip +18 -0
  1039. islpy-2025.2/isl/testsets/pip/seghir-e5.pip +17 -0
  1040. islpy-2025.2/isl/testsets/pip/seghir-e6.pip +17 -0
  1041. islpy-2025.2/isl/testsets/pip/seghir-e7.pip +17 -0
  1042. islpy-2025.2/isl/testsets/pip/seghir-e8.pip +19 -0
  1043. islpy-2025.2/isl/testsets/pip/seghir-e9.pip +22 -0
  1044. islpy-2025.2/isl/testsets/pip/seghir-vd.pip +17 -0
  1045. islpy-2025.2/islpy/__init__.py +507 -0
  1046. islpy-2025.2/islpy/_monkeypatch.py +1015 -0
  1047. islpy-2025.2/islpy/py.typed +0 -0
  1048. islpy-2025.2/islpy/version.py +11 -0
  1049. islpy-2025.2/pyproject.toml +150 -0
  1050. islpy-2025.2/src/wrapper/wrap_isl.cpp +247 -0
  1051. islpy-2025.2/stubgen/stubgen.py +84 -0
  1052. islpy-2025.1.5/CMakeLists.txt +0 -65
  1053. islpy-2025.1.5/MANIFEST.in +0 -43
  1054. islpy-2025.1.5/Makefile.in +0 -14
  1055. islpy-2025.1.5/PKG-INFO +0 -84
  1056. islpy-2025.1.5/README.rst +0 -46
  1057. islpy-2025.1.5/README_SETUP.txt +0 -34
  1058. islpy-2025.1.5/aksetup_helper.py +0 -1011
  1059. islpy-2025.1.5/build-with-barvinok.sh +0 -88
  1060. islpy-2025.1.5/configure.py +0 -6
  1061. islpy-2025.1.5/doc/conf.py +0 -97
  1062. islpy-2025.1.5/doc/misc.rst +0 -207
  1063. islpy-2025.1.5/doc/ref_fundamental.rst +0 -226
  1064. islpy-2025.1.5/doc/reference.rst +0 -186
  1065. islpy-2025.1.5/examples/demo.py +0 -85
  1066. islpy-2025.1.5/gen_wrap.py +0 -1612
  1067. islpy-2025.1.5/isl-supplementary/isl/config.h +0 -1
  1068. islpy-2025.1.5/isl-supplementary/isl/stdint.h +0 -1
  1069. islpy-2025.1.5/isl-supplementary/isl_config.h +0 -9
  1070. islpy-2025.1.5/islpy/__init__.py +0 -1271
  1071. islpy-2025.1.5/islpy/version.py +0 -2
  1072. islpy-2025.1.5/islpy.egg-info/PKG-INFO +0 -84
  1073. islpy-2025.1.5/islpy.egg-info/SOURCES.txt +0 -451
  1074. islpy-2025.1.5/islpy.egg-info/dependency_links.txt +0 -1
  1075. islpy-2025.1.5/islpy.egg-info/requires.txt +0 -3
  1076. islpy-2025.1.5/islpy.egg-info/top_level.txt +0 -1
  1077. islpy-2025.1.5/pyproject.toml +0 -81
  1078. islpy-2025.1.5/setup.cfg +0 -4
  1079. islpy-2025.1.5/setup.py +0 -325
  1080. islpy-2025.1.5/src/wrapper/wrap_isl.cpp +0 -242
  1081. {islpy-2025.1.5 → islpy-2025.2}/CITATION.cff +0 -0
  1082. {islpy-2025.1.5 → islpy-2025.2}/doc/Makefile +0 -0
  1083. {islpy-2025.1.5 → islpy-2025.2}/doc/images/after-union.png +0 -0
  1084. {islpy-2025.1.5 → islpy-2025.2}/doc/images/before-union.png +0 -0
  1085. {islpy-2025.1.5 → islpy-2025.2}/doc/index.rst +0 -0
  1086. {islpy-2025.1.5 → islpy-2025.2}/doc/ref_ast.rst +0 -0
  1087. {islpy-2025.1.5 → islpy-2025.2}/doc/ref_containers.rst +0 -0
  1088. {islpy-2025.1.5 → islpy-2025.2}/doc/ref_expr.rst +0 -0
  1089. {islpy-2025.1.5 → islpy-2025.2}/doc/ref_flow.rst +0 -0
  1090. {islpy-2025.1.5 → islpy-2025.2}/doc/ref_geo.rst +0 -0
  1091. {islpy-2025.1.5 → islpy-2025.2}/doc/ref_schedule.rst +0 -0
  1092. {islpy-2025.1.5 → islpy-2025.2}/doc/ref_set.rst +0 -0
  1093. {islpy-2025.1.5 → islpy-2025.2}/isl/LICENSE +0 -0
  1094. {islpy-2025.1.5 → islpy-2025.2}/isl/all.h +0 -0
  1095. {islpy-2025.1.5 → islpy-2025.2}/isl/basis_reduction_tab.c +0 -0
  1096. {islpy-2025.1.5 → islpy-2025.2}/isl/basis_reduction_templ.c +0 -0
  1097. {islpy-2025.1.5 → islpy-2025.2}/isl/bound.c +0 -0
  1098. {islpy-2025.1.5 → islpy-2025.2}/isl/bset_from_bmap.c +0 -0
  1099. {islpy-2025.1.5 → islpy-2025.2}/isl/bset_to_bmap.c +0 -0
  1100. {islpy-2025.1.5 → islpy-2025.2}/isl/cat.c +0 -0
  1101. {islpy-2025.1.5 → islpy-2025.2}/isl/check_parse_fail_test_templ.c +0 -0
  1102. {islpy-2025.1.5 → islpy-2025.2}/isl/check_reparse_templ.c +0 -0
  1103. {islpy-2025.1.5 → islpy-2025.2}/isl/check_reparse_test_templ.c +0 -0
  1104. {islpy-2025.1.5 → islpy-2025.2}/isl/check_single_reference_templ.c +0 -0
  1105. {islpy-2025.1.5 → islpy-2025.2}/isl/check_type_range_templ.c +0 -0
  1106. {islpy-2025.1.5 → islpy-2025.2}/isl/closure.c +0 -0
  1107. {islpy-2025.1.5 → islpy-2025.2}/isl/codegen.c +0 -0
  1108. {islpy-2025.1.5 → islpy-2025.2}/isl/configure.ac +0 -0
  1109. {islpy-2025.1.5 → islpy-2025.2}/isl/dep.c +0 -0
  1110. {islpy-2025.1.5 → islpy-2025.2}/isl/extract_key.c +0 -0
  1111. {islpy-2025.1.5 → islpy-2025.2}/isl/flow.c +0 -0
  1112. {islpy-2025.1.5 → islpy-2025.2}/isl/flow_cmp.c +0 -0
  1113. {islpy-2025.1.5 → islpy-2025.2}/isl/has_single_reference_templ.c +0 -0
  1114. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/LICENSE +0 -0
  1115. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/gmp_compat.c +0 -0
  1116. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/gmp_compat.h +0 -0
  1117. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imath.c +0 -0
  1118. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imath.h +0 -0
  1119. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imdrover.c +0 -0
  1120. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imdrover.h +0 -0
  1121. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imrat.c +0 -0
  1122. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imrat.h +0 -0
  1123. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imtest.c +0 -0
  1124. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/imtimer.c +0 -0
  1125. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/iprime.c +0 -0
  1126. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/iprime.h +0 -0
  1127. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/rsamath.c +0 -0
  1128. {islpy-2025.1.5 → islpy-2025.2}/isl/imath/rsamath.h +0 -0
  1129. {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/gmp_compat.c +0 -0
  1130. {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/gmp_compat.h +0 -0
  1131. {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/imath.c +0 -0
  1132. {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/imath.h +0 -0
  1133. {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/imrat.c +0 -0
  1134. {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/imrat.h +0 -0
  1135. {islpy-2025.1.5 → islpy-2025.2}/isl/imath_wrap/wrap.h +0 -0
  1136. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/aff.h +0 -0
  1137. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/aff_type.h +0 -0
  1138. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/arg.h +0 -0
  1139. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ast.h +0 -0
  1140. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ast_build.h +0 -0
  1141. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ast_type.h +0 -0
  1142. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/constraint.h +0 -0
  1143. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/cpp-checked-conversion.h +0 -0
  1144. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/cpp-checked.h +0 -0
  1145. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/cpp.h +0 -0
  1146. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ctx.h +0 -0
  1147. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/fixed_box.h +0 -0
  1148. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/flow.h +0 -0
  1149. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/hash.h +0 -0
  1150. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/hmap.h +0 -0
  1151. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/hmap_templ.c +0 -0
  1152. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id.h +0 -0
  1153. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id_to_ast_expr.h +0 -0
  1154. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id_to_id.h +0 -0
  1155. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id_to_pw_aff.h +0 -0
  1156. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/id_type.h +0 -0
  1157. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/ilp.h +0 -0
  1158. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/list.h +0 -0
  1159. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/local_space.h +0 -0
  1160. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/lp.h +0 -0
  1161. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/map.h +0 -0
  1162. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/map_to_basic_set.h +0 -0
  1163. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/map_type.h +0 -0
  1164. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/mat.h +0 -0
  1165. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe.h +0 -0
  1166. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_ast_expr.h +0 -0
  1167. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_basic_set.h +0 -0
  1168. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_id.h +0 -0
  1169. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_pw_aff.h +0 -0
  1170. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/maybe_templ.h +0 -0
  1171. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/multi.h +0 -0
  1172. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/obj.h +0 -0
  1173. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/options.h +0 -0
  1174. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/point.h +0 -0
  1175. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/polynomial.h +0 -0
  1176. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/polynomial_type.h +0 -0
  1177. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/printer.h +0 -0
  1178. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/printer_type.h +0 -0
  1179. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/schedule.h +0 -0
  1180. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/schedule_node.h +0 -0
  1181. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/schedule_type.h +0 -0
  1182. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/set.h +0 -0
  1183. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/set_type.h +0 -0
  1184. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/space.h +0 -0
  1185. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/space_type.h +0 -0
  1186. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/stream.h +0 -0
  1187. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/stride_info.h +0 -0
  1188. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/typed_cpp.h +0 -0
  1189. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/union_map.h +0 -0
  1190. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/union_map_type.h +0 -0
  1191. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/union_set.h +0 -0
  1192. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/union_set_type.h +0 -0
  1193. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/val.h +0 -0
  1194. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/val_gmp.h +0 -0
  1195. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/val_type.h +0 -0
  1196. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/vec.h +0 -0
  1197. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/version.h +0 -0
  1198. {islpy-2025.1.5 → islpy-2025.2}/isl/include/isl/vertices.h +0 -0
  1199. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_aff.c +0 -0
  1200. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_aff_lex_templ.c +0 -0
  1201. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_aff_map.c +0 -0
  1202. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_aff_private.h +0 -0
  1203. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_affine_hull.c +0 -0
  1204. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_align_params_bin_templ.c +0 -0
  1205. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_align_params_templ.c +0 -0
  1206. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_arg.c +0 -0
  1207. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast.c +0 -0
  1208. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_build.c +0 -0
  1209. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_build_expr.c +0 -0
  1210. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_build_expr.h +0 -0
  1211. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_build_private.h +0 -0
  1212. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_codegen.c +0 -0
  1213. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_graft.c +0 -0
  1214. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_graft_private.h +0 -0
  1215. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_node_set_field_templ.c +0 -0
  1216. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ast_private.h +0 -0
  1217. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_basis_reduction.h +0 -0
  1218. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bernstein.c +0 -0
  1219. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bernstein.h +0 -0
  1220. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bind_domain_templ.c +0 -0
  1221. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_blk.c +0 -0
  1222. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_blk.h +0 -0
  1223. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bound.c +0 -0
  1224. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_bound.h +0 -0
  1225. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_box.c +0 -0
  1226. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_check_named_params_templ.c +0 -0
  1227. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_coalesce.c +0 -0
  1228. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_config_post.h +0 -0
  1229. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_constraint.c +0 -0
  1230. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_constraint_private.h +0 -0
  1231. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_convex_hull.c +0 -0
  1232. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_copy_tuple_id_templ.c +0 -0
  1233. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ctx.c +0 -0
  1234. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ctx_private.h +0 -0
  1235. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_deprecated.c +0 -0
  1236. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_dim_map.c +0 -0
  1237. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_dim_map.h +0 -0
  1238. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_domain_factor_templ.c +0 -0
  1239. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_drop_unused_params_templ.c +0 -0
  1240. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_equalities.c +0 -0
  1241. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_equalities.h +0 -0
  1242. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_factorization.c +0 -0
  1243. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_factorization.h +0 -0
  1244. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_farkas.c +0 -0
  1245. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ffs.c +0 -0
  1246. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_flow.c +0 -0
  1247. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_fold.c +0 -0
  1248. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_from_range_templ.c +0 -0
  1249. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_gmp.c +0 -0
  1250. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_hash.c +0 -0
  1251. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_hash_private.h +0 -0
  1252. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id.c +0 -0
  1253. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id_private.h +0 -0
  1254. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id_to_ast_expr.c +0 -0
  1255. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id_to_id.c +0 -0
  1256. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_id_to_pw_aff.c +0 -0
  1257. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp.c +0 -0
  1258. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp_opt_fn_val_templ.c +0 -0
  1259. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp_opt_multi_val_templ.c +0 -0
  1260. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp_opt_val_templ.c +0 -0
  1261. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_ilp_private.h +0 -0
  1262. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_imath.c +0 -0
  1263. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_imath.h +0 -0
  1264. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_input.c +0 -0
  1265. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_insert_domain_templ.c +0 -0
  1266. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int.h +0 -0
  1267. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int_gmp.h +0 -0
  1268. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int_imath.h +0 -0
  1269. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int_sioimath.c +0 -0
  1270. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_int_sioimath.h +0 -0
  1271. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_macro.h +0 -0
  1272. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_private.h +0 -0
  1273. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_read_templ.c +0 -0
  1274. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_read_yaml_templ.c +0 -0
  1275. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_templ.c +0 -0
  1276. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_list_templ.h +0 -0
  1277. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local.c +0 -0
  1278. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local.h +0 -0
  1279. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local_private.h +0 -0
  1280. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local_space.c +0 -0
  1281. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_local_space_private.h +0 -0
  1282. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_lp.c +0 -0
  1283. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_lp_private.h +0 -0
  1284. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map.c +0 -0
  1285. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_bound_templ.c +0 -0
  1286. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_lexopt_templ.c +0 -0
  1287. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_list.c +0 -0
  1288. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_private.h +0 -0
  1289. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_simplify.c +0 -0
  1290. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_subtract.c +0 -0
  1291. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_map_to_basic_set.c +0 -0
  1292. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_mat.c +0 -0
  1293. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_mat_private.h +0 -0
  1294. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_maybe_aff.h +0 -0
  1295. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_maybe_ast_graft_list.h +0 -0
  1296. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_maybe_map.h +0 -0
  1297. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_morph.c +0 -0
  1298. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_morph.h +0 -0
  1299. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_add_constant_templ.c +0 -0
  1300. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_align_set.c +0 -0
  1301. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_align_union_set.c +0 -0
  1302. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_explicit_domain_templ.c +0 -0
  1303. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_no_explicit_domain_templ.c +0 -0
  1304. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_set_explicit_domain_templ.c +0 -0
  1305. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_set_no_explicit_domain_templ.c +0 -0
  1306. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_templ.c +0 -0
  1307. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_apply_union_set_explicit_domain_templ.c +0 -0
  1308. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_arith_templ.c +0 -0
  1309. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_bin_val_templ.c +0 -0
  1310. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_bind_domain_templ.c +0 -0
  1311. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_bind_templ.c +0 -0
  1312. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_check_domain_templ.c +0 -0
  1313. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_cmp.c +0 -0
  1314. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_coalesce.c +0 -0
  1315. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_dim_id_templ.c +0 -0
  1316. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_dims.c +0 -0
  1317. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_domain_reverse_templ.c +0 -0
  1318. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_domain_templ.c +0 -0
  1319. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_explicit_domain.c +0 -0
  1320. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_floor.c +0 -0
  1321. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_from_base_templ.c +0 -0
  1322. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_from_tuple_templ.c +0 -0
  1323. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_gist.c +0 -0
  1324. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_hash.c +0 -0
  1325. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_identity_templ.c +0 -0
  1326. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_insert_domain_templ.c +0 -0
  1327. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_intersect.c +0 -0
  1328. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_locals_templ.c +0 -0
  1329. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_macro.h +0 -0
  1330. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_min_max_templ.c +0 -0
  1331. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_move_dims_templ.c +0 -0
  1332. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_nan_templ.c +0 -0
  1333. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_no_domain_templ.c +0 -0
  1334. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_no_explicit_domain.c +0 -0
  1335. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_param_templ.c +0 -0
  1336. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_product_templ.c +0 -0
  1337. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_pw_aff_explicit_domain.c +0 -0
  1338. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_pw_aff_pullback_templ.c +0 -0
  1339. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_read_no_explicit_domain_templ.c +0 -0
  1340. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_splice_templ.c +0 -0
  1341. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_templ.c +0 -0
  1342. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_templ.h +0 -0
  1343. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_tuple_id_templ.c +0 -0
  1344. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_un_op_templ.c +0 -0
  1345. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_unbind_params_templ.c +0 -0
  1346. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_union_add_templ.c +0 -0
  1347. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_union_pw_aff_explicit_domain.c +0 -0
  1348. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_zero_space_templ.c +0 -0
  1349. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_multi_zero_templ.c +0 -0
  1350. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_obj.c +0 -0
  1351. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_opt_mpa_templ.c +0 -0
  1352. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_options.c +0 -0
  1353. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_options_private.h +0 -0
  1354. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_output.c +0 -0
  1355. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_output_private.h +0 -0
  1356. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_point.c +0 -0
  1357. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_point_private.h +0 -0
  1358. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_polynomial.c +0 -0
  1359. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_polynomial_private.h +0 -0
  1360. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_power_templ.c +0 -0
  1361. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_printer.c +0 -0
  1362. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_printer_private.h +0 -0
  1363. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_project_out_all_params_templ.c +0 -0
  1364. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_project_out_param_templ.c +0 -0
  1365. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_add_constant_multi_val_templ.c +0 -0
  1366. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_add_constant_templ.c +0 -0
  1367. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_add_constant_val_templ.c +0 -0
  1368. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_add_disjoint_templ.c +0 -0
  1369. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_bind_domain_templ.c +0 -0
  1370. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_domain_reverse_templ.c +0 -0
  1371. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_eval.c +0 -0
  1372. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_fix_templ.c +0 -0
  1373. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_from_range_templ.c +0 -0
  1374. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_hash.c +0 -0
  1375. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_insert_dims_templ.c +0 -0
  1376. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_insert_domain_templ.c +0 -0
  1377. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_lift_templ.c +0 -0
  1378. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_locals_templ.c +0 -0
  1379. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_macro.h +0 -0
  1380. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_morph_templ.c +0 -0
  1381. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_move_dims_templ.c +0 -0
  1382. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_neg_templ.c +0 -0
  1383. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_opt_templ.c +0 -0
  1384. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_print_templ.c +0 -0
  1385. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_pullback_templ.c +0 -0
  1386. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_range_tuple_id_templ.c +0 -0
  1387. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_scale_templ.c +0 -0
  1388. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_split_dims_templ.c +0 -0
  1389. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_sub_templ.c +0 -0
  1390. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_templ.c +0 -0
  1391. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_templ.h +0 -0
  1392. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_un_op_templ.c +0 -0
  1393. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_pw_union_opt.c +0 -0
  1394. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_range.c +0 -0
  1395. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_range.h +0 -0
  1396. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_read_from_str_templ.c +0 -0
  1397. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_reordering.c +0 -0
  1398. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_reordering.h +0 -0
  1399. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_sample.c +0 -0
  1400. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_sample.h +0 -0
  1401. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scan.c +0 -0
  1402. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scan.h +0 -0
  1403. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule.c +0 -0
  1404. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_band.c +0 -0
  1405. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_band.h +0 -0
  1406. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_constraints.c +0 -0
  1407. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_constraints.h +0 -0
  1408. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_node.c +0 -0
  1409. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_node_private.h +0 -0
  1410. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_private.h +0 -0
  1411. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_read.c +0 -0
  1412. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_tree.c +0 -0
  1413. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_schedule_tree.h +0 -0
  1414. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler.c +0 -0
  1415. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler.h +0 -0
  1416. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler_clustering.c +0 -0
  1417. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler_clustering.h +0 -0
  1418. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler_scc.c +0 -0
  1419. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_scheduler_scc.h +0 -0
  1420. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_seq.c +0 -0
  1421. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_seq.h +0 -0
  1422. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_set_list.c +0 -0
  1423. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_set_to_ast_graft_list.c +0 -0
  1424. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_set_to_ast_graft_list.h +0 -0
  1425. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_sort.c +0 -0
  1426. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_sort.h +0 -0
  1427. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_space.c +0 -0
  1428. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_space_private.h +0 -0
  1429. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stream.c +0 -0
  1430. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stream_private.h +0 -0
  1431. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stream_read_pw_with_params_templ.c +0 -0
  1432. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stream_read_with_params_templ.c +0 -0
  1433. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_stride.c +0 -0
  1434. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tab.c +0 -0
  1435. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tab.h +0 -0
  1436. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tab_lexopt_templ.c +0 -0
  1437. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tab_pip.c +0 -0
  1438. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tarjan.c +0 -0
  1439. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_tarjan.h +0 -0
  1440. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test.c +0 -0
  1441. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test_imath.c +0 -0
  1442. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test_int.c +0 -0
  1443. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test_list_templ.c +0 -0
  1444. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_test_plain_equal_templ.c +0 -0
  1445. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_transitive_closure.c +0 -0
  1446. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_check_equal_space_templ.c +0 -0
  1447. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_check_match_range_multi_val.c +0 -0
  1448. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_has_equal_space_bin_templ.c +0 -0
  1449. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_has_equal_space_templ.c +0 -0
  1450. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_type_has_space_templ.c +0 -0
  1451. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_unbind_params_templ.c +0 -0
  1452. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_domain_reverse_templ.c +0 -0
  1453. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_eval.c +0 -0
  1454. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_locals_templ.c +0 -0
  1455. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_macro.h +0 -0
  1456. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_map.c +0 -0
  1457. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_map_lex_templ.c +0 -0
  1458. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_map_private.h +0 -0
  1459. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_multi.c +0 -0
  1460. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_neg.c +0 -0
  1461. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_print_templ.c +0 -0
  1462. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_pw_templ.c +0 -0
  1463. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_set_private.h +0 -0
  1464. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_single.c +0 -0
  1465. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_sub_templ.c +0 -0
  1466. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_union_templ.c +0 -0
  1467. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val.c +0 -0
  1468. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val_gmp.c +0 -0
  1469. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val_imath.c +0 -0
  1470. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val_private.h +0 -0
  1471. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_val_sioimath.c +0 -0
  1472. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_vec.c +0 -0
  1473. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_vec_private.h +0 -0
  1474. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_version.c +0 -0
  1475. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_vertices.c +0 -0
  1476. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_vertices_private.h +0 -0
  1477. {islpy-2025.1.5 → islpy-2025.2}/isl/isl_yaml.h +0 -0
  1478. {islpy-2025.1.5 → islpy-2025.2}/isl/mp_get_memory_functions.c +0 -0
  1479. {islpy-2025.1.5 → islpy-2025.2}/isl/opt_type.h +0 -0
  1480. {islpy-2025.1.5 → islpy-2025.2}/isl/pip.c +0 -0
  1481. {islpy-2025.1.5 → islpy-2025.2}/isl/polyhedron_detect_equalities.c +0 -0
  1482. {islpy-2025.1.5 → islpy-2025.2}/isl/polyhedron_minimize.c +0 -0
  1483. {islpy-2025.1.5 → islpy-2025.2}/isl/polyhedron_remove_redundant_equalities.c +0 -0
  1484. {islpy-2025.1.5 → islpy-2025.2}/isl/polyhedron_sample.c +0 -0
  1485. {islpy-2025.1.5 → islpy-2025.2}/isl/polytope_scan.c +0 -0
  1486. {islpy-2025.1.5 → islpy-2025.2}/isl/print.c +0 -0
  1487. {islpy-2025.1.5 → islpy-2025.2}/isl/print_templ.c +0 -0
  1488. {islpy-2025.1.5 → islpy-2025.2}/isl/print_templ_yaml.c +0 -0
  1489. {islpy-2025.1.5 → islpy-2025.2}/isl/print_yaml_field_templ.c +0 -0
  1490. {islpy-2025.1.5 → islpy-2025.2}/isl/read_in_string_templ.c +0 -0
  1491. {islpy-2025.1.5 → islpy-2025.2}/isl/schedule.c +0 -0
  1492. {islpy-2025.1.5 → islpy-2025.2}/isl/schedule_cmp.c +0 -0
  1493. {islpy-2025.1.5 → islpy-2025.2}/isl/set_from_map.c +0 -0
  1494. {islpy-2025.1.5 → islpy-2025.2}/isl/set_list_from_map_list_inl.c +0 -0
  1495. {islpy-2025.1.5 → islpy-2025.2}/isl/set_to_map.c +0 -0
  1496. /islpy-2025.1.5/isl-supplementary/gitversion.h → /islpy-2025.2/isl/test_inputs/codegen/cloog/multi-stride.c +0 -0
  1497. {islpy-2025.1.5 → islpy-2025.2}/isl/uset_from_umap.c +0 -0
  1498. {islpy-2025.1.5 → islpy-2025.2}/isl/uset_to_umap.c +0 -0
  1499. {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_helpers.hpp +0 -0
  1500. {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_isl.hpp +0 -0
  1501. {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_isl_part1.cpp +0 -0
  1502. {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_isl_part2.cpp +0 -0
  1503. {islpy-2025.1.5 → islpy-2025.2}/src/wrapper/wrap_isl_part3.cpp +0 -0
  1504. {islpy-2025.1.5 → islpy-2025.2}/test/test_isl.py +0 -0
@@ -0,0 +1,214 @@
1
+ {
2
+ "files": {
3
+ "./islpy/_isl.pyi": [
4
+ {
5
+ "code": "reportAssignmentType",
6
+ "range": {
7
+ "startColumn": 13,
8
+ "endColumn": 15,
9
+ "lineCount": 1
10
+ }
11
+ },
12
+ {
13
+ "code": "reportAssignmentType",
14
+ "range": {
15
+ "startColumn": 13,
16
+ "endColumn": 15,
17
+ "lineCount": 1
18
+ }
19
+ },
20
+ {
21
+ "code": "reportOverlappingOverload",
22
+ "range": {
23
+ "startColumn": 8,
24
+ "endColumn": 12,
25
+ "lineCount": 1
26
+ }
27
+ },
28
+ {
29
+ "code": "reportOverlappingOverload",
30
+ "range": {
31
+ "startColumn": 8,
32
+ "endColumn": 12,
33
+ "lineCount": 1
34
+ }
35
+ },
36
+ {
37
+ "code": "reportOverlappingOverload",
38
+ "range": {
39
+ "startColumn": 8,
40
+ "endColumn": 12,
41
+ "lineCount": 1
42
+ }
43
+ },
44
+ {
45
+ "code": "reportIncompatibleMethodOverride",
46
+ "range": {
47
+ "startColumn": 8,
48
+ "endColumn": 14,
49
+ "lineCount": 1
50
+ }
51
+ },
52
+ {
53
+ "code": "reportIncompatibleMethodOverride",
54
+ "range": {
55
+ "startColumn": 8,
56
+ "endColumn": 14,
57
+ "lineCount": 1
58
+ }
59
+ },
60
+ {
61
+ "code": "reportOverlappingOverload",
62
+ "range": {
63
+ "startColumn": 8,
64
+ "endColumn": 12,
65
+ "lineCount": 1
66
+ }
67
+ },
68
+ {
69
+ "code": "reportOverlappingOverload",
70
+ "range": {
71
+ "startColumn": 8,
72
+ "endColumn": 12,
73
+ "lineCount": 1
74
+ }
75
+ },
76
+ {
77
+ "code": "reportOverlappingOverload",
78
+ "range": {
79
+ "startColumn": 8,
80
+ "endColumn": 19,
81
+ "lineCount": 1
82
+ }
83
+ },
84
+ {
85
+ "code": "reportOverlappingOverload",
86
+ "range": {
87
+ "startColumn": 8,
88
+ "endColumn": 12,
89
+ "lineCount": 1
90
+ }
91
+ },
92
+ {
93
+ "code": "reportOverlappingOverload",
94
+ "range": {
95
+ "startColumn": 8,
96
+ "endColumn": 12,
97
+ "lineCount": 1
98
+ }
99
+ },
100
+ {
101
+ "code": "reportOverlappingOverload",
102
+ "range": {
103
+ "startColumn": 8,
104
+ "endColumn": 38,
105
+ "lineCount": 1
106
+ }
107
+ },
108
+ {
109
+ "code": "reportOverlappingOverload",
110
+ "range": {
111
+ "startColumn": 8,
112
+ "endColumn": 37,
113
+ "lineCount": 1
114
+ }
115
+ },
116
+ {
117
+ "code": "reportOverlappingOverload",
118
+ "range": {
119
+ "startColumn": 8,
120
+ "endColumn": 37,
121
+ "lineCount": 1
122
+ }
123
+ },
124
+ {
125
+ "code": "reportOverlappingOverload",
126
+ "range": {
127
+ "startColumn": 8,
128
+ "endColumn": 36,
129
+ "lineCount": 1
130
+ }
131
+ },
132
+ {
133
+ "code": "reportOverlappingOverload",
134
+ "range": {
135
+ "startColumn": 8,
136
+ "endColumn": 23,
137
+ "lineCount": 1
138
+ }
139
+ },
140
+ {
141
+ "code": "reportOverlappingOverload",
142
+ "range": {
143
+ "startColumn": 8,
144
+ "endColumn": 22,
145
+ "lineCount": 1
146
+ }
147
+ },
148
+ {
149
+ "code": "reportOverlappingOverload",
150
+ "range": {
151
+ "startColumn": 8,
152
+ "endColumn": 12,
153
+ "lineCount": 1
154
+ }
155
+ },
156
+ {
157
+ "code": "reportOverlappingOverload",
158
+ "range": {
159
+ "startColumn": 8,
160
+ "endColumn": 38,
161
+ "lineCount": 1
162
+ }
163
+ },
164
+ {
165
+ "code": "reportOverlappingOverload",
166
+ "range": {
167
+ "startColumn": 8,
168
+ "endColumn": 37,
169
+ "lineCount": 1
170
+ }
171
+ },
172
+ {
173
+ "code": "reportOverlappingOverload",
174
+ "range": {
175
+ "startColumn": 8,
176
+ "endColumn": 37,
177
+ "lineCount": 1
178
+ }
179
+ },
180
+ {
181
+ "code": "reportOverlappingOverload",
182
+ "range": {
183
+ "startColumn": 8,
184
+ "endColumn": 36,
185
+ "lineCount": 1
186
+ }
187
+ },
188
+ {
189
+ "code": "reportOverlappingOverload",
190
+ "range": {
191
+ "startColumn": 8,
192
+ "endColumn": 23,
193
+ "lineCount": 1
194
+ }
195
+ },
196
+ {
197
+ "code": "reportOverlappingOverload",
198
+ "range": {
199
+ "startColumn": 8,
200
+ "endColumn": 22,
201
+ "lineCount": 1
202
+ }
203
+ },
204
+ {
205
+ "code": "reportOverlappingOverload",
206
+ "range": {
207
+ "startColumn": 8,
208
+ "endColumn": 12,
209
+ "lineCount": 1
210
+ }
211
+ }
212
+ ]
213
+ }
214
+ }
@@ -0,0 +1,32 @@
1
+ # https://editorconfig.org/
2
+ # https://github.com/editorconfig/editorconfig-vim
3
+ # https://github.com/editorconfig/editorconfig-emacs
4
+
5
+ root = true
6
+
7
+ [*]
8
+ indent_style = space
9
+ end_of_line = lf
10
+ charset = utf-8
11
+ trim_trailing_whitespace = true
12
+ insert_final_newline = true
13
+
14
+ [*.py]
15
+ indent_size = 4
16
+
17
+ [*.rst]
18
+ indent_size = 4
19
+
20
+ [*.cpp]
21
+ indent_size = 2
22
+
23
+ [*.hpp]
24
+ indent_size = 2
25
+
26
+ # There may be one in doc/
27
+ [Makefile]
28
+ indent_style = tab
29
+
30
+ # https://github.com/microsoft/vscode/issues/1679
31
+ [*.md]
32
+ trim_trailing_whitespace = false
@@ -0,0 +1,65 @@
1
+ .pydevproject
2
+ .project
3
+ .settings
4
+ *~
5
+ .*.sw[po]
6
+ .sw[po]
7
+ *.dat
8
+ *.pyc
9
+ build
10
+ *.prof
11
+ siteconf.py
12
+ doc/hedge-notes.pdf
13
+ *.vtk
14
+ *.silo
15
+ *.session
16
+ dump.py
17
+ *.orig
18
+ /Makefile
19
+ tags
20
+ *.vtu
21
+ *.pvtu
22
+ *.pvd
23
+ doc/user-reference
24
+ doc/dev-reference
25
+ *.poly
26
+ *.node
27
+ *.bak
28
+ *.pdf
29
+ *.tif
30
+ *.so
31
+ *.pyd
32
+ *.mpeg
33
+ *-journal
34
+ visitlog.py
35
+ *.log
36
+ .figleaf
37
+ dist
38
+ *.egg*
39
+ MANIFEST
40
+ *.patch
41
+ *.LOCAL.[0-9]*
42
+ *.REMOTE.[0-9]*
43
+ *.BASE.[0-9]*
44
+ tmp
45
+ temp*
46
+ setuptools.pth
47
+ setuptools-*.tar.gz
48
+ core
49
+ src/wrapper/gen-*
50
+ .dirty-git-ok
51
+
52
+ # wheels
53
+ arch_tmp
54
+ archives
55
+ downloads
56
+ gmp-*
57
+ isl-*
58
+ wheelhouse
59
+ venv
60
+
61
+ _skbuild/
62
+ libnanobind-static.a
63
+ CMakeFiles/
64
+
65
+ preproc-headers
@@ -0,0 +1,92 @@
1
+ Python 3:
2
+ script: |
3
+ EXTRA_INSTALL="numpy"
4
+ curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
5
+ . ./build-and-test-py-project.sh
6
+ tags:
7
+ - python3
8
+ except:
9
+ - tags
10
+ artifacts:
11
+ reports:
12
+ junit: test/pytest.xml
13
+
14
+ Examples:
15
+ script: |
16
+ EXTRA_INSTALL="matplotlib numpy"
17
+ curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/ci-support.sh
18
+ . ./ci-support.sh
19
+ build_py_project_in_venv
20
+ run_examples
21
+ tags:
22
+ - python3
23
+ except:
24
+ - tags
25
+
26
+ Python 3 without small-integer opt:
27
+ script: |
28
+ curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
29
+ export PROJECT_INSTALL_FLAGS="--config-settings=cmake.define.USE_IMATH_SIO=OFF"
30
+ . ./build-and-test-py-project.sh
31
+ tags:
32
+ - python3
33
+ except:
34
+ - tags
35
+ artifacts:
36
+ reports:
37
+ junit: test/pytest.xml
38
+
39
+ Python 3 + Barvinok:
40
+ script: |
41
+ git clean -fdx
42
+ python3 -m venv .env
43
+ source .env/bin/activate
44
+ python -m ensurepip
45
+ pip install pcpp numpy pytest
46
+ ./build-with-barvinok.sh "$HOME/barvinok-build"
47
+ (cd test; LD_LIBRARY_PATH="$HOME/barvinok-build/lib" python -m pytest --tb=native -rxsw)
48
+
49
+ tags:
50
+ - python3
51
+ except:
52
+ - tags
53
+ artifacts:
54
+ reports:
55
+ junit: test/pytest.xml
56
+
57
+ PyPy3:
58
+ script:
59
+ - export PY_EXE=pypy3
60
+ - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh
61
+ - ". ./build-and-test-py-project.sh"
62
+ allow_failure: true
63
+ tags:
64
+ - pypy
65
+ except:
66
+ - tags
67
+ artifacts:
68
+ reports:
69
+ junit: test/pytest.xml
70
+
71
+ Documentation:
72
+ script: |
73
+ curl -L -O -k https://tiker.net/ci-support-v0
74
+ . ci-support-v0
75
+ build_py_project_in_venv
76
+
77
+ build_docs
78
+ maybe_upload_docs
79
+
80
+ tags:
81
+ - python3
82
+ only:
83
+ - main
84
+
85
+ Ruff:
86
+ script:
87
+ - pipx install ruff
88
+ - ruff check
89
+ tags:
90
+ - docker-runner
91
+ except:
92
+ - tags
@@ -0,0 +1,3 @@
1
+ [submodule "isl"]
2
+ path = isl
3
+ url = https://github.com/inducer/isl.git
@@ -0,0 +1,249 @@
1
+ # Useful setting for looking at build commands (passed to pip install):
2
+ # --config-settings=cmake.define.CMAKE_VERBOSE_MAKEFILE=ON
3
+ #
4
+ # To build with debug info: Run pip install with
5
+ # --config-settings=cmake.build-type=Debug
6
+ # Note that setting CMAKE_BUILD_TYPE to Debug here does not suffice:
7
+ # scikit build core will still silently strip the debug symbols:
8
+ # https://github.com/scikit-build/scikit-build-core/issues/875
9
+
10
+ cmake_minimum_required(VERSION 3.15...3.27)
11
+ project(islpy)
12
+ find_package(Python 3.10 COMPONENTS Interpreter Development.Module REQUIRED)
13
+
14
+ # Detect the installed nanobind package and import it into CMake
15
+ execute_process(
16
+ COMMAND "${Python_EXECUTABLE}" -m nanobind --cmake_dir
17
+ OUTPUT_STRIP_TRAILING_WHITESPACE OUTPUT_VARIABLE NB_DIR)
18
+ list(APPEND CMAKE_PREFIX_PATH "${NB_DIR}")
19
+ find_package(nanobind CONFIG REQUIRED)
20
+
21
+ option(USE_SHIPPED_ISL "Use shipped ISL" ON)
22
+ option(USE_SHIPPED_IMATH "Use shipped IMATH" ON)
23
+ option(USE_IMATH_FOR_MP "Use IMATH for multiprecision arithmetic" ON)
24
+ option(USE_IMATH_SIO "Use IMATH small-integer optimization" ON)
25
+ option(USE_GMP_FOR_MP "Use GMP" OFF)
26
+ option(USE_BARVINOK "Use Barvinok (beware of GPL license)" OFF)
27
+
28
+ if(USE_SHIPPED_ISL)
29
+ if(USE_BARVINOK)
30
+ message(FATAL_ERROR "Using barvinok is not compatible with shipped ISL")
31
+ endif()
32
+ set(ISL_SOURCES
33
+ isl/isl_schedule.c
34
+ isl/isl_ast_build_expr.c
35
+ isl/isl_sample.c
36
+ isl/isl_coalesce.c
37
+ isl/isl_fold.c
38
+ isl/isl_schedule_read.c
39
+ isl/isl_aff_map.c
40
+ isl/isl_scheduler_clustering.c
41
+ isl/isl_flow.c
42
+ isl/isl_map_subtract.c
43
+ isl/uset_to_umap.c
44
+ isl/isl_hash.c
45
+ isl/isl_aff.c
46
+ isl/isl_transitive_closure.c
47
+ isl/isl_map_simplify.c
48
+ isl/print.c
49
+ isl/basis_reduction_tab.c
50
+ isl/isl_schedule_constraints.c
51
+ isl/isl_sort.c
52
+ isl/isl_ast.c
53
+ isl/bset_to_bmap.c
54
+ isl/bset_from_bmap.c
55
+ isl/isl_schedule_band.c
56
+ isl/isl_bernstein.c
57
+ isl/uset_from_umap.c
58
+ isl/isl_scheduler.c
59
+ isl/isl_set_to_ast_graft_list.c
60
+ isl/isl_convex_hull.c
61
+ isl/isl_schedule_tree.c
62
+ isl/isl_tarjan.c
63
+ isl/isl_equalities.c
64
+ isl/isl_constraint.c
65
+ isl/isl_union_map.c
66
+ isl/isl_bound.c
67
+ isl/isl_stride.c
68
+ isl/set_list_from_map_list_inl.c
69
+ isl/isl_farkas.c
70
+ isl/isl_tab_pip.c
71
+ isl/set_to_map.c
72
+ isl/set_from_map.c
73
+ isl/isl_lp.c
74
+ isl/isl_ffs.c
75
+ isl/isl_id_to_ast_expr.c
76
+ isl/isl_val.c
77
+ isl/isl_set_list.c
78
+ isl/isl_space.c
79
+ isl/isl_tab.c
80
+ isl/isl_map.c
81
+ isl/isl_version.c
82
+ isl/isl_stream.c
83
+ isl/isl_local_space.c
84
+ isl/isl_id_to_pw_aff.c
85
+ isl/isl_ilp.c
86
+ isl/isl_range.c
87
+ isl/isl_point.c
88
+ isl/isl_schedule_node.c
89
+ isl/isl_polynomial.c
90
+ isl/isl_options.c
91
+ isl/isl_morph.c
92
+ isl/isl_deprecated.c
93
+ isl/isl_ctx.c
94
+ isl/isl_seq.c
95
+ isl/isl_box.c
96
+ isl/isl_output.c
97
+ isl/isl_factorization.c
98
+ isl/isl_printer.c
99
+ isl/dep.c
100
+ isl/isl_id_to_id.c
101
+ isl/isl_ast_build.c
102
+ isl/isl_ast_codegen.c
103
+ isl/isl_obj.c
104
+ isl/isl_scheduler_scc.c
105
+ isl/isl_vec.c
106
+ isl/isl_map_list.c
107
+ isl/isl_vertices.c
108
+ isl/isl_arg.c
109
+ isl/isl_mat.c
110
+ isl/isl_id.c
111
+ isl/isl_affine_hull.c
112
+ isl/isl_scan.c
113
+ isl/isl_map_to_basic_set.c
114
+ isl/isl_blk.c
115
+ isl/isl_dim_map.c
116
+ isl/isl_local.c
117
+ isl/isl_reordering.c
118
+ isl/isl_ast_graft.c
119
+ isl/isl_input.c
120
+ )
121
+ set(ISL_INC_DIRS
122
+ ${CMAKE_SOURCE_DIR}/isl-supplementary
123
+ ${CMAKE_SOURCE_DIR}/isl/include
124
+ ${CMAKE_SOURCE_DIR}/isl
125
+ )
126
+ if(USE_GMP_FOR_MP)
127
+ list(APPEND ISL_SOURCES
128
+ isl/isl_val_gmp.c
129
+ )
130
+ elseif(USE_IMATH_FOR_MP)
131
+ if(USE_SHIPPED_IMATH)
132
+ list(APPEND ISL_SOURCES
133
+ isl/isl_imath.c
134
+ isl/imath/imath.c
135
+ isl/imath/imrat.c
136
+ isl/imath/gmp_compat.c
137
+ )
138
+ list(APPEND ISL_INC_DIRS ${CMAKE_SOURCE_DIR}/isl/imath)
139
+ endif()
140
+ if(USE_IMATH_SIO)
141
+ list(APPEND ISL_SOURCES
142
+ isl/isl_int_sioimath.c
143
+ isl/isl_val_sioimath.c
144
+ )
145
+ else()
146
+ list(APPEND ISL_SOURCES
147
+ isl/isl_val_imath.c
148
+ )
149
+ endif()
150
+ endif()
151
+ else()
152
+ set(ISL_SOURCES)
153
+ if(NOT ISL_LIB_NAMES)
154
+ set(ISL_LIB_NAMES isl)
155
+ if(USE_BARVINOK)
156
+ list(PREPEND ISL_LIB_NAMES barvinok)
157
+ endif()
158
+ endif()
159
+ endif()
160
+
161
+ set(ISLPY_GENERATED_SOURCE
162
+ ${CMAKE_BINARY_DIR}/generated/gen-expose-part1.inc
163
+ ${CMAKE_BINARY_DIR}/generated/gen-expose-part2.inc
164
+ ${CMAKE_BINARY_DIR}/generated/gen-expose-part3.inc
165
+ ${CMAKE_BINARY_DIR}/generated/gen-wrap-part1.inc
166
+ ${CMAKE_BINARY_DIR}/generated/gen-wrap-part2.inc
167
+ ${CMAKE_BINARY_DIR}/generated/gen-wrap-part3.inc
168
+ )
169
+
170
+ if(USE_BARVINOK)
171
+ set(ISLPY_GENERATION_FLAGS --barvinok)
172
+ else()
173
+ set(ISLPY_GENERATION_FLAGS)
174
+ endif()
175
+
176
+ add_custom_command(
177
+ OUTPUT ${ISLPY_GENERATED_SOURCE}
178
+ COMMAND ${Python_EXECUTABLE} ${CMAKE_SOURCE_DIR}/gen_wrap.py
179
+ -o ${CMAKE_BINARY_DIR}/generated
180
+ -I ${ISL_INC_DIRS}
181
+ ${ISLPY_GENERATION_FLAGS}
182
+ )
183
+
184
+ nanobind_add_module(
185
+ _isl
186
+ NB_STATIC # Build static libnanobind (the extension module itself remains a shared library)
187
+ NOMINSIZE # Optimize for speed, not for size
188
+ LTO # Enable LTO
189
+ src/wrapper/wrap_isl.cpp
190
+ src/wrapper/wrap_isl_part1.cpp
191
+ src/wrapper/wrap_isl_part2.cpp
192
+ src/wrapper/wrap_isl_part3.cpp
193
+ ${ISL_SOURCES}
194
+ ${ISLPY_GENERATED_SOURCE}
195
+ )
196
+ target_include_directories(_isl PRIVATE ${CMAKE_BINARY_DIR}/generated)
197
+
198
+ # Work around https://github.com/inducer/islpy/issues/120.
199
+ # See https://stackoverflow.com/questions/43554227/extern-inline-func-results-in-undefined-reference-error
200
+ # for some context.
201
+ set_source_files_properties(${ISL_SOURCES} PROPERTIES COMPILE_DEFINITIONS __OPTIMIZE_SIZE__)
202
+
203
+ if(USE_IMATH_FOR_MP)
204
+ target_compile_definitions(_isl PRIVATE USE_IMATH_FOR_MP=1)
205
+ endif()
206
+
207
+ if(USE_IMATH_SIO)
208
+ target_compile_definitions(_isl PRIVATE USE_SMALL_INT_OPT=1)
209
+ endif()
210
+
211
+ if(USE_GMP_FOR_MP)
212
+ target_compile_definitions(_isl PRIVATE USE_GMP_FOR_MP=1)
213
+ endif()
214
+
215
+ if(USE_BARVINOK)
216
+ target_compile_definitions(_isl PRIVATE ISLPY_INCLUDE_BARVINOK=1)
217
+ target_include_directories(_isl PRIVATE ${BARVINOK_INC_DIRS})
218
+ target_link_directories(_isl PRIVATE ${BARVINOK_LIB_DIRS})
219
+ target_link_libraries(_isl PRIVATE ${BARVINOK_LIB_NAMES})
220
+ endif()
221
+
222
+ target_include_directories(_isl PRIVATE ${ISL_INC_DIRS})
223
+
224
+ if(USE_SHIPPED_ISL)
225
+ target_compile_definitions(_isl PRIVATE GIT_HEAD_ID="included-with-islpy")
226
+ else()
227
+ target_link_directories(_isl PRIVATE ${ISL_LIB_DIRS})
228
+ target_link_libraries(_isl PRIVATE ${ISL_LIB_NAMES})
229
+ endif()
230
+
231
+ install(TARGETS _isl LIBRARY DESTINATION islpy)
232
+
233
+ set(ISLPY_STUB_FILE ${CMAKE_BINARY_DIR}/_isl.pyi)
234
+ add_custom_command(
235
+ OUTPUT ${ISLPY_STUB_FILE}
236
+ COMMAND ${Python_EXECUTABLE} ${CMAKE_SOURCE_DIR}/stubgen/stubgen.py
237
+ -o ${CMAKE_BINARY_DIR}
238
+ --exec ${CMAKE_SOURCE_DIR}/islpy/_monkeypatch.py
239
+ --python-path ${CMAKE_BINARY_DIR}
240
+ -m _isl
241
+ DEPENDS _isl
242
+ )
243
+ add_custom_target(
244
+ _isl_stub
245
+ ALL DEPENDS ${CMAKE_BINARY_DIR}/_isl.pyi
246
+ )
247
+ install(FILES ${ISLPY_STUB_FILE} DESTINATION islpy)
248
+
249
+ # vim: sw=2