descriptionlattice point enumeration library
homepage URLhttp://www.freshmeat.net/projects/barvinok
ownerskimo@kotnet.org
last changeSat, 3 Jun 2023 09:27:53 +0000 (3 11:27 +0200)
content tags
add:
README
barvinok is a library for counting the number of integer points
in parametric and non-parametric polytopes as well as projections
of such sets.
For parametric polytopes the count is represented by either
an explicit function or a generating function.
The first comes in the shape of a piece-wise step-polynomial.
This is a generalization of both Ehrhart quasi-polynomials
and vector partition functions.
The second is a generalization of an Ehrhart series.

This library shares some functionality with LattE
(http://www.math.ucdavis.edu/~latte/)
and uses PolyLib (included), NTL (http://shoup.net/ntl/).
If you have cloned the git repository, you need to run
	./get_submodules.sh
	sh autogen.sh
to get the submodules and create the configure scripts.

Additionally, the following packages can optionally be used
- GLPK (http://www.gnu.org/software/glpk/)

NTL needs to have been compiled with GMP support.
That is, you have to specify
    NTL_GMP_LIP=on
NTL also needs to have been compiled in ISO mode.
For versions older than 5.4, this means you need an additional
    NTL_STD_CXX=on

Suppose you want to install everything in /opt,
Then you configure/compile NTL using

cd src
./configure NTL_GMP_LIP=on PREFIX=/opt GMP_PREFIX=/path/to/gmp
make
make install

Configure this library using

./configure --prefix=/opt --with-gmp-prefix=/path/to/gmp --with-ntl-prefix=/opt

If you want shared libraries, then configure with the
--enable-shared-barvinok option.
Note that this requires NTL to have been built as a shared library as well
(using "SHARED=on" on its configure line).
Also note that if you have previously installed a shared library of an older
version of barvinok, and you do not install one for this version, then the
linker may pick up the old shared library rather than the new static library.

By default, barvinok will use the included copy of isl.
If you want it to use a pre-installed version of isl instead, then
configure with the --with-isl=system option.  Use the --with-isl-prefix
option to specify the installation prefix of isl, if needed.

If you want to compile and use the included pet library, then
you need the following packages:
- libyaml (http://pyyaml.org/wiki/LibYAML)
- LLVM/clang (http://clang.llvm.org/get_started.html)
Additionally, you need to configure with the --with-pet=bundled option.
See pet/README for more information.

Then

make
make check
make install

If you want to put any one of these packages in the default location
(typically /usr/local), then the prefix argument can be omitted.
For more information on other arguments,

./configure --help

The input format of barvinok_enumerate is the same as that
of testehrhart from the PolyLib distribution.
See the PolyLib manual, barvinok_enumerate.c or the
examples in tests/ehrhart/ .

Note that the fractional representation is subject to change.

The library supports three specialization algorithms.
The first performs a direct specialization using a random vector.
The second performs a "depth-first" incremental specialization.
The third performs a "breadth-first" incremental specialization.

The first is usually the fastest, but can fail if the random
vector happens to be chosen incorrectly.
The incremental algorithms should never fail, but can be slower,
in some cases by quite a bit.  The breadth-first version should
be faster than the depth-first version, especially on polytopes
of moderate dimension with a lot of "structure", but can require
more memory.

Building the Python interface requires barvinok to be configured with
LLVM/clang libraries (--with-clang=system; see pet/README for detailed
requirements) and an isl build directory. The isl build directory is
defined implicitly when using the included copy of isl
(--with-isl=bundled) and only needs to be specified explicitly when
using an external copy of isl (--with-isl-builddir=DIR, where DIR is
the location of the isl build directory). Using the Python interface
further requires shared barvinok libraries (--enable-shared-barvinok).

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 barvinok
that you are using (output of "./iscc --version").  If you are unable
to compile barvinok, then report the git version (output of "git describe")
or the version included in the name of the tarball.
shortlog
2023-06-03 Sven Verdoolaegeuse test scripts for performing testsmaster
2023-05-01 Sven Verdoolaegebarvinok_enumerate_e: drop Omega simplification
2023-05-01 Sven Verdoolaegebarvinok_enumerate_e: drop option to use Parker's DFA...
2023-05-01 Sven Verdoolaegeremove selection of default specialization
2023-05-01 Sven Verdoolaegedoc/barvinok.bib: drop Parker2004 entry
2023-05-01 Sven Verdoolaegedoc: update outputs of examples
2023-04-10 Sven Verdoolaegedrop declaration of pip_*_Polyhedron_Reduced_Basis
2023-04-10 Sven Verdoolaegedrop NTL_5_3_2.patch
2023-04-10 Sven Verdoolaegescale.c: Param_Polyhedron_Domain: only set Facets in...
2023-04-02 Sven Verdoolaegebarvinok 0.41.7barvinok-0.41.7
2023-04-02 Sven Verdoolaegeupdate pet to version 0.11.7
2023-04-02 Sven Verdoolaegeupdate isl to version 0.26
2023-03-20 Sven Verdoolaegeadd some iscc tests for fixed powers
2023-03-20 Sven Verdoolaegeiscc: fix computation of (negative) fixed powers of...
2023-03-07 Sven Verdoolaegeupdate isl for change in coalescing
2023-03-04 Sven Verdoolaegeupdate pet for support for recent versions of clang
...
tags
12 months ago barvinok-0.41.7 barvinok 0.41.7
21 months ago barvinok-0.41.6 barvinok 0.41.6
2 years ago barvinok-0.41.5 barvinok 0.41.5
3 years ago barvinok-0.41.4 barvinok 0.41.4
4 years ago barvinok-0.41.3 barvinok 0.41.3
5 years ago barvinok-0.41.2 barvinok 0.41.2
5 years ago barvinok-0.41.1 barvinok 0.41.1
6 years ago barvinok-0.41 barvinok 0.41
7 years ago barvinok-0.40 barvinok 0.40
8 years ago barvinok-0.39 barvinok 0.39
8 years ago barvinok-0.38 barvinok 0.38
10 years ago barvinok-0.37 barvinok 0.37
11 years ago barvinok-0.36 barvinok 0.36
12 years ago barvinok-0.35 barvinok 0.35
12 years ago barvinok-0.34 barvinok 0.34
13 years ago barvinok-0.33 barvinok 0.33
...
heads
10 months ago master
forks
Cached version (3726s old)
barvinok/uuh.git patches by uuh to consider upstream lisp@uuhaus.de 7 years ago