Blame isl-0.14/README

Packit fb9d21
isl is a thread-safe C library for manipulating sets and relations
Packit fb9d21
of integer points bounded by affine constraints.  The descriptions of
Packit fb9d21
the sets and relations may involve both parameters and existentially
Packit fb9d21
quantified variables.  All computations are performed in exact integer
Packit fb9d21
arithmetic using GMP.
Packit fb9d21
Packit fb9d21
isl is released under the MIT license, but depends on the LGPL GMP
Packit fb9d21
library.
Packit fb9d21
Packit fb9d21
Minimal compilation instructions:
Packit fb9d21
Packit fb9d21
	./configure
Packit fb9d21
	make
Packit fb9d21
	make install
Packit fb9d21
Packit fb9d21
If you are taking the source from the git repository, then you first
Packit fb9d21
need to do
Packit fb9d21
Packit fb9d21
	git clone git://repo.or.cz/isl.git
Packit fb9d21
	./autogen.sh
Packit fb9d21
Packit fb9d21
For more information, see doc/user.pod or the generated documentation.
Packit fb9d21
Packit fb9d21
New releases are announced on http://freecode.com/projects/isl
Packit fb9d21
Packit fb9d21
If you use isl, you can let me know by stacking
Packit fb9d21
https://www.ohloh.net/p/isl on ohloh.
Packit fb9d21
Packit fb9d21
For bug reports, feature requests and questions,
Packit fb9d21
contact http://groups.google.com/group/isl-development
Packit fb9d21
Packit fb9d21
Whenever you report a bug, please mention the exact version of isl
Packit fb9d21
that you are using (output of "./isl_cat --version").  If you are unable
Packit fb9d21
to compile isl, then report the git version (output of "git describe")
Packit fb9d21
or the version included in the name of the tarball.
Packit fb9d21
Packit fb9d21
If you use isl for your research, you are invited do cite
Packit fb9d21
the following paper and/or the paper(s) describing the specific
Packit fb9d21
operations you use.
Packit fb9d21
Packit fb9d21
@incollection{Verdoolaege2010isl,
Packit fb9d21
   author = {Verdoolaege, Sven},
Packit fb9d21
   title = {isl: An Integer Set Library for the Polyhedral Model},
Packit fb9d21
   booktitle = {Mathematical Software - ICMS 2010},
Packit fb9d21
   series = {Lecture Notes in Computer Science},
Packit fb9d21
   editor = {Fukuda, Komei and Hoeven, Joris and Joswig, Michael and
Packit fb9d21
		Takayama, Nobuki},
Packit fb9d21
   publisher = {Springer},
Packit fb9d21
   isbn = {978-3-642-15581-9},
Packit fb9d21
   pages = {299-302},
Packit fb9d21
   volume = {6327},
Packit fb9d21
   year = {2010}
Packit fb9d21
}