brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.7 KiB · e7a5f7d Raw
54 lines · plain
1isl is a thread-safe C library for manipulating sets and relations2of integer points bounded by affine constraints.  The descriptions of3the sets and relations may involve both parameters and existentially4quantified variables.  All computations are performed in exact integer5arithmetic using GMP.6 7isl is released under the MIT license, but depends on the LGPL GMP8library.9 10Minimal compilation instructions:11 12	./configure13	make14	make install15 16If you are taking the source from the git repository, then you first17need to do18 19	git clone git://repo.or.cz/isl.git20	./autogen.sh21 22For more information, see doc/user.pod or the generated documentation.23 24New releases are announced on http://groups.google.com/group/isl-announce25 26If you use isl, you can let me know by stacking27https://www.openhub.net/p/isl on Open Hub.28 29For bug reports, feature requests and questions,30contact http://groups.google.com/group/isl-development31 32Whenever you report a bug, please mention the exact version of isl33that you are using (output of "./isl_cat --version").  If you are unable34to compile isl, then report the git version (output of "git describe")35or the version included in the name of the tarball.36 37If you use isl for your research, you are invited do cite38the following paper and/or the paper(s) describing the specific39operations you use.40 41@incollection{Verdoolaege2010isl,42   author = {Verdoolaege, Sven},43   title = {isl: An Integer Set Library for the Polyhedral Model},44   booktitle = {Mathematical Software - ICMS 2010},45   series = {Lecture Notes in Computer Science},46   editor = {Fukuda, Komei and Hoeven, Joris and Joswig, Michael and47		Takayama, Nobuki},48   publisher = {Springer},49   isbn = {978-3-642-15581-9},50   pages = {299-302},51   volume = {6327},52   year = {2010}53}54