Changeset 643b1eb in git
- Timestamp:
- May 10, 2011, 3:30:09 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- b58d4735ba8885b68e60e175df833c691cd3c04e
- Parents:
- 06541226e172777614f7a62af88d739f6cea424c
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-05-10 15:30:09+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:41+01:00
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/GNUmakefile.in
r0654122 r643b1eb 200 200 bifac.cc \ 201 201 lgs.cc \ 202 singext.cc 202 singext.cc \ 203 ftmpl_inst.cc 203 204 204 205 useiofactorysrc := \ … … 216 217 factoryobj1 := $(factorysrc:%.cc=%.o) 217 218 factoryobj := $(factoryobj1:%.y=%.o) 218 factorygobj := $(factorysrc:%.cc=%.og) 219 factorygobj1 := $(factorysrc:%.cc=%.og) 220 factorygobj := $(factorygobj1:%.y=%.og) 219 221 factorypobj := $(factorysrc:%.cc=%.op) 220 222 factorydep := $(factorysrc:%.cc=%.d) -
factory/configure.in
r0654122 r643b1eb 389 389 390 390 # memory manager 391 if test "x$with_memman" != xno; then391 if test "x$with_memman" = xyes; then 392 392 alltargets="$alltargets mem" 393 393 installtargets="$installtargets installmem" -
libpolys/coeffs/Makefile.am
r0654122 r643b1eb 20 20 mpr_complex.h mpr_global.h 21 21 22 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${srcdir} ${GMP_CFLAGS} 22 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${srcdir} ${GMP_CFLAGS} ${NTL_CFLAGS} 23 23 24 24 SOURCES = \ … … 46 46 test_g_SOURCES = test.cc 47 47 48 test_LDADD = -lcoeffs ${GMP_LIBS} -lresources -lreporter -lmisc -lsingcf -lomalloc49 test_g_LDADD = -lcoeffs_g ${GMP_LIBS} -lresources_g -lreporter_g -lmisc_g -lsingcf_g -lomalloc_debug48 test_LDADD = -lcoeffs ${GMP_LIBS} ${NTL_LIBS} -lresources -lreporter -lmisc -lsingcf -lomalloc 49 test_g_LDADD = -lcoeffs_g ${GMP_LIBS} ${NTL_LIBS} -lresources_g -lreporter_g -lmisc_g -lsingcf_g -lomalloc_debug 50 50 51 51 -
libpolys/coeffs/test.cc
r0654122 r643b1eb 18 18 #include <coeffs/rintegers.h> 19 19 #ifdef HAVE_FACTORY 20 #include <factory/factory.h> 20 int initializeGMP(){ return 1; } 21 21 #endif 22 22 … … 24 24 25 25 using namespace std; 26 27 // template stuff28 #ifdef HAVE_FACTORY29 #include <factory/templates/ftmpl_list.cc>30 #include <factory/templates/ftmpl_array.cc>31 #include <factory/templates/ftmpl_factor.cc>32 #include <factory/templates/ftmpl_functions.h>33 #include <factory/templates/ftmpl_matrix.cc>34 template class Factor<CanonicalForm>;35 template class List<CFFactor>;36 template class ListItem<CFFactor>;37 template class ListItem<CanonicalForm>;38 template class ListIterator<CFFactor>;39 template class List<CanonicalForm>;40 template class List<List<CanonicalForm> >;41 template class ListIterator<CanonicalForm>;42 template class Array<CanonicalForm>;43 template class List<MapPair>;44 template class ListItem<MapPair>;45 template class ListIterator<MapPair>;46 template class Matrix<CanonicalForm>;47 template class SubMatrix<CanonicalForm>;48 template class Array<REvaluation>;49 template bool find ( const List<CanonicalForm> &, const CanonicalForm&);50 template List<CFFactor> Union ( const List<CFFactor>&, const List<CFFactor>& );51 template int operator == ( const Factor<CanonicalForm>&, const Factor<CanonicalForm>& );52 53 template CanonicalForm tmax ( const CanonicalForm&, const CanonicalForm& );54 template CanonicalForm tmin ( const CanonicalForm&, const CanonicalForm& );55 56 template Variable tmax ( const Variable&, const Variable& );57 template Variable tmin ( const Variable&, const Variable& );58 59 template int tmax ( const int&, const int& );60 template int tmin ( const int&, const int& );61 template int tabs ( const int& );62 63 int initializeGMP()64 { return 1; }65 #endif66 26 67 27 #pragma GCC diagnostic ignored "-Wwrite-strings" -
libpolys/configure.ac
r0654122 r643b1eb 20 20 # Checks for libraries. 21 21 LB_CHECK_GMP(3.1.1,,AC_MSG_ERROR([Unable to find GMP on your machine: please use --with-gmp=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 22 23 LB_CHECK_NTL(5.0,,AC_MSG_WARN([Unable to find NTL (which is strongly recommended) on your machine: please use --with-ntl=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 22 24 23 25 # Checks for library functions.
Note: See TracChangeset
for help on using the changeset viewer.