NTL_QQ.cc: add stdlib include for abort hidden in NTL_vector_impl
[barvinok.git] / Makefile.am
blob25d3b83ad1445bd88bbcb86e872a710869e6ed59
1 if HAVE_GINAC
2     MAYBE_BERNSTEIN = bernstein
3 endif
4 if BUNDLED_POLYLIB
5     MAYBE_POLYLIB = polylib
6 endif
7 if BUNDLED_PIPLIB
8     MAYBE_PIPLIB = piplib
9 endif
10 if USE_ZSOLVE
11     MAYBE_ZSOLVE = zsolve
12 endif
13 if USE_PARKER
14     MAYBE_PARKER = parker
15 endif
16 SUBDIRS = $(MAYBE_PIPLIB) $(MAYBE_POLYLIB) $(MAYBE_BERNSTEIN) \
17                 lib $(MAYBE_ZSOLVE) $(MAYBE_PARKER) . omega doc
19 FORCE:
20 lib/libgnu.la: FORCE
21         cd lib; $(MAKE) $(AM_MAKEFLAGS) libgnu.la
22 bernstein/libbernstein.la: FORCE
23         cd bernstein; $(MAKE) $(AM_MAKEFLAGS) libbernstein.la
24 polylib/libpolylibgmp.la: FORCE
25         cd polylib; $(MAKE) $(AM_MAKEFLAGS) libpolylibgmp.la
26 piplib/libpiplibMP.la: FORCE
27         cd piplib; $(MAKE) $(AM_MAKEFLAGS) libpiplibMP.la
28 zsolve/libzsolve.la: FORCE
29         cd zsolve; $(MAKE) $(AM_MAKEFLAGS) libzsolve.la
30 parker/libparker.la: FORCE
31         cd parker; $(MAKE) $(AM_MAKEFLAGS) libparker.la
33 AM_CPPFLAGS = -I$(srcdir)/bernstein/include -I$(srcdir)/lib -Ilib \
34               @POLYLIB_CPPFLAGS@ @PIPLIB_CPPFLAGS@ @ginac_CFLAGS@ \
35               @NTL_CPPFLAGS@
36 AM_LDFLAGS = -Llib @POLYLIB_LDFLAGS@ @PIPLIB_LDFLAGS@ @NTL_LDFLAGS@
38 lib_LTLIBRARIES = libbarvinok-core.la libbarvinok.la
39 bin_PROGRAMS = barvinok_count barvinok_enumerate barvinok_enumerate_e \
40                   barvinok_ehrhart polytope_scan
41 noinst_PROGRAMS = test testlib randomtest \
42                   remove_redundant_equalities \
43                   barvinok_union polytope_volume test_approx \
44                   barvinok_summate verify_lexsmaller piptest \
45                   polyhedron_sample 4coins lexmin @bv_barvinok_bound@ \
46                   @bv_cone_hilbert_basis@ cone_integer_hull \
47                   polytope_lattice_width polytope_minimize \
48                   polyhedron_integer_hull
49 EXTRA_PROGRAMS = barvinok_bound test_bound cone_hilbert_basis
50 pkginclude_HEADERS = \
51     barvinok/NTL_QQ.h \
52     barvinok/barvinok.h \
53     barvinok/util.h \
54     barvinok/evalue.h \
55     barvinok/genfun.h \
56     barvinok/options.h \
57     barvinok/polylib.h \
58     barvinok/sample.h \
59     barvinok/basis_reduction.h \
60     barvinok/bernstein.h
61 nodist_pkginclude_HEADERS = \
62     barvinok/NTL.h \
63     barvinok/set.h
64 LINK = $(CXXLINK)
66 if HAVE_CDDLIB
67     BR_CDD = basis_reduction_cdd.cc initcdd.cc
68     POLYSIGN_CDD = polysign_cddf.cc polysign_cdd.cc
69 endif
70 if HAVE_GLPK
71     BR_GLPK = basis_reduction_glpk.c
72     POLYSIGN_GLPK = polysign_glpk.c
73 endif
74 if HAVE_TOPCOM
75     TOPCOM = topcom.c topcom.h
76 endif
77 if USE_ZSOLVE
78     HILBERT_C = hilbert.c
79 endif
80 libbarvinok_core_la_SOURCES = \
81     barvinok/evalue.h \
82     barvinok/genfun.h \
83     barvinok/util.h \
84     barvinok/barvinok.h \
85     NTL_QQ.cc \
86     basis_reduction.c \
87     basis_reduction_pip.c \
88     basis_reduction_pip_dual.c \
89     evalue.c \
90     genfun.cc \
91     util.c \
92     version.c \
93     bernoulli.c \
94     bernoulli.h \
95     bfcounter.cc \
96     bfcounter.h \
97     binomial.c \
98     binomial.h \
99     conversion.cc \
100     conversion.h \
101     counter.cc \
102     counter.h \
103     decomposer.cc \
104     decomposer.h \
105     dpoly.cc \
106     dpoly.h \
107     euler.cc \
108     euler.h \
109     genfun_constructor.cc \
110     genfun_constructor.h \
111     $(HILBERT_C) \
112     hilbert.h \
113     hull.c \
114     hull.h \
115     ilp.c \
116     ilp.h \
117     lattice_point.cc \
118     lattice_point.h \
119     lattice_width.c \
120     lattice_width.h \
121     laurent.cc \
122     laurent.h \
123     normalization.c \
124     normalization.h \
125     options.c \
126     param_util.c \
127     param_util.h \
128     piputil.h \
129     piputil.c \
130     $(POLYSIGN_CDD) \
131     $(POLYSIGN_GLPK) \
132     polysign.c \
133     polysign_pip.c \
134     polysign_polylib.c \
135     polysign.h \
136     power.h \
137     reduce_domain.c \
138     reduce_domain.h \
139     reducer.cc \
140     reducer.h \
141     remove_equalities.h \
142     remove_equalities.c \
143     sample.c \
144     scale.c \
145     scale.h \
146     scarf.cc \
147     section_array.h \
148     series.cc \
149     $(TOPCOM) \
150     summate.c \
151     summate.h \
152     volume.c \
153     volume.h \
154     mat_util.cc \
155     mat_util.h \
156     matrix_read.cc \
157     matrix_read.h \
158     barvinok.cc \
159     barvinok_e.cc \
160     $(BR_CDD) \
161     $(BR_GLPK)
162 EXTRA_libbarvinok_core_la_SOURCES = \
163     basis_reduction_cdd.cc \
164     basis_reduction_glpk.c \
165     hilbert.c \
166     polysign_cddf.cc \
167     polysign_cdd.cc \
168     polysign.c \
169     initcdd.cc \
170     initcdd.h \
171     topcom.c \
172     topcom.h
173 if BUNDLED_POLYLIB
174     POLYLIB_LA = $(top_builddir)/polylib/libpolylibgmp.la
175 endif
176 if BUNDLED_PIPLIB
177     PIPLIB_LA = $(top_builddir)/piplib/libpiplibMP.la
178 endif
179 if USE_ZSOLVE
180     ZSOLVE_LA = zsolve/libzsolve.la
181 endif
182 libbarvinok_core_la_LIBADD = @LTLIBOBJS@ $(POLYLIB_LA) @POLYLIB_LIBS@ \
183                              $(PIPLIB_LA) @PIPLIB_LIBS@ \
184                              $(ZSOLVE_LA) lib/libgnu.la
185 libbarvinok_core_la_LDFLAGS = @BV_LDFLAGS@ -version-info @versioninfo@ \
186                                 $(AM_LDFLAGS)
187 if HAVE_GINAC
188     BERNSTEIN_CC = bernstein.cc ex_convert.cc range.cc
189 else
190     BERNSTEIN_CC = dummy.c
191 endif
192 libbarvinok_la_SOURCES = \
193     $(BERNSTEIN_CC)
194 EXTRA_libbarvinok_la_SOURCES = \
195     ex_convert.cc \
196     ex_convert.h \
197     range.cc \
198     range.h \
199     bernstein.cc \
200     dummy.c
201 if HAVE_GINAC
202     BERNSTEIN_LA = $(top_builddir)/bernstein/libbernstein.la
203 endif
204 libbarvinok_la_LIBADD = libbarvinok-core.la $(BERNSTEIN_LA)
205 libbarvinok_la_LDFLAGS = @BV_LDFLAGS@ -version-info @versioninfo@ \
206                                 $(AM_LDFLAGS)
207 LDADD = libbarvinok-core.la @POLYLIB_LIBS@ @PIPLIB_LIBS@
209 test_SOURCES = \
210         evalue_read.c \
211         evalue_read.h \
212         test.c
213 testlib_SOURCES = \
214         evalue_read.c \
215         evalue_read.h \
216         testlib.cc
217 barvinok_count_SOURCES = barvinok_count.c
218 barvinok_ehrhart_SOURCES = \
219         barvinok_ehrhart.cc \
220         evalue_convert.cc \
221         evalue_convert.h \
222         $(FDSTREAM)
223 barvinok_union_SOURCES = barvinok_union.cc
224 if HAVE_OMEGA
225 BEEO_SOURCES = omega/Exit.cc omega/convert.cc omega/count.cc
226 else
227 BEEO_SOURCES = 
228 endif
229 if USE_FDSTREAM
230 FDSTREAM = fdstream.cc fdstream.h
231 endif
232 barvinok_enumerate_SOURCES = \
233         barvinok_enumerate.cc \
234         evalue_convert.cc \
235         evalue_convert.h \
236         $(FDSTREAM) \
237         skewed_genfun.cc \
238         skewed_genfun.h \
239         verify.h \
240         verify.c \
241         verif_ehrhart.h \
242         verif_ehrhart.c \
243         verify_series.h \
244         verify_series.cc
245 EXTRA_barvinok_enumerate_SOURCES = fdstream.cc fdstream.h
246 barvinok_enumerate_e_SOURCES = \
247         barvinok_enumerate_e.cc \
248         evalue_convert.cc \
249         evalue_convert.h \
250         $(FDSTREAM) \
251         skewed_genfun.cc \
252         skewed_genfun.h \
253         verify.h \
254         verify.c \
255         verif_ehrhart.h \
256         verif_ehrhart.c \
257         verify_series.h \
258         verify_series.cc \
259         $(BEEO_SOURCES)
260 EXTRA_barvinok_enumerate_e_SOURCES = fdstream.cc fdstream.h
261 if USE_PARKER
262     MONA_LIBS = -ldfa -lbdd -lmem
263     PARKER_LA = parker/libparker.la
264     PARKERLDFLAGS = -L$(MONAPATH)/DFA -L$(MONAPATH)/BDD -L$(MONAPATH)/Mem
265     PARKERCPPFLAGS = -I$(MONAPATH)/Mem -I$(MONAPATH)/DFA -I$(MONAPATH)/BDD
266 endif
267 barvinok_enumerate_e_CPPFLAGS = \
268         $(PARKERCPPFLAGS) @OMEGA_CPPFLAGS@ $(AM_CPPFLAGS)
269 barvinok_enumerate_e_LDFLAGS = $(PARKERLDFLAGS) @OMEGA_LDFLAGS@ @LDFLAGS@
270 barvinok_enumerate_e_LDADD = \
271         $(PARKER_LA) $(MONA_LIBS) @OMEGA_LIBS@ libbarvinok-core.la \
272         @POLYLIB_LIBS@ @PIPLIB_LIBS@
273 barvinok_bound_SOURCES = \
274         evalue_convert.cc \
275         evalue_convert.h \
276         evalue_read.c \
277         evalue_read.h \
278         $(FDSTREAM) \
279         bound.cc \
280         verify.h \
281         verify.c
282 EXTRA_barvinok_bound_SOURCES = fdstream.cc fdstream.h
283 barvinok_bound_LDADD = \
284         libbarvinok-core.la libbarvinok.la @POLYLIB_LIBS@ @PIPLIB_LIBS@
285 barvinok_summate_SOURCES = \
286         barvinok_summate.cc \
287         evalue_convert.cc \
288         evalue_convert.h \
289         evalue_read.c \
290         evalue_read.h \
291         $(FDSTREAM) \
292         verify.h \
293         verify.c
294 EXTRA_barvinok_summate_SOURCES = fdstream.cc fdstream.h
295 4coins_SOURCES = 4coins.cc
296 lexmin_SOURCES = \
297         lexmin.h \
298         lexmin.cc \
299         combine.c \
300         combine.h \
301         edomain.cc \
302         edomain.h \
303         evalue_util.cc \
304         evalue_util.h \
305         verify.h \
306         verify.c
307 test_approx_SOURCES = \
308         test_approx.c \
309         verify.h \
310         verify.c
311 test_bound_SOURCES = \
312         test_bound.cc \
313         evalue_convert.cc \
314         evalue_convert.h \
315         evalue_read.c \
316         evalue_read.h \
317         $(FDSTREAM) \
318         verify.h \
319         verify.c
320 EXTRA_test_bound_SOURCES = fdstream.cc fdstream.h
321 test_bound_LDADD = \
322         libbarvinok-core.la libbarvinok.la @POLYLIB_LIBS@ @PIPLIB_LIBS@
324 TESTFILES = $(shell find $(top_srcdir)/tests -type f ! -path '*CVS*')
326 EXTRA_DIST = \
327     ChangeLog \
328     $(TESTFILES) \
329     latte2polylib.pl \
330     NTL_5_3_2.patch \
331     basis_reduction_templ.c \
332     cdd94e-test \
333     polysign_cdd_template.cc \
334     barvinok/NTL.h.broken \
335     barvinok/NTL.h.normal \
336     barvinok/set.h.broken \
337     barvinok/set.h.normal \
338     doc/Internal.tex \
339     doc/applications.tex \
340     doc/barvinok.tex \
341     doc/omega.tex \
342     doc/polymake.tex \
343     doc/reports.tex \
344     doc/barvinok.bib \
345     doc/barvinok.gdf \
346     doc/chicago.bst \
347     doc/chicago.sty \
348     doc/mydefs.sty \
349     polymake/Makefile.in \
350     polymake/README \
351     polymake/autogen.sh \
352     polymake/configure.in \
353     polymake/convert.cc \
354     polymake/convert.h \
355     polymake/h_star_vector.cc \
356     polymake/lattice_points.cc
358 ACLOCAL_AMFLAGS = -I m4
360 install-data-local:
361         @test -z "$(pkgconfig_libdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfig_libdir)"
362         $(INSTALL_DATA) $(pkgconfig_libfile) "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
364 uninstall-local:
365         rm -f "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
367 dist-hook:
368         (cd $(distdir)/polymake; \
369             ./autogen.sh; rm -rf autogen.sh autom4te.cache)
370         (cd doc; make barvinok.pdf)
371         cp doc/barvinok.pdf $(distdir)/doc/
372         if test -f $(top_srcdir)/.git/HEAD; then \
373             echo @GIT_HEAD_VERSION@ > $(distdir)/GIT_HEAD_ID; \
374         else \
375             echo $(GIT_HEAD_ID) > $(distdir)/GIT_HEAD_ID; \
376         fi
378 dist-git: dist
379         mv $(distdir).tar.gz @GIT_HEAD_VERSION@.tar.gz
381 BEE_TESTDIRS = ehrhart_e ehrhart_e/scarf ehrhart_e/piplib
383 check: check-testlib check-enumerate check-enumerate_e check-test \
384         check-lexmin check-approx check-evalue check-euler check-lw
385 check-testlib: testlib$(EXEEXT)
386         ./testlib$(EXEEXT)
387 check-approx: test_approx$(EXEEXT)
388         @for i in $(top_srcdir)/tests/ehrhart/*; do \
389             if test -f $$i; then \
390                 echo $$i | ./test_approx$(EXEEXT) -q -r 10 || exit; \
391             fi \
392         done
393 check-evalue: @bv_barvinok_bound@ barvinok_summate$(EXEEXT)
394         @for i in $(top_srcdir)/tests/evalue/*; do \
395             if test -f $$i; then \
396                 echo $$i; \
397                 if test -n "@bv_barvinok_bound@"; then \
398                     ./barvinok_bound$(EXEEXT) -T -r30 < $$i || exit; \
399                     echo $$i | ./test_bound$(EXEEXT) -q -r30 || exit; \
400                 fi; \
401                 ./barvinok_summate$(EXEEXT) -T -r30 < $$i || exit; \
402             fi \
403         done
404 check-euler: barvinok_summate$(EXEEXT)
405         @for i in $(top_srcdir)/tests/euler/*; do \
406             if test -f $$i; then \
407                 for method in 'euler' 'laurent'; do \
408                     opt="--summation=$$method"; \
409                     echo $$i $$opt; \
410                     ./barvinok_summate$(EXEEXT) -T $$opt < $$i || exit; \
411                 done \
412             fi \
413         done
414 if HAVE_TOPCOM
415     TOPCOM_CD = '--chamber-decomposition=topcom'
416 endif
417 check-enumerate: barvinok_enumerate$(EXEEXT)
418         @for i in $(top_srcdir)/tests/ehrhart/*; do \
419             if test -f $$i; then \
420                 echo $$i; \
421                 for options in '' '--series' '--series --primal' $(TOPCOM_CD); do \
422                     for spec in 'random' 'bf' 'df'; do \
423                         opt="--specialization=$$spec $$options"; \
424                         echo "        $$opt"; \
425                         ./barvinok_enumerate$(EXEEXT) --verify $$opt < $$i || exit; \
426                     done \
427                 done; \
428                 opt="--summation=bernoulli"; \
429                 echo "        $$opt"; \
430                 ./barvinok_enumerate$(EXEEXT) --verify $$opt < $$i || exit; \
431             fi \
432         done
433 check-enumerate_e: barvinok_enumerate_e$(EXEEXT)
434         @for dir in $(BEE_TESTDIRS); do \
435             for i in $(top_srcdir)/tests/$$dir/*; do \
436                 if test -f $$i; then \
437                     for options in '' '--pip' '--pip --omega'; do \
438                         for spec in 'random' 'bf' 'df'; do \
439                             opt="--specialization=$$spec $$options"; \
440                             echo $$i $$opt; \
441                             ./barvinok_enumerate_e$(EXEEXT) --verify $$opt < $$i || exit; \
442                         done \
443                     done \
444                 fi \
445             done \
446         done
447         @for i in $(top_srcdir)/tests/ehrhart_e/scarf/*; do \
448             if test -f $$i; then \
449                 for spec in 'random' 'bf' 'df'; do \
450                     opt="--specialization=$$spec --scarf"; \
451                     echo $$i $$opt; \
452                     ./barvinok_enumerate_e$(EXEEXT) --verify $$opt < $$i || exit; \
453                 done; \
454                 echo $$i --series; \
455                 ./barvinok_enumerate_e$(EXEEXT) --verify --series < $$i || exit; \
456             fi \
457         done
458 check-test: test$(EXEEXT)
459         @for i in $(top_srcdir)/tests/*; do \
460             if test -f $$i; then \
461                 for options in '--index=10' '--primal --index=10'; do \
462                     for spec in 'random' 'bf' 'df' 'todd'; do \
463                         opt="--specialization=$$spec $$options"; \
464                         echo -n $$i $$opt; \
465                         ./test$(EXEEXT) $$opt < $$i || echo -n " NOT"; \
466                         echo " ok"; \
467                     done \
468                 done \
469             fi \
470         done
471 check-lw: test$(EXEEXT)
472         @for i in $(top_srcdir)/tests/lattice_width/*; do \
473             if test -f $$i; then \
474                 echo -n $$i; \
475                 ./test$(EXEEXT) < $$i || echo -n " NOT"; \
476                 echo " ok"; \
477             fi \
478         done
479 if HAVE_GLPK
480 check-lexmin: lexmin$(EXEEXT)
481         @for i in $(top_srcdir)/tests/lexmin/*; do \
482             if test -f $$i; then \
483                 for spec in 'random' 'bf' 'df'; do \
484                     opt="--specialization=$$spec"; \
485                     echo $$i $$opt; \
486                     ./lexmin$(EXEEXT) --verify $$opt < $$i || exit; \
487                 done \
488             fi \
489         done
490 else
491 check-lexmin:
492 endif
494 version.h: @GIT_HEAD@
495         echo '#define GIT_HEAD_ID "'@GIT_HEAD_VERSION@'"' > $@