isl_obj_list_print: properly return isl_printer
[barvinok.git] / Makefile.am
blob366e48929c4c33e6787415478de9864ec04aa2c6
1 if BUNDLED_POLYLIB
2     MAYBE_POLYLIB = polylib
3     POLYLIB_LA = $(top_builddir)/polylib/libpolylibgmp.la
4     LOCAL_POLYLIB_LA = polylib/libpolylibgmp.la
5 endif
6 if BUNDLED_ISL
7     MAYBE_ISL = isl
8     ISL_LA = $(top_builddir)/isl/libisl.la
9     LOCAL_ISL_LA = isl/libisl.la
10 endif
11 if BUILD_ISL
12     ISL_LA = $(ISL_BUILDDIR)/libisl.la
13 endif
14 if BUNDLED_ISL_POLYLIB
15     MAYBE_ISL_POLYLIB = isl-polylib
16     ISL_POLYLIB_LA = $(top_builddir)/isl-polylib/libisl-polylib.la
17 endif
18 if BUNDLED_CLOOG
19     MAYBE_CLOOG = cloog
20     CLOOG_LA = $(top_builddir)/cloog/libcloog-isl.la
21 endif
22 if BUNDLED_OMEGA
23     MAYBE_OMEGA = omega
24     OMEGA_LA = $(top_builddir)/omega/omega_lib/libomega.la
25 endif
26 if USE_ZSOLVE
27     MAYBE_ZSOLVE = zsolve
28 endif
29 if USE_PARKER
30     MAYBE_PARKER = parker
31 endif
32 SUBDIRS = $(MAYBE_POLYLIB) $(MAYBE_ISL) $(MAYBE_ISL_POLYLIB) \
33                 $(MAYBE_CLOOG) $(MAYBE_OMEGA) \
34                 $(MAYBE_ZSOLVE) $(MAYBE_PARKER) . doc
35 DIST_SUBDIRS = $(MAYBE_POLYLIB) $(MAYBE_ISL) \
36                 $(MAYBE_ISL_POLYLIB) $(MAYBE_CLOOG) $(MAYBE_OMEGA) \
37                 zsolve parker doc
39 FORCE:
40 polylib/libpolylibgmp.la: FORCE
41         cd polylib; $(MAKE) $(AM_MAKEFLAGS) libpolylibgmp.la
42 isl/libisl.la: FORCE
43         cd isl; $(MAKE) $(AM_MAKEFLAGS) libisl.la
44 isl-polylib/libisl-polylib.la: $(LOCAL_ISL_LA) $(LOCAL_POLYLIB_LA) FORCE
45         cd isl-polylib; $(MAKE) $(AM_MAKEFLAGS) libisl-polylib.la
46 cloog/libcloog-isl.la: $(LOCAL_ISL_LA) FORCE
47         cd cloog; $(MAKE) $(AM_MAKEFLAGS) libcloog-isl.la
48 omega/omega_lib/libomega.la: FORCE
49         cd omega/omega_lib; $(MAKE) $(AM_MAKEFLAGS) libomega.la
50 zsolve/libzsolve.la: FORCE
51         cd zsolve; $(MAKE) $(AM_MAKEFLAGS) libzsolve.la
52 parker/libparker.la: FORCE
53         cd parker; $(MAKE) $(AM_MAKEFLAGS) libparker.la
55 AM_CPPFLAGS = @POLYLIB_CPPFLAGS@ \
56               @ISL_CFLAGS@ @ISL_POLYLIB_CFLAGS@ @NTL_CPPFLAGS@
57 AM_LDFLAGS = @POLYLIB_LDFLAGS@ @NTL_LDFLAGS@
59 LIB_ISL = $(ISL_LA) @ISL_LIBS@
60 LIB_ISL_POLYLIB = $(ISL_POLYLIB_LA) @ISL_POLYLIB_LIBS@
61 LIB_CLOOG = $(CLOOG_LA) @CLOOG_LIBS@
63 lib_LTLIBRARIES = libbarvinok.la
64 bin_PROGRAMS = barvinok_count barvinok_enumerate barvinok_enumerate_e \
65                   barvinok_ehrhart polytope_scan iscc
66 noinst_PROGRAMS = test testlib randomtest \
67                   remove_redundant_equalities \
68                   barvinok_union polytope_volume test_approx \
69                   barvinok_summate verify_lexsmaller \
70                   polyhedron_sample 4coins lexmin \
71                   @bv_cone_hilbert_basis@ cone_integer_hull \
72                   polytope_lattice_width \
73                   polyhedron_integer_hull vector_partition_chambers \
74                   semigroup_holes evalue_convert \
75                   barvinok_bound test_bound
76 EXTRA_PROGRAMS = cone_hilbert_basis
77 pkginclude_HEADERS = \
78     barvinok/NTL_QQ.h \
79     barvinok/isl.h \
80     barvinok/barvinok.h \
81     barvinok/util.h \
82     barvinok/evalue.h \
83     barvinok/genfun.h \
84     barvinok/options.h \
85     barvinok/polylib.h \
86     barvinok/sample.h \
87     barvinok/basis_reduction.h
88 nodist_pkginclude_HEADERS = \
89     barvinok/NTL.h \
90     barvinok/set.h
91 LINK = $(CXXLINK)
93 if HAVE_CDDLIB
94     BR_CDD = basis_reduction_cdd.cc initcdd.cc
95     POLYSIGN_CDD = polysign_cddf.cc polysign_cdd.cc
96 endif
97 if HAVE_GLPK
98     BR_GLPK = basis_reduction_glpk.c
99     POLYSIGN_GLPK = polysign_glpk.c
100 endif
101 if HAVE_TOPCOM
102     TOPCOM = topcom.c topcom.h
103 endif
104 if USE_ZSOLVE
105     HILBERT_C = hilbert.c
106 endif
107 libbarvinok_la_SOURCES = \
108     barvinok/evalue.h \
109     barvinok/genfun.h \
110     barvinok/util.h \
111     barvinok/barvinok.h \
112     NTL_QQ.cc \
113     basis_reduction.c \
114     evalue.c \
115     genfun.cc \
116     util.c \
117     version.c \
118     bernoulli.c \
119     bernoulli.h \
120     bfcounter.cc \
121     bfcounter.h \
122     binomial.c \
123     binomial.h \
124     conversion.cc \
125     conversion.h \
126     counter.cc \
127     counter.h \
128     decomposer.cc \
129     decomposer.h \
130     dpoly.cc \
131     dpoly.h \
132     euler.cc \
133     euler.h \
134     evalue_isl.c \
135     genfun_constructor.cc \
136     genfun_constructor.h \
137     $(HILBERT_C) \
138     hilbert.h \
139     hull.c \
140     hull.h \
141     ilp.c \
142     ilp.h \
143     isl_param_util.c \
144     isl_param_util.h \
145     lattice_point.cc \
146     lattice_point.h \
147     lattice_width.c \
148     lattice_width.h \
149     laurent.cc \
150     laurent.h \
151     laurent_old.cc \
152     laurent_old.h \
153     normalization.c \
154     normalization.h \
155     options.c \
156     param_polynomial.cc \
157     param_polynomial.h \
158     param_util.c \
159     param_util.h \
160     $(POLYSIGN_CDD) \
161     $(POLYSIGN_GLPK) \
162     $(POLYSIGN_PIP) \
163     polysign.c \
164     polysign_isl.c \
165     polysign_polylib.c \
166     polysign.h \
167     power.h \
168     reduce_domain.c \
169     reduce_domain.h \
170     reducer.cc \
171     reducer.h \
172     remove_equalities.h \
173     remove_equalities.c \
174     sample.c \
175     scale.c \
176     scale.h \
177     scarf.cc \
178     section_array.h \
179     series.cc \
180     $(TOPCOM) \
181     summate.c \
182     summate.h \
183     vertex_cone.cc \
184     vertex_cone.h \
185     volume.c \
186     volume.h \
187     mat_util.cc \
188     mat_util.h \
189     matrix_read.cc \
190     matrix_read.h \
191     barvinok.cc \
192     barvinok_e.cc \
193     $(BR_CDD) \
194     $(BR_GLPK) \
195     $(BR_PIP)
196 EXTRA_libbarvinok_la_SOURCES = \
197     basis_reduction_cdd.cc \
198     basis_reduction_glpk.c \
199     hilbert.c \
200     polysign_cddf.cc \
201     polysign_cdd.cc \
202     polysign.c \
203     initcdd.cc \
204     initcdd.h \
205     topcom.c \
206     topcom.h
207 if USE_ZSOLVE
208     ZSOLVE_LA = zsolve/libzsolve.la
209 endif
210 libbarvinok_la_LIBADD = @LTLIBOBJS@ $(LIB_ISL_POLYLIB) $(LIB_ISL) \
211                              $(POLYLIB_LA) @POLYLIB_LIBS@ \
212                              $(ZSOLVE_LA)
213 libbarvinok_la_LDFLAGS = @BV_LDFLAGS@ -version-info @versioninfo@ \
214                                 $(AM_LDFLAGS)
215 LDADD = libbarvinok.la @ISL_POLYLIB_LIBS@ @ISL_LIBS@ \
216         @POLYLIB_LIBS@
218 test_SOURCES = \
219         evalue_read.c \
220         evalue_read.h \
221         test.c
222 testlib_SOURCES = \
223         evalue_read.c \
224         evalue_read.h \
225         testlib.cc
226 barvinok_count_SOURCES = barvinok_count.c
227 barvinok_ehrhart_SOURCES = \
228         barvinok_ehrhart_options.c \
229         barvinok_ehrhart_options.h \
230         barvinok_ehrhart.cc \
231         evalue_convert_options.c \
232         evalue_convert.cc \
233         evalue_convert.h \
234         $(FDSTREAM)
235 barvinok_union_SOURCES = \
236         barvinok_union_options.c \
237         barvinok_union_options.h \
238         barvinok_union.cc
239 if HAVE_OMEGA
240 BEEO_SOURCES = \
241         omega_interface/Exit.cc \
242         omega_interface/convert.h \
243         omega_interface/convert.cc \
244         omega_interface/count.h \
245         omega_interface/count.cc
246 else
247 BEEO_SOURCES = 
248 endif
249 if USE_FDSTREAM
250 FDSTREAM = fdstream.cc fdstream.h
251 endif
252 barvinok_enumerate_SOURCES = \
253         barvinok_enumerate_options.c \
254         barvinok_enumerate_options.h \
255         barvinok_enumerate.cc \
256         evalue_convert_options.c \
257         evalue_convert.cc \
258         evalue_convert.h \
259         $(FDSTREAM) \
260         skewed_genfun.cc \
261         skewed_genfun.h \
262         verify.h \
263         verify.c \
264         verif_ehrhart.h \
265         verif_ehrhart.c \
266         verify_series.h \
267         verify_series.cc
268 EXTRA_barvinok_enumerate_SOURCES = fdstream.cc fdstream.h
269 barvinok_enumerate_e_SOURCES = \
270         barvinok_enumerate_e_options.c \
271         barvinok_enumerate_e_options.h \
272         barvinok_enumerate_e.cc \
273         evalue_convert_options.c \
274         evalue_convert.cc \
275         evalue_convert.h \
276         $(FDSTREAM) \
277         skewed_genfun.cc \
278         skewed_genfun.h \
279         verify.h \
280         verify.c \
281         verif_ehrhart.h \
282         verif_ehrhart.c \
283         verify_series.h \
284         verify_series.cc \
285         $(BEEO_SOURCES)
286 EXTRA_barvinok_enumerate_e_SOURCES = fdstream.cc fdstream.h
287 if USE_PARKER
288     MONA_LIBS = -ldfa -lbdd -lmem
289     PARKER_LA = parker/libparker.la
290     PARKERLDFLAGS = -L$(MONAPATH)/DFA -L$(MONAPATH)/BDD -L$(MONAPATH)/Mem
291     PARKERCPPFLAGS = -I$(MONAPATH)/Mem -I$(MONAPATH)/DFA -I$(MONAPATH)/BDD
292 endif
293 barvinok_enumerate_e_CPPFLAGS = \
294         $(PARKERCPPFLAGS) @OMEGA_CPPFLAGS@ $(AM_CPPFLAGS)
295 barvinok_enumerate_e_LDFLAGS = $(PARKERLDFLAGS) @OMEGA_LDFLAGS@ @LDFLAGS@
296 barvinok_enumerate_e_LDADD = \
297         $(PARKER_LA) $(MONA_LIBS) @OMEGA_LIBS@ $(OMEGA_LA) libbarvinok.la \
298         @ISL_POLYLIB_LIBS@ @ISL_LIBS@ @POLYLIB_LIBS@
299 barvinok_bound_SOURCES = \
300         bound.c \
301         verify.h \
302         verify.c
303 EXTRA_barvinok_bound_SOURCES = fdstream.cc fdstream.h
304 barvinok_bound_LDADD = \
305         libbarvinok.la @ISL_POLYLIB_LIBS@ @ISL_LIBS@ \
306         @POLYLIB_LIBS@
307 barvinok_summate_SOURCES = \
308         barvinok_summate.c \
309         verify.h \
310         verify.c
311 EXTRA_barvinok_summate_SOURCES = fdstream.cc fdstream.h
312 4coins_SOURCES = 4coins.cc
313 semigroup_holes_SOURCES = semigroup_holes.cc
314 lexmin_SOURCES = \
315         lexmin_options.c \
316         lexmin.h \
317         lexmin.cc \
318         edomain.cc \
319         edomain.h \
320         evalue_util.cc \
321         evalue_util.h \
322         verify.h \
323         verify.c
324 test_approx_SOURCES = \
325         test_approx.c \
326         verify.h \
327         verify.c
328 test_bound_SOURCES = \
329         test_bound.c \
330         verify.h \
331         verify.c
332 EXTRA_test_bound_SOURCES = fdstream.cc fdstream.h
333 test_bound_LDADD = \
334         libbarvinok.la @ISL_POLYLIB_LIBS@ @ISL_LIBS@ \
335         @POLYLIB_LIBS@
336 evalue_convert_SOURCES = \
337         evalue_convert_main.c \
338         evalue_convert_options.c \
339         evalue_convert.cc \
340         evalue_convert.h \
341         evalue_read.c \
342         evalue_read.h \
343         $(FDSTREAM)
344 iscc_SOURCES =  \
345         isl_obj_list.h \
346         isl_obj_list.c \
347         isl_obj_str.h \
348         isl_obj_str.c \
349         iscc.c
350 iscc_CPPFLAGS = @CLOOG_CFLAGS@ $(AM_CPPFLAGS)
351 iscc_LDADD = \
352         libbarvinok.la $(LIB_CLOOG) @ISL_POLYLIB_LIBS@ @ISL_LIBS@ \
353         @POLYLIB_LIBS@
355 TESTFILES = $(shell find $(top_srcdir)/tests -type f ! -path '*CVS*')
357 EXTRA_DIST = \
358     ChangeLog \
359     $(TESTFILES) \
360     latte2polylib.pl \
361     NTL_5_3_2.patch \
362     basis_reduction_templ.c \
363     cdd94e-test \
364     polysign_cdd_template.cc \
365     barvinok/NTL.h.broken \
366     barvinok/NTL.h.normal \
367     barvinok/set.h.broken \
368     barvinok/set.h.normal \
369     doc/isl.tex \
370     doc/Internal.tex \
371     doc/applications.tex \
372     doc/barvinok.tex \
373     doc/polymake.tex \
374     doc/reports.tex \
375     doc/barvinok.bib \
376     doc/barvinok.gdf \
377     doc/chicago.bst \
378     doc/chicago.sty \
379     doc/mydefs.sty \
380     polymake/Makefile.in \
381     polymake/README \
382     polymake/autogen.sh \
383     polymake/configure.in \
384     polymake/convert.cc \
385     polymake/convert.h \
386     polymake/h_star_vector.cc \
387     polymake/lattice_points.cc
389 ACLOCAL_AMFLAGS = -I m4
391 install-data-local:
392         @test -z "$(pkgconfig_libdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfig_libdir)"
393         $(INSTALL_DATA) $(pkgconfig_libfile) "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
395 uninstall-local:
396         rm -f "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
398 dist-hook:
399         (cd $(distdir)/polymake; \
400             ./autogen.sh; rm -rf autogen.sh autom4te.cache)
401         (cd doc; make barvinok.pdf)
402         cp doc/barvinok.pdf $(distdir)/doc/
403         if test -f $(top_srcdir)/.git/HEAD; then \
404             echo @GIT_HEAD_VERSION@ > $(distdir)/GIT_HEAD_ID; \
405         else \
406             echo $(GIT_HEAD_ID) > $(distdir)/GIT_HEAD_ID; \
407         fi
409 dist-git: dist
410         mv $(distdir).tar.gz @GIT_HEAD_VERSION@.tar.gz
412 BEE_TESTDIRS = ehrhart_e ehrhart_e/scarf ehrhart_e/piplib
414 check: check-testlib check-enumerate check-enumerate_e check-test \
415         check-lexmin check-approx check-pwqp check-euler check-lw
416 check-testlib: testlib$(EXEEXT)
417         ./testlib$(EXEEXT)
418 check-approx: test_approx$(EXEEXT)
419         @for i in $(top_srcdir)/tests/ehrhart/*; do \
420             if test -f $$i; then \
421                 echo $$i | ./test_approx$(EXEEXT) -q -r 10 || exit; \
422             fi \
423         done
424 check-pwqp: barvinok_bound$(EXEEXT) test_bound$(EXEEXT) barvinok_summate$(EXEEXT)
425         @for i in $(top_srcdir)/tests/pwqp/*; do \
426             if test -f $$i; then \
427                 echo $$i; \
428                 ./barvinok_bound$(EXEEXT) -T -r30 < $$i || exit; \
429                 echo $$i | ./test_bound$(EXEEXT) -q -r30 || exit; \
430                 ./barvinok_summate$(EXEEXT) -T -r30 < $$i || exit; \
431             fi \
432         done
433 check-euler: barvinok_summate$(EXEEXT)
434         @for i in $(top_srcdir)/tests/euler/*; do \
435             if test -f $$i; then \
436                 for method in 'euler' 'laurent_old' 'laurent'; do \
437                     opt="--summation=$$method"; \
438                     echo $$i $$opt; \
439                     ./barvinok_summate$(EXEEXT) -T $$opt < $$i || exit; \
440                 done \
441             fi \
442         done
443 if HAVE_TOPCOM
444     TOPCOM_CD = '--chamber-decomposition=topcom'
445 endif
446 ISL_CD = '--chamber-decomposition=isl'
447 check-enumerate: barvinok_enumerate$(EXEEXT)
448         @for i in $(top_srcdir)/tests/ehrhart/*; do \
449             if test -f $$i; then \
450                 echo $$i; \
451                 for options in '' '--series' '--series --primal' $(TOPCOM_CD) $(ISL_CD); do \
452                     for spec in 'random' 'bf' 'df'; do \
453                         opt="--specialization=$$spec $$options"; \
454                         echo "        $$opt"; \
455                         ./barvinok_enumerate$(EXEEXT) --verify $$opt < $$i || exit; \
456                     done \
457                 done; \
458                 opt="--summation=bernoulli"; \
459                 echo "        $$opt"; \
460                 ./barvinok_enumerate$(EXEEXT) --verify $$opt < $$i || exit; \
461             fi \
462         done
463 if HAVE_OMEGA
464     SPEC_OMEGA = '--isl --omega'
465 endif
466 check-enumerate_e: barvinok_enumerate_e$(EXEEXT)
467         @for dir in $(BEE_TESTDIRS); do \
468             for i in $(top_srcdir)/tests/$$dir/*; do \
469                 if test -f $$i; then \
470                     for options in '' $(SPEC_OMEGA) '--isl'; do \
471                         for spec in 'random' 'bf' 'df'; do \
472                             opt="--specialization=$$spec $$options"; \
473                             echo $$i $$opt; \
474                             ./barvinok_enumerate_e$(EXEEXT) --verify $$opt < $$i || exit; \
475                         done \
476                     done \
477                 fi \
478             done \
479         done
480         @for i in $(top_srcdir)/tests/ehrhart_e/scarf/*; do \
481             if test -f $$i; then \
482                 for spec in 'random' 'bf' 'df'; do \
483                     opt="--specialization=$$spec --scarf"; \
484                     echo $$i $$opt; \
485                     ./barvinok_enumerate_e$(EXEEXT) --verify $$opt < $$i || exit; \
486                 done; \
487                 echo $$i --series; \
488                 ./barvinok_enumerate_e$(EXEEXT) --verify --series < $$i || exit; \
489             fi \
490         done
491 check-test: test$(EXEEXT)
492         @failed=0; \
493         for i in $(top_srcdir)/tests/*; do \
494             if test -f $$i; then \
495                 for options in '--index=10' '--primal --index=10'; do \
496                     for spec in 'random' 'bf' 'df' 'todd'; do \
497                         opt="--specialization=$$spec $$options"; \
498                         echo -n $$i $$opt; \
499                         ./test$(EXEEXT) $$opt < $$i; \
500                         if test "$$?" -ne "0"; then \
501                             failed=`expr $$failed + 1`; \
502                             echo " NOT ok"; \
503                         else \
504                             echo " ok"; \
505                         fi; \
506                     done \
507                 done \
508             fi \
509         done; \
510         for i in $(top_srcdir)/tests/sample/*; do \
511             echo -n $$i; \
512             ./test$(EXEEXT) < $$i; \
513             if test "$$?" -ne "0"; then \
514                 failed=`expr $$failed + 1`; \
515                 echo " NOT ok"; \
516             else \
517                 echo " ok"; \
518             fi; \
519         done; \
520         if test $$failed != 0; then \
521                 echo "$$failed tests failed"; \
522                 exit -1; \
523         fi
524 check-lw: test$(EXEEXT)
525         @failed=0; \
526         for i in $(top_srcdir)/tests/lattice_width/*; do \
527             if test -f $$i; then \
528                 echo -n $$i; \
529                 ./test$(EXEEXT) < $$i; \
530                 if test "$$?" -ne "0"; then \
531                     failed=`expr $$failed + 1`; \
532                     echo " NOT ok"; \
533                 else \
534                     echo " ok"; \
535                 fi; \
536             fi \
537         done; \
538         if test $$failed != 0; then \
539                 echo "$$failed tests failed"; \
540                 exit -1; \
541         fi
542 check-lexmin: lexmin$(EXEEXT)
543         @for i in $(top_srcdir)/tests/lexmin/*; do \
544             if test -f $$i; then \
545                 for spec in 'random' 'bf' 'df'; do \
546                     opt="--specialization=$$spec"; \
547                     echo $$i $$opt; \
548                     ./lexmin$(EXEEXT) --verify $$opt < $$i || exit; \
549                 done \
550             fi \
551         done
553 version.h: @GIT_HEAD@
554         echo '#define GIT_HEAD_ID "'@GIT_HEAD_VERSION@'"' > $@