llvm-project/polly/lib/External/isl
Michael Kruse e8227804ac [Polly] Update ISL to isl-0.22.1-87-gfee05a13.
The primary motivation is to fix an assertion failure in
isl_basic_map_alloc_equality:

    isl_assert(ctx, room_for_con(bmap, 1), return -1);

Although the assertion does not occur anymore, I could not identify
which of ISL's commits fixed it.

Compared to the previous ISL version, Polly requires some changes for this update

 * Since ISL commit
   20d3574 "perform parameter alignment by modifying both arguments to function"
   isl_*_gist_* and similar functions do not always align the paramter
   list anymore. This caused the parameter lists in JScop files to
   become out-of-sync. Since many regression tests use JScop files with
   a fixed parameter list and order, we explicitly call align_params to
   ensure a predictable parameter list.

 * ISL changed some return types to isl_size, a typedef of (signed) int.
   This caused some issues where the return type was unsigned int before:
   - No overload for std::max(unsigned,isl_size)
   - It cause additional 'mixed signed/unsigned comparison' warnings.
     Since they do not break compilation, and sizes larger than 2^31
     were never supported, I am going to fix it separately.

 * With the change to isl_size, commit
   57d547 "isl_*_list_size: return isl_size"
   also changed the return value in case of an error from 0 to -1. This
   caused undefined looping over isl_iterator since the 'end iterator'
   got index -1, never reached from the 'begin iterator' with index 0.

 * Some internal changes in ISL caused the number of operations to
   increase when determining access ranges to determine aliasing
   overlaps. In one test, this caused exceeding the default limit of
   800000. The operations-limit was disabled for this test.
