islpy 2024.1__tar.gz → 2025.1__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.
- {islpy-2024.1 → islpy-2025.1}/PKG-INFO +14 -5
- {islpy-2024.1 → islpy-2025.1}/README.rst +2 -2
- {islpy-2024.1 → islpy-2025.1}/build-with-barvinok.sh +1 -1
- {islpy-2024.1 → islpy-2025.1}/configure.py +2 -0
- {islpy-2024.1 → islpy-2025.1}/doc/conf.py +5 -3
- {islpy-2024.1 → islpy-2025.1}/examples/demo.py +3 -2
- {islpy-2024.1 → islpy-2025.1}/gen_wrap.py +30 -27
- {islpy-2024.1 → islpy-2025.1}/isl/configure.ac +4 -5
- islpy-2025.1/isl/include/isl/cpp-checked-conversion.h +707 -0
- islpy-2025.1/isl/include/isl/cpp-checked.h +21192 -0
- islpy-2025.1/isl/include/isl/cpp.h +30864 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/ctx.h +1 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/map.h +3 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/polynomial.h +2 -0
- islpy-2025.1/isl/include/isl/typed_cpp.h +52760 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_aff.c +115 -174
- {islpy-2024.1 → islpy-2025.1}/isl/isl_aff_private.h +2 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_affine_hull.c +2 -2
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_build.c +0 -18
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_build_expr.c +403 -83
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_build_private.h +0 -10
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_codegen.c +13 -44
- {islpy-2024.1 → islpy-2025.1}/isl/isl_bound.c +136 -20
- {islpy-2024.1 → islpy-2025.1}/isl/isl_coalesce.c +31 -25
- {islpy-2024.1 → islpy-2025.1}/isl/isl_constraint.c +4 -4
- {islpy-2024.1 → islpy-2025.1}/isl/isl_convex_hull.c +9 -7
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ctx.c +12 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_input.c +15 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_insert_domain_templ.c +1 -1
- {islpy-2024.1 → islpy-2025.1}/isl/isl_local.c +1 -1
- {islpy-2024.1 → islpy-2025.1}/isl/isl_local_space.c +5 -5
- {islpy-2024.1 → islpy-2025.1}/isl/isl_map.c +1509 -184
- {islpy-2024.1 → islpy-2025.1}/isl/isl_map_private.h +22 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_map_simplify.c +772 -161
- {islpy-2024.1 → islpy-2025.1}/isl/isl_map_subtract.c +2 -2
- {islpy-2024.1 → islpy-2025.1}/isl/isl_mat.c +7 -6
- islpy-2025.1/isl/isl_maybe_aff.h +10 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_morph.c +4 -4
- {islpy-2024.1 → islpy-2025.1}/isl/isl_output.c +9 -2
- {islpy-2024.1 → islpy-2025.1}/isl/isl_polynomial.c +50 -34
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_print_templ.c +26 -2
- {islpy-2024.1 → islpy-2025.1}/isl/isl_sample.c +5 -5
- {islpy-2024.1 → islpy-2025.1}/isl/isl_scheduler.c +1 -2
- {islpy-2024.1 → islpy-2025.1}/isl/isl_seq.c +19 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_seq.h +2 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_space.c +18 -1
- {islpy-2024.1 → islpy-2025.1}/isl/isl_space_private.h +1 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_tab.c +103 -20
- {islpy-2024.1 → islpy-2025.1}/isl/isl_tab.h +2 -1
- {islpy-2024.1 → islpy-2025.1}/isl/isl_tab_lexopt_templ.c +104 -25
- {islpy-2024.1 → islpy-2025.1}/isl/isl_tab_pip.c +156 -40
- {islpy-2024.1 → islpy-2025.1}/isl/isl_test.c +17 -166
- {islpy-2024.1 → islpy-2025.1}/isl/isl_transitive_closure.c +5 -5
- {islpy-2024.1 → islpy-2025.1}/isl/isl_vec.c +1 -1
- {islpy-2024.1 → islpy-2025.1}/isl/isl_vertices.c +3 -3
- {islpy-2024.1 → islpy-2025.1}/islpy/__init__.py +4 -15
- {islpy-2024.1 → islpy-2025.1}/islpy/version.py +1 -1
- {islpy-2024.1 → islpy-2025.1}/islpy.egg-info/PKG-INFO +14 -5
- {islpy-2024.1 → islpy-2025.1}/islpy.egg-info/SOURCES.txt +5 -1
- islpy-2025.1/pyproject.toml +84 -0
- islpy-2025.1/setup.cfg +4 -0
- {islpy-2024.1 → islpy-2025.1}/setup.py +26 -12
- {islpy-2024.1 → islpy-2025.1}/test/test_isl.py +6 -5
- islpy-2024.1/pyproject.toml +0 -32
- islpy-2024.1/setup.cfg +0 -15
- {islpy-2024.1 → islpy-2025.1}/CITATION.cff +0 -0
- {islpy-2024.1 → islpy-2025.1}/CMakeLists.txt +0 -0
- {islpy-2024.1 → islpy-2025.1}/MANIFEST.in +0 -0
- {islpy-2024.1 → islpy-2025.1}/Makefile.in +0 -0
- {islpy-2024.1 → islpy-2025.1}/README_SETUP.txt +0 -0
- {islpy-2024.1 → islpy-2025.1}/aksetup_helper.py +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/Makefile +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/images/after-union.png +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/images/before-union.png +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/index.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/misc.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/ref_ast.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/ref_containers.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/ref_expr.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/ref_flow.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/ref_fundamental.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/ref_geo.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/ref_schedule.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/ref_set.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/doc/reference.rst +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/LICENSE +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/all.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/basis_reduction_tab.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/basis_reduction_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/bound.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/bset_from_bmap.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/bset_to_bmap.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/cat.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/check_parse_fail_test_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/check_reparse_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/check_reparse_test_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/check_single_reference_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/check_type_range_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/closure.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/codegen.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/dep.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/extract_key.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/flow.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/flow_cmp.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/has_single_reference_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/LICENSE +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/gmp_compat.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/gmp_compat.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/imath.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/imath.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/imdrover.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/imdrover.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/imrat.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/imrat.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/imtest.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/imtimer.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/iprime.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/iprime.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/rsamath.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath/rsamath.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath_wrap/gmp_compat.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath_wrap/gmp_compat.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath_wrap/imath.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath_wrap/imath.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath_wrap/imrat.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath_wrap/imrat.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/imath_wrap/wrap.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/aff.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/aff_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/arg.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/ast.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/ast_build.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/ast_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/constraint.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/fixed_box.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/flow.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/hash.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/hmap.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/hmap_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/id.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/id_to_ast_expr.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/id_to_id.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/id_to_pw_aff.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/id_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/ilp.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/list.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/local_space.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/lp.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/map_to_basic_set.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/map_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/mat.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/maybe.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/maybe_ast_expr.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/maybe_basic_set.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/maybe_id.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/maybe_pw_aff.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/maybe_templ.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/multi.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/obj.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/options.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/point.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/polynomial_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/printer.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/printer_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/schedule.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/schedule_node.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/schedule_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/set.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/set_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/space.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/space_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/stream.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/stride_info.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/union_map.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/union_map_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/union_set.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/union_set_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/val.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/val_gmp.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/val_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/vec.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/version.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/include/isl/vertices.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_aff_lex_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_aff_map.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_align_params_bin_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_align_params_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_arg.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_build_expr.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_graft.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_graft_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_node_set_field_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ast_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_basis_reduction.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_bernstein.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_bernstein.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_bind_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_blk.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_blk.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_bound.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_box.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_check_named_params_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_config_post.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_constraint_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_copy_tuple_id_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ctx_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_deprecated.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_dim_map.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_dim_map.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_domain_factor_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_drop_unused_params_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_equalities.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_equalities.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_factorization.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_factorization.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_farkas.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ffs.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_flow.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_fold.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_from_range_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_gmp.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_hash.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_hash_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_id.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_id_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_id_to_ast_expr.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_id_to_id.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_id_to_pw_aff.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ilp.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ilp_opt_fn_val_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ilp_opt_multi_val_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ilp_opt_val_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_ilp_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_imath.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_imath.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_int.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_int_gmp.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_int_imath.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_int_sioimath.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_int_sioimath.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_list_macro.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_list_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_list_read_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_list_read_yaml_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_list_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_list_templ.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_local.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_local_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_local_space_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_lp.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_lp_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_map_bound_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_map_lexopt_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_map_list.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_map_to_basic_set.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_mat_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_maybe_ast_graft_list.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_maybe_map.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_morph.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_add_constant_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_align_set.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_align_union_set.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_apply_explicit_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_apply_no_explicit_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_apply_set_explicit_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_apply_set_no_explicit_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_apply_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_apply_union_set_explicit_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_arith_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_bin_val_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_bind_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_bind_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_check_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_cmp.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_coalesce.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_dim_id_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_dims.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_domain_reverse_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_explicit_domain.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_floor.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_from_base_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_from_tuple_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_gist.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_hash.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_identity_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_insert_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_intersect.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_locals_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_macro.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_min_max_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_move_dims_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_nan_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_no_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_no_explicit_domain.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_param_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_product_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_pw_aff_explicit_domain.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_pw_aff_pullback_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_read_no_explicit_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_splice_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_templ.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_tuple_id_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_un_op_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_unbind_params_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_union_add_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_union_pw_aff_explicit_domain.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_zero_space_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_multi_zero_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_obj.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_opt_mpa_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_options.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_options_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_output_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_point.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_point_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_polynomial_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_power_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_printer.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_printer_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_project_out_all_params_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_project_out_param_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_add_constant_multi_val_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_add_constant_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_add_constant_val_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_add_disjoint_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_bind_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_domain_reverse_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_eval.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_fix_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_from_range_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_hash.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_insert_dims_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_insert_domain_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_lift_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_locals_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_macro.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_morph_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_move_dims_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_neg_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_opt_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_pullback_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_range_tuple_id_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_scale_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_split_dims_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_sub_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_templ.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_un_op_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_pw_union_opt.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_range.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_range.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_read_from_str_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_reordering.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_reordering.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_sample.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_scan.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_scan.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_band.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_band.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_constraints.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_constraints.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_node.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_node_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_read.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_tree.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_schedule_tree.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_scheduler.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_scheduler_clustering.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_scheduler_clustering.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_scheduler_scc.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_scheduler_scc.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_set_list.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_set_to_ast_graft_list.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_set_to_ast_graft_list.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_sort.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_sort.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_stream.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_stream_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_stream_read_pw_with_params_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_stream_read_with_params_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_stride.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_tarjan.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_tarjan.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_test_imath.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_test_int.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_test_list_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_test_plain_equal_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_type_check_equal_space_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_type_check_match_range_multi_val.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_type_has_equal_space_bin_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_type_has_equal_space_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_type_has_space_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_unbind_params_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_domain_reverse_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_eval.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_locals_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_macro.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_map.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_map_lex_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_map_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_multi.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_neg.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_print_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_pw_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_set_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_single.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_sub_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_union_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_val.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_val_gmp.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_val_imath.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_val_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_val_sioimath.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_vec_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_version.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_vertices_private.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/isl_yaml.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/mp_get_memory_functions.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/opt_type.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/pip.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/polyhedron_detect_equalities.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/polyhedron_minimize.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/polyhedron_remove_redundant_equalities.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/polyhedron_sample.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/polytope_scan.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/print.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/print_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/print_templ_yaml.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/print_yaml_field_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/read_in_string_templ.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/schedule.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/schedule_cmp.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/set_from_map.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/set_list_from_map_list_inl.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/set_to_map.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/uset_from_umap.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl/uset_to_umap.c +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl-supplementary/gitversion.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl-supplementary/isl/config.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl-supplementary/isl/stdint.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/isl-supplementary/isl_config.h +0 -0
- {islpy-2024.1 → islpy-2025.1}/islpy.egg-info/dependency_links.txt +0 -0
- {islpy-2024.1 → islpy-2025.1}/islpy.egg-info/requires.txt +0 -0
- {islpy-2024.1 → islpy-2025.1}/islpy.egg-info/top_level.txt +0 -0
- {islpy-2024.1 → islpy-2025.1}/src/wrapper/wrap_helpers.hpp +0 -0
- {islpy-2024.1 → islpy-2025.1}/src/wrapper/wrap_isl.cpp +0 -0
- {islpy-2024.1 → islpy-2025.1}/src/wrapper/wrap_isl.hpp +0 -0
- {islpy-2024.1 → islpy-2025.1}/src/wrapper/wrap_isl_part1.cpp +0 -0
- {islpy-2024.1 → islpy-2025.1}/src/wrapper/wrap_isl_part2.cpp +0 -0
- {islpy-2024.1 → islpy-2025.1}/src/wrapper/wrap_isl_part3.cpp +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: islpy
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2025.1
|
|
4
4
|
Summary: Wrapper around isl, an integer set library
|
|
5
5
|
Home-page: http://documen.tician.de/islpy
|
|
6
6
|
Author: Andreas Kloeckner
|
|
@@ -23,7 +23,16 @@ Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries
|
|
24
24
|
Requires-Python: ~=3.8
|
|
25
25
|
Provides-Extra: test
|
|
26
|
-
|
|
26
|
+
Requires-Dist: pytest>=2; extra == "test"
|
|
27
|
+
Dynamic: author
|
|
28
|
+
Dynamic: author-email
|
|
29
|
+
Dynamic: classifier
|
|
30
|
+
Dynamic: description
|
|
31
|
+
Dynamic: home-page
|
|
32
|
+
Dynamic: license
|
|
33
|
+
Dynamic: provides-extra
|
|
34
|
+
Dynamic: requires-python
|
|
35
|
+
Dynamic: summary
|
|
27
36
|
|
|
28
37
|
islpy: Polyhedral Analysis from Python
|
|
29
38
|
======================================
|
|
@@ -31,9 +40,9 @@ islpy: Polyhedral Analysis from Python
|
|
|
31
40
|
.. image:: https://gitlab.tiker.net/inducer/islpy/badges/main/pipeline.svg
|
|
32
41
|
:alt: Gitlab Build Status
|
|
33
42
|
:target: https://gitlab.tiker.net/inducer/islpy/commits/main
|
|
34
|
-
.. image:: https://github.com/inducer/islpy/workflows/CI/badge.svg?branch=main
|
|
43
|
+
.. image:: https://github.com/inducer/islpy/workflows/CI/badge.svg?branch=main
|
|
35
44
|
:alt: Github Build Status
|
|
36
|
-
:target: https://github.com/inducer/islpy/actions?query=branch%3Amain+workflow%3ACI
|
|
45
|
+
:target: https://github.com/inducer/islpy/actions?query=branch%3Amain+workflow%3ACI
|
|
37
46
|
.. image:: https://badge.fury.io/py/islpy.svg
|
|
38
47
|
:alt: Python Package Index Release Page
|
|
39
48
|
:target: https://pypi.org/project/islpy/
|
|
@@ -4,9 +4,9 @@ islpy: Polyhedral Analysis from Python
|
|
|
4
4
|
.. image:: https://gitlab.tiker.net/inducer/islpy/badges/main/pipeline.svg
|
|
5
5
|
:alt: Gitlab Build Status
|
|
6
6
|
:target: https://gitlab.tiker.net/inducer/islpy/commits/main
|
|
7
|
-
.. image:: https://github.com/inducer/islpy/workflows/CI/badge.svg?branch=main
|
|
7
|
+
.. image:: https://github.com/inducer/islpy/workflows/CI/badge.svg?branch=main
|
|
8
8
|
:alt: Github Build Status
|
|
9
|
-
:target: https://github.com/inducer/islpy/actions?query=branch%3Amain+workflow%3ACI
|
|
9
|
+
:target: https://github.com/inducer/islpy/actions?query=branch%3Amain+workflow%3ACI
|
|
10
10
|
.. image:: https://badge.fury.io/py/islpy.svg
|
|
11
11
|
:alt: Python Package Index Release Page
|
|
12
12
|
:target: https://pypi.org/project/islpy/
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import re
|
|
2
|
-
|
|
3
2
|
from urllib.request import urlopen
|
|
4
3
|
|
|
4
|
+
|
|
5
5
|
_conf_url = \
|
|
6
6
|
"https://raw.githubusercontent.com/inducer/sphinxconfig/main/sphinxconfig.py"
|
|
7
7
|
with urlopen(_conf_url) as _inf:
|
|
8
8
|
exec(compile(_inf.read(), _conf_url, "exec"), globals())
|
|
9
9
|
|
|
10
|
-
extensions.remove("sphinx.ext.linkcode")
|
|
10
|
+
extensions.remove("sphinx.ext.linkcode") # noqa: F821
|
|
11
11
|
|
|
12
12
|
copyright = "2011-21, Andreas Kloeckner"
|
|
13
13
|
|
|
@@ -23,6 +23,7 @@ intersphinx_mapping = {
|
|
|
23
23
|
"python": ("https://docs.python.org/3/", None),
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
|
|
26
27
|
def autodoc_process_signature(app, what, name, obj, options, signature,
|
|
27
28
|
return_annotation):
|
|
28
29
|
from inspect import ismethod
|
|
@@ -38,6 +39,7 @@ def autodoc_process_signature(app, what, name, obj, options, signature,
|
|
|
38
39
|
|
|
39
40
|
return (signature, return_annotation)
|
|
40
41
|
|
|
42
|
+
|
|
41
43
|
def autodoc_process_docstring(app, what, name, obj, options, lines):
|
|
42
44
|
# clear out redundant pybind-generated member list
|
|
43
45
|
if any("Members" in ln for ln in lines):
|
|
@@ -61,7 +63,7 @@ def autodoc_process_docstring(app, what, name, obj, options, lines):
|
|
|
61
63
|
|
|
62
64
|
doc_match = arg_list_re.match(meth_obj.__doc__)
|
|
63
65
|
if doc_match is None:
|
|
64
|
-
#print(f"'{meth_obj.__doc__}' did not match arg list RE")
|
|
66
|
+
# print(f"'{meth_obj.__doc__}' did not match arg list RE")
|
|
65
67
|
return result
|
|
66
68
|
|
|
67
69
|
arg_list = doc_match.group(2).split(", ")
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import islpy as isl
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
space = isl.Space.create_from_names(isl.DEFAULT_CONTEXT, set=["x", "y"])
|
|
4
5
|
|
|
5
6
|
bset = (isl.BasicSet.universe(space)
|
|
@@ -53,8 +54,8 @@ def plot_basic_set(bset, *args, **kwargs):
|
|
|
53
54
|
if plot_vert:
|
|
54
55
|
pt.plot(vertex_pts[:, 0], vertex_pts[:, 1], "o")
|
|
55
56
|
|
|
56
|
-
import matplotlib.path as mpath
|
|
57
57
|
import matplotlib.patches as mpatches
|
|
58
|
+
import matplotlib.path as mpath
|
|
58
59
|
|
|
59
60
|
Path = mpath.Path # noqa
|
|
60
61
|
|
|
@@ -76,7 +77,7 @@ plot_basic_set(bset2, facecolor="green", edgecolor="black", alpha=0.2)
|
|
|
76
77
|
pt.grid()
|
|
77
78
|
pt.xlim([-1, 6])
|
|
78
79
|
pt.ylim([-1, 8])
|
|
79
|
-
#pt.show()
|
|
80
|
+
# pt.show()
|
|
80
81
|
pt.savefig("before-union.png", dpi=50)
|
|
81
82
|
|
|
82
83
|
plot_basic_set(union, facecolor="blue", edgecolor="yellow",
|
|
@@ -20,12 +20,13 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
20
20
|
THE SOFTWARE.
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
import os
|
|
24
24
|
import re
|
|
25
25
|
import sys
|
|
26
|
-
import
|
|
26
|
+
from dataclasses import dataclass
|
|
27
27
|
from os.path import join
|
|
28
|
-
from typing import
|
|
28
|
+
from typing import ClassVar, List, Mapping, Sequence
|
|
29
|
+
|
|
29
30
|
|
|
30
31
|
SEM_TAKE = "take"
|
|
31
32
|
SEM_GIVE = "give"
|
|
@@ -53,19 +54,19 @@ def for lambda try
|
|
|
53
54
|
""".split()
|
|
54
55
|
|
|
55
56
|
|
|
56
|
-
class Retry(RuntimeError):
|
|
57
|
+
class Retry(RuntimeError): # noqa: N818
|
|
57
58
|
pass
|
|
58
59
|
|
|
59
60
|
|
|
60
|
-
class BadArg(ValueError):
|
|
61
|
+
class BadArg(ValueError): # noqa: N818
|
|
61
62
|
pass
|
|
62
63
|
|
|
63
64
|
|
|
64
|
-
class Undocumented(ValueError):
|
|
65
|
+
class Undocumented(ValueError): # noqa: N818
|
|
65
66
|
pass
|
|
66
67
|
|
|
67
68
|
|
|
68
|
-
class SignatureNotSupported(ValueError):
|
|
69
|
+
class SignatureNotSupported(ValueError): # noqa: N818
|
|
69
70
|
pass
|
|
70
71
|
|
|
71
72
|
|
|
@@ -184,7 +185,7 @@ PART_TO_CLASSES = {
|
|
|
184
185
|
|
|
185
186
|
# others
|
|
186
187
|
"ctx",
|
|
187
|
-
"printer",
|
|
188
|
+
"printer", "val", "multi_val", "vec", "mat", "fixed_box",
|
|
188
189
|
"aff", "pw_aff", "union_pw_aff",
|
|
189
190
|
"multi_aff", "multi_pw_aff", "pw_multi_aff", "union_pw_multi_aff",
|
|
190
191
|
"multi_union_pw_aff",
|
|
@@ -264,9 +265,9 @@ MACRO_ENUMS = [
|
|
|
264
265
|
|
|
265
266
|
# }}}
|
|
266
267
|
|
|
267
|
-
SAFE_TYPES = list(ENUMS)
|
|
268
|
-
|
|
269
|
-
SAFE_IN_TYPES = SAFE_TYPES
|
|
268
|
+
SAFE_TYPES = [*list(ENUMS), "int", "unsigned", "uint32_t", "size_t", "double", "long",
|
|
269
|
+
"unsigned long", "isl_size"]
|
|
270
|
+
SAFE_IN_TYPES = [*SAFE_TYPES, "const char *", "char *"]
|
|
270
271
|
|
|
271
272
|
# {{{ parser helpers
|
|
272
273
|
|
|
@@ -294,7 +295,7 @@ INLINE_SEMICOLON_RE = re.compile(r"\;[ \t]*(?=\w)")
|
|
|
294
295
|
SUBCLASS_RE = re.compile(
|
|
295
296
|
r"__isl_subclass\s*"
|
|
296
297
|
r"\(\s*"
|
|
297
|
-
"[0-9a-zA-Z_]+"
|
|
298
|
+
r"[0-9a-zA-Z_]+"
|
|
298
299
|
r"\s*\)")
|
|
299
300
|
|
|
300
301
|
|
|
@@ -381,10 +382,13 @@ def parse_arg(arg):
|
|
|
381
382
|
def preprocess_with_macros(macro_header_contents, code):
|
|
382
383
|
try:
|
|
383
384
|
from pcpp.preprocessor import (
|
|
384
|
-
|
|
385
|
-
|
|
385
|
+
Action,
|
|
386
|
+
OutputDirective,
|
|
387
|
+
Preprocessor as PreprocessorBase,
|
|
388
|
+
)
|
|
389
|
+
except ImportError as err:
|
|
386
390
|
raise RuntimeError("pcpp was not found. Please install pcpp before "
|
|
387
|
-
"installing islpy. 'pip install pcpp' should do the job.")
|
|
391
|
+
"installing islpy. 'pip install pcpp' should do the job.") from err
|
|
388
392
|
|
|
389
393
|
class MacroExpandingCPreprocessor(PreprocessorBase):
|
|
390
394
|
def on_directive_handle(self, directive, toks, ifpassthru, precedingtoks):
|
|
@@ -420,7 +424,7 @@ def preprocess_with_macros(macro_header_contents, code):
|
|
|
420
424
|
|
|
421
425
|
class FunctionData:
|
|
422
426
|
|
|
423
|
-
INVALID_PY_IDENTIFIER_RENAMING_MAP = {
|
|
427
|
+
INVALID_PY_IDENTIFIER_RENAMING_MAP: ClassVar[Mapping[str, str]] = {
|
|
424
428
|
"2exp": "two_exp"
|
|
425
429
|
}
|
|
426
430
|
|
|
@@ -458,11 +462,11 @@ class FunctionData:
|
|
|
458
462
|
return h.hexdigest()
|
|
459
463
|
|
|
460
464
|
preprocessed_dir = "preproc-headers"
|
|
461
|
-
macro_headers = ["isl/multi.h", "isl/list.h"]
|
|
465
|
+
macro_headers: ClassVar[Sequence[str]] = ["isl/multi.h", "isl/list.h"]
|
|
462
466
|
|
|
463
467
|
def get_preprocessed_header(self, fname):
|
|
464
468
|
header_hash = self.get_header_hashes(
|
|
465
|
-
self.macro_headers
|
|
469
|
+
[*self.macro_headers, fname])
|
|
466
470
|
|
|
467
471
|
# cache preprocessed headers to avoid install-time
|
|
468
472
|
# dependency on pcpp
|
|
@@ -490,7 +494,7 @@ class FunctionData:
|
|
|
490
494
|
prepro_header = preprocess_with_macros(
|
|
491
495
|
macro_header_contents, self.get_header_contents(fname))
|
|
492
496
|
|
|
493
|
-
with open(prepro_fname, "
|
|
497
|
+
with open(prepro_fname, "w") as outf:
|
|
494
498
|
outf.write(prepro_header)
|
|
495
499
|
|
|
496
500
|
return prepro_header
|
|
@@ -1347,9 +1351,8 @@ def write_wrapper(outf, meth):
|
|
|
1347
1351
|
inputs=", ".join(input_args),
|
|
1348
1352
|
body="\n".join(body)))
|
|
1349
1353
|
|
|
1350
|
-
docs = (["{}({})".format(meth.name, ", ".join(arg_names)),
|
|
1351
|
-
|
|
1352
|
-
+ [f":return: {ret_descr}"])
|
|
1354
|
+
docs = (["{}({})".format(meth.name, ", ".join(arg_names)),
|
|
1355
|
+
"", *docs, f":return: {ret_descr}"])
|
|
1353
1356
|
|
|
1354
1357
|
return arg_names, "\n".join(docs)
|
|
1355
1358
|
|
|
@@ -1376,7 +1379,7 @@ def write_exposer(outf, meth, arg_names, doc_str):
|
|
|
1376
1379
|
if meth.name == "get_hash" and len(meth.args) == 1:
|
|
1377
1380
|
py_name = "__hash__"
|
|
1378
1381
|
|
|
1379
|
-
#if meth.is_static:
|
|
1382
|
+
# if meth.is_static:
|
|
1380
1383
|
# doc_str = "(static method)\n" + doc_str
|
|
1381
1384
|
|
|
1382
1385
|
if not meth.is_exported:
|
|
@@ -1421,7 +1424,7 @@ def write_wrappers(expf, wrapf, methods):
|
|
|
1421
1424
|
undoc = []
|
|
1422
1425
|
|
|
1423
1426
|
for meth in methods:
|
|
1424
|
-
#print "TRY_WRAP:", meth
|
|
1427
|
+
# print "TRY_WRAP:", meth
|
|
1425
1428
|
if meth.name.endswith("_si") or meth.name.endswith("_ui"):
|
|
1426
1429
|
val_versions = [
|
|
1427
1430
|
meth2
|
|
@@ -1517,7 +1520,7 @@ def add_upcasts(basic_class, special_class, fmap, expf):
|
|
|
1517
1520
|
|
|
1518
1521
|
|
|
1519
1522
|
def gen_wrapper(include_dirs, include_barvinok=False, isl_version=None):
|
|
1520
|
-
fdata = FunctionData(["."
|
|
1523
|
+
fdata = FunctionData([".", *include_dirs])
|
|
1521
1524
|
fdata.read_header("isl/ctx.h")
|
|
1522
1525
|
fdata.read_header("isl/id.h")
|
|
1523
1526
|
fdata.read_header("isl/space.h")
|
|
@@ -1550,8 +1553,8 @@ def gen_wrapper(include_dirs, include_barvinok=False, isl_version=None):
|
|
|
1550
1553
|
fdata.read_header("barvinok/isl.h")
|
|
1551
1554
|
|
|
1552
1555
|
for part, classes in PART_TO_CLASSES.items():
|
|
1553
|
-
expf = open(f"src/wrapper/gen-expose-{part}.inc", "
|
|
1554
|
-
wrapf = open(f"src/wrapper/gen-wrap-{part}.inc", "
|
|
1556
|
+
expf = open(f"src/wrapper/gen-expose-{part}.inc", "w")
|
|
1557
|
+
wrapf = open(f"src/wrapper/gen-wrap-{part}.inc", "w")
|
|
1555
1558
|
|
|
1556
1559
|
classes = [
|
|
1557
1560
|
cls
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
AC_INIT([isl], [0.
|
|
1
|
+
AC_INIT([isl], [0.27], [isl-development@googlegroups.com])
|
|
2
2
|
AC_CONFIG_AUX_DIR([.])
|
|
3
3
|
AC_CONFIG_MACRO_DIR([m4])
|
|
4
4
|
AM_INIT_AUTOMAKE([foreign])
|
|
5
5
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
|
6
6
|
AC_SUBST(versioninfo)
|
|
7
|
-
versioninfo=
|
|
7
|
+
versioninfo=27:0:4
|
|
8
8
|
|
|
9
9
|
if test "x$prefix" != "xNONE"; then
|
|
10
10
|
prefix_wd=`cd $prefix && pwd`
|
|
@@ -40,6 +40,8 @@ AC_CHECK_PROG(PERL, perl, perl, [])
|
|
|
40
40
|
AC_CHECK_PROG(PDFLATEX, pdflatex, pdflatex, [])
|
|
41
41
|
AC_CHECK_PROG(POD2HTML, pod2html, pod2html, [])
|
|
42
42
|
|
|
43
|
+
ISL_DETECT_DIFF_OPTIONS
|
|
44
|
+
|
|
43
45
|
AC_SUBST(OS_SRCDIR)
|
|
44
46
|
if test "$host_os" = "mingw32" -a -n "$CYGPATH"; then
|
|
45
47
|
OS_SRCDIR=`$CYGPATH -m "$srcdir"`
|
|
@@ -116,9 +118,6 @@ fi
|
|
|
116
118
|
|
|
117
119
|
AX_SUBMODULE(clang,system|no,no)
|
|
118
120
|
AM_CONDITIONAL(HAVE_CLANG, test $with_clang = system)
|
|
119
|
-
AM_CONDITIONAL(HAVE_CPP_ISL_H,
|
|
120
|
-
[(test $with_clang = system -a "x$HAVE_CXX11" = "x1") || \
|
|
121
|
-
test -f $srcdir/include/isl/cpp.h])
|
|
122
121
|
|
|
123
122
|
AX_SET_WARNING_FLAGS
|
|
124
123
|
|