README: fix up installation instructions
[barvinok.git] / README
blob9154900183f28c772007eedddd69fc357b187b72
1 barvinok is a library for counting the number of integer points
2 in parametric and non-parametric polytopes as well as projections
3 of such sets.
4 For parametric polytopes the count is represented by either
5 an explicit function or a generating function.
6 The first comes in the shape of a piece-wise step-polynomial.
7 This is a generalization of both Ehrhart quasi-polynomials
8 and vector partition functions.
9 The second is a generalization of an Ehrhart series.
11 This library shares some functionality with LattE
12 (http://www.math.ucdavis.edu/~latte/)
13 and uses PolyLib (included), PIP (included), NTL (http://shoup.net/ntl/)
14 and optionally Omega (included).
15 If you have cloned the git repository, you need to run
16         git submodule init
17         git submodule update
18         sh autogen.sh
19 to get the submodules and create the configure scripts.
21 Additionally, the following packages can optionally be used
22 - GLPK (http://www.gnu.org/software/glpk/)
23 - GiNaC (http://www.ginac.de/) (needed for the bernstein library)
25 NTL needs to have been compiled with GMP support.
26 That is, you have to specify
27     NTL_GMP_LIP=on
29 Suppose you want to put everything in /opt,
30 Then you configure/compile NTL using
32 cd src
33 ./configure NTL_GMP_LIP=on PREFIX=/opt GMP_PREFIX=/path/to/gmp
34 make
35 make install
37 Configure this library using
39 ./configure --prefix=/opt --with-libgmp=/path/to/gmp  --with-ntl=/opt
41 If you want shared libraries, then configure with the
42 --enable-shared-barvinok option.
43 Note that this doesn't work on some systems because we link in libntl, which
44 is only available as a static library.
45 Also note that if you have previously installed a shared library of an older
46 version of barvinok, and you do not install one for this version, then the
47 linker may pick up the old shared library rather than the new static library.
49 If you don't want to compile and use Omega, then configure with
50 the --without-omega option.
52 Then
54 make
55 make check
56 make install
58 If you want to put any one of these packages in the default location
59 (typically /usr/local), then the prefix argument can be omitted.
60 For more information on other arguments,
62 ./configure --help
64 The input format of barvinok_enumerate is the same as that
65 of testehrhart from the PolyLib distribution.
66 See the PolyLib manual, barvinok_enumerate.c or the
67 examples in tests/ehrhart/ .
69 Note that the fractional representation is subject to change.
71 The library supports three specialization algorithms.
72 The first performs a direct specialization using a random vector.
73 The second performs a "depth-first" incremental specialization.
74 The third performs a "breadth-first" incremental specialization.
76 The first is usually the fastest, but can fail if the random
77 vector happens to be chosen incorrectly.
78 The incremental algorithms should never fail, but can be slower,
79 in some cases by quite a bit.  The breadth-first version should
80 be faster than the depth-first version, especially on polytopes
81 of moderate dimension with a lot of "structure", but can require
82 more memory.
84 Sven Verdoolaege <skimo@kotnet.org>