2020-02-10 19:03:08 -06:00
..
cpp [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
doc [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
imath Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
imath_wrap Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
include/isl [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
interface [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
m4 [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
python [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
test_inputs [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
AUTHORS [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
ChangeLog [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
GIT_HEAD_ID [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
LICENSE
Makefile.am [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
Makefile.in [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
README [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
aclocal.m4 [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
all.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
basis_reduction_tab.c
basis_reduction_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
bound.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
bound_test.sh.in
bset_from_bmap.c
bset_to_bmap.c
cat.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
check_reparse_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
check_reparse_test_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
check_type_range_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
closure.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
codegen.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
codegen_test.sh.in
compile
config.guess Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
config.sub Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
configure [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
configure.ac [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
dep.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
depcomp Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
extract_key.c Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
flow.c Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
flow_cmp.c Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
flow_test.sh.in Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
has_single_reference_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
install-sh
isl_aff.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_aff_map.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_aff_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_affine_hull.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_align_params_bin_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_align_params_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_arg.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ast.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ast_build.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ast_build_expr.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ast_build_expr.h
isl_ast_build_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ast_codegen.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ast_graft.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ast_graft_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ast_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_basis_reduction.h
isl_bernstein.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_bernstein.h Updated isl to isl-0.18-254-g6bc184d 2017-02-17 05:11:16 +00:00
isl_bind_domain_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_blk.c
isl_blk.h
isl_bound.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_bound.h
isl_box.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_check_named_params_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_coalesce.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_config.h.in [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_config_post.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_constraint.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_constraint_private.h Update isl to isl-0.19-152-g437e6ab0 2018-05-23 20:18:50 +00:00
isl_convex_hull.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ctx.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ctx_private.h Update isl to isl-0.18-1047-g4a20ef8 2018-02-20 07:26:42 +00:00
isl_deprecated.c Update isl to isl-0.18-1047-g4a20ef8 2018-02-20 07:26:42 +00:00
isl_dim_map.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_dim_map.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_domain_factor_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_equalities.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_equalities.h Update to isl-0.18-592-gb50ad59 2017-04-28 06:11:17 +00:00
isl_factorization.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_factorization.h Updated isl to isl-0.18-254-g6bc184d 2017-02-17 05:11:16 +00:00
isl_farkas.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ffs.c
isl_flow.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_fold.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_gmp.c
isl_hash.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_id.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_id_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_id_to_ast_expr.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_id_to_id.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_id_to_pw_aff.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ilp.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_ilp_private.h
isl_imath.c Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_imath.h Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_input.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_int.h
isl_int_gmp.h Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_int_imath.h Update isl to isl-0.18-1047-g4a20ef8 2018-02-20 07:26:42 +00:00
isl_int_sioimath.c Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_int_sioimath.h Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_list_macro.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_list_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_list_templ.h
isl_local.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_local.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_local_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_local_space.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_local_space_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_lp.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_lp_private.h
isl_map.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_map_bound_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_map_lexopt_templ.c Update to isl-0.18-356-g0b05d01 2017-03-10 09:17:55 +00:00
isl_map_list.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_map_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_map_simplify.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_map_subtract.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_map_to_basic_set.c
isl_mat.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_mat_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_maybe_ast_graft_list.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_maybe_map.h Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_morph.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_morph.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_add_constant_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_align_set.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_align_templ.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_align_union_set.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_apply_set.c
isl_multi_apply_templ.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_apply_union_set.c
isl_multi_arith_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_bind_domain_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_bind_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_cmp.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_coalesce.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_dim_id_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_dims.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_domain_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_explicit_domain.c Update isl to isl-0.19-152-g437e6ab0 2018-05-23 20:18:50 +00:00
isl_multi_floor.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_from_base_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_gist.c
isl_multi_hash.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_identity_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_intersect.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_locals_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_macro.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_move_dims_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_nan_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_no_domain_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_no_explicit_domain.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_param_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_product_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_pw_aff_explicit_domain.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_read_no_explicit_domain_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_splice_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_templ.h Update isl to isl-0.19-224-gce84a511 2018-07-06 09:00:26 +00:00
isl_multi_tuple_id_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_multi_union_pw_aff_explicit_domain.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_multi_zero_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_obj.c Update isl to isl-0.18-1047-g4a20ef8 2018-02-20 07:26:42 +00:00
isl_options.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_options_private.h Update to isl-0.20-65-gb822a210 2018-08-09 05:07:05 +00:00
isl_output.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_output_private.h
isl_point.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_point_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_polynomial.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_polynomial_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_power_templ.c
isl_printer.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_printer_private.h
isl_project_out_all_params_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_add_constant_multi_val_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_add_constant_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_add_constant_val_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_bind_domain_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_eval.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_pw_hash.c
isl_pw_insert_dims_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_lift_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_macro.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_morph_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_move_dims_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_neg_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_opt_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_pullback_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_sub_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_pw_templ.h Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_pw_union_opt.c
isl_range.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_range.h Updated isl to isl-0.18-254-g6bc184d 2017-02-17 05:11:16 +00:00
isl_reordering.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_reordering.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_sample.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_sample.h Update to isl-0.18-592-gb50ad59 2017-04-28 06:11:17 +00:00
isl_scan.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_scan.h Updated isl to isl-0.18-254-g6bc184d 2017-02-17 05:11:16 +00:00
isl_schedule.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
isl_schedule_band.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_schedule_band.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_schedule_constraints.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_schedule_constraints.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_schedule_node.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_schedule_node_private.h
isl_schedule_private.h Update isl to isl-0.18-1047-g4a20ef8 2018-02-20 07:26:42 +00:00
isl_schedule_read.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_schedule_tree.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_schedule_tree.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_scheduler.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_seq.c Update to isl-0.18-417-gb9e7334 2017-04-06 03:41:47 +00:00
isl_seq.h Update to isl-0.18-417-gb9e7334 2017-04-06 03:41:47 +00:00
isl_set_list.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_set_to_ast_graft_list.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_set_to_ast_graft_list.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_sort.c
isl_sort.h
isl_space.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_space_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_srcdir.c.in [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_stream.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_stream_private.h
isl_stride.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_tab.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_tab.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_tab_lexopt_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_tab_pip.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_tarjan.c
isl_tarjan.h
isl_test.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_test_cpp-checked-conversion.cc Update to isl-0.20-35-ge0a98b62 2018-08-01 09:20:03 +00:00
isl_test_cpp-checked.cc [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_test_cpp-generic.cc [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_test_cpp.cc [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_test_imath.c
isl_test_int.c Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_test_list_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_test_plain_equal_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_test_python.py [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_transitive_closure.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_type_check_equal_space_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_type_has_equal_space_bin_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_type_has_equal_space_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_union_eval.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_union_macro.h Update isl to isl-0.19-185-g8e9f55ce 2018-06-11 14:25:42 +00:00
isl_union_map.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_union_map_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_union_multi.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_union_neg.c
isl_union_set_private.h Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_union_single.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_union_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_val.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_val_gmp.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_val_imath.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_val_private.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_val_sioimath.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_vec.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_vec_private.h Bump isl to isl-0.18-768-g033b61ae 2017-07-04 15:54:11 +00:00
isl_version.c
isl_vertices.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
isl_vertices_private.h Updated isl to isl-0.18-254-g6bc184d 2017-02-17 05:11:16 +00:00
isl_yaml.h
libisl-gdb.py Update isl to isl-0.18-1047-g4a20ef8 2018-02-20 07:26:42 +00:00
ltmain.sh Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
missing
mp_get_memory_functions.c
opt_type.h [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
pip.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
pip_test.sh.in
polyhedron_detect_equalities.c
polyhedron_minimize.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
polyhedron_sample.c
polytope_scan.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
print.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
print_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
print_templ_yaml.c
print_yaml_field_templ.c [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
py-compile [Polly] Update ISL to isl-0.22.1-87-gfee05a13. 2020-02-10 19:03:08 -06:00
read_in_string_templ.c
schedule.c Update isl to isl-0.18-1047-g4a20ef8 2018-02-20 07:26:42 +00:00
schedule_cmp.c Update to isl-0.18-812-g565da6e 2017-08-06 15:51:16 +00:00
schedule_test.sh.in Update to isl-0.20-35-ge0a98b62 2018-08-01 09:20:03 +00:00
set_from_map.c
set_list_from_map_list_inl.c Update isl to isl-0.19-173-g77fe2538 2018-05-31 03:59:05 +00:00
set_to_map.c
test-driver
uset_from_umap.c Update isl to isl-0.19-107-gc4fe33d8 2018-04-21 08:34:22 +00:00
uset_to_umap.c Update isl to isl-0.18-1047-g4a20ef8 2018-02-20 07:26:42 +00:00

README

isl is a thread-safe C library for manipulating sets and relations
of integer points bounded by affine constraints.  The descriptions of
the sets and relations may involve both parameters and existentially
quantified variables.  All computations are performed in exact integer
arithmetic using GMP.

isl is released under the MIT license, but depends on the LGPL GMP
library.

Minimal compilation instructions:

	./configure
	make
	make install

If you are taking the source from the git repository, then you first
need to do

	git clone git://repo.or.cz/isl.git
	./autogen.sh

For more information, see doc/user.pod or the generated documentation.

New releases are announced on http://groups.google.com/group/isl-announce

If you use isl, you can let me know by stacking
https://www.openhub.net/p/isl on Open Hub.

For bug reports, feature requests and questions,
contact http://groups.google.com/group/isl-development

Whenever you report a bug, please mention the exact version of isl
that you are using (output of "./isl_cat --version").  If you are unable
to compile isl, then report the git version (output of "git describe")
or the version included in the name of the tarball.

If you use isl for your research, you are invited do cite
the following paper and/or the paper(s) describing the specific
operations you use.

@incollection{Verdoolaege2010isl,
   author = {Verdoolaege, Sven},
   title = {isl: An Integer Set Library for the Polyhedral Model},
   booktitle = {Mathematical Software - ICMS 2010},
   series = {Lecture Notes in Computer Science},
   editor = {Fukuda, Komei and Hoeven, Joris and Joswig, Michael and
		Takayama, Nobuki},
   publisher = {Springer},
   isbn = {978-3-642-15581-9},
   pages = {299-302},
   volume = {6327},
   year = {2010}
}