1#  Copyright (c) 1997-2021
2#  Ewgenij Gawrilow, Michael Joswig, and the polymake team
3#  Technische Universität Berlin, Germany
4#  https://polymake.org
5#
6#  This program is free software; you can redistribute it and/or modify it
7#  under the terms of the GNU General Public License as published by the
8#  Free Software Foundation; either version 2, or (at your option) any
9#  later version: http://www.gnu.org/licenses/gpl.txt.
10#
11#  This program is distributed in the hope that it will be useful,
12#  but WITHOUT ANY WARRANTY; without even the implied warranty of
13#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14#  GNU General Public License for more details.
15#-------------------------------------------------------------------------------
16
17# @category Convex hull computation
18# Use the //reverse search// method, as implemented in [[wiki:external_software#lrslib]].
19
20INCLUDE
21  lrs_ch.rules
22  lrs_lp.rules
23
24# enable debugging output from lrs
25# does not work with the bundled lrs version,
26# requires an lrs installation that was built without -DLRS_QUIET
27custom $verbose_lrs=0;
28
29# Local Variables:
30# mode: perl
31# cperl-indent-level: 3
32# indent-tabs-mode:nil
33# End:
34