Changeset ee668e in git
- Timestamp:
- Nov 17, 2011, 5:23:11 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- b7d64b3fc45a85f34ae6f34e9c227eed2796c70f
- Parents:
- f0168a594d5a00a74dd169a3d0189411e29989f4
- git-author:
- Jan Engelhardt <jengelh@medozas.de>2011-11-17 17:23:11+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:09:33+01:00
- Location:
- factory
- Files:
-
- 2 added
- 22 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
factory/.gitignore
rf0168a5 ree668e 1 cplusplus2 cplusplus.h3 test-g4 test-r1 /cplusplus 2 /cplusplus.h 3 /test-g 4 /test-r -
factory/Makefile.am
rf0168a5 ree668e 1 1 ACLOCAL_AMFLAGS = -I ../m4 2 2 3 SUBDIRS = include/factory 4 3 5 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 4 6 5 AM_CPPFLAGS = -I ${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir}${GMP_CFLAGS} ${NTL_CFLAGS}7 AM_CPPFLAGS = -Iinclude -I${srcdir}/include ${GMP_CFLAGS} ${NTL_CFLAGS} 6 8 7 9 lib_LTLIBRARIES = libfactory.la libfactory_g.la … … 108 110 nodist_libfactory_g_la_SOURCES = cplusplus.h factory.h factoryconf.h 109 111 110 111 112 # factory header files 112 113 factory_headers = \ … … 182 183 noinst_HEADERS = $(factory_headers) 183 184 184 libfactory_includedir=$(includedir)/factory 185 186 nobase_libfactory_include_HEADERS = \ 187 cf_gmp.h $(templateincl) 185 libfactory_includedir = ${includedir}/factory 188 186 189 187 nodist_libfactory_include_HEADERS = cplusplus.h factory.h factoryconf.h … … 253 251 templates/ftmpl_matrix.cc 254 252 255 templateincl = templates/ftmpl_array.h \256 templates/ftmpl_factor.h \257 templates/ftmpl_list.h \258 templates/ftmpl_matrix.h259 260 253 # header templates 261 254 hdrtemplsrc = factoryconf.template \ … … 316 309 317 310 cplusplus.h: cplusplus 318 ${abs_builddir}/cplusplus > ${abs_builddir}/cplusplus.h 311 ./cplusplus >$@ 312 cp $@ include/factory/ 319 313 320 314 .template.h: 321 315 ${srcdir}/bin/makeheader $< $@ 316 cp $@ include/factory/ 322 317 323 318 # factory/gfops.cc has the gftables path hardcoded in, so we create a -
factory/NTLconvert.cc
rf0168a5 ree668e 14 14 #include "cf_algorithm.h" 15 15 16 #include "cf_gmp.h"16 #include <factory/cf_gmp.h> 17 17 18 18 #ifdef HAVE_NTL -
factory/NTLconvert.h
rf0168a5 ree668e 5 5 #ifdef HAVE_NTL 6 6 7 // #include "cf_gmp.h"7 // #include <factory/cf_gmp.h> 8 8 9 9 #include "cf_defs.h" -
factory/algext.cc
rf0168a5 ree668e 1 #include "factoryconf.h"1 #include <factory/factoryconf.h> 2 2 3 3 #ifndef NOSTREAMIO -
factory/canonicalform.cc
rf0168a5 ree668e 17 17 #include "cf_binom.h" 18 18 19 #include "cf_gmp.h"19 #include <factory/cf_gmp.h> 20 20 21 21 -
factory/canonicalform.h
rf0168a5 ree668e 21 21 #include "cf_defs.h" 22 22 #include "variable.h" 23 #include "templates/ftmpl_list.h"24 #include "templates/ftmpl_array.h"25 #include "templates/ftmpl_factor.h"26 #include "templates/ftmpl_matrix.h"23 #include <factory/templates/ftmpl_list.h> 24 #include <factory/templates/ftmpl_array.h> 25 #include <factory/templates/ftmpl_factor.h> 26 #include <factory/templates/ftmpl_matrix.h> 27 27 28 28 /*BEGINPUBLIC*/ -
factory/cf_factor.cc
rf0168a5 ree668e 39 39 #endif 40 40 41 #include "cf_gmp.h"41 #include <factory/cf_gmp.h> 42 42 43 43 int getExp(); /* cf_char.cc */ -
factory/cf_map.h
rf0168a5 ree668e 25 25 #include "variable.h" 26 26 #include "canonicalform.h" 27 #include "templates/ftmpl_list.h"27 #include <factory/templates/ftmpl_list.h> 28 28 29 29 /*BEGINPUBLIC*/ -
factory/configure.ac
rf0168a5 ree668e 455 455 [test x$with_Singular != xyes && test x$enable_streamio != xno]) 456 456 457 AC_CONFIG_FILES([Makefile libfac/Makefile]) # ftest/GNUmakefile457 AC_CONFIG_FILES([Makefile include/factory/Makefile libfac/Makefile]) # ftest/GNUmakefile 458 458 AC_OUTPUT 459 459 -
factory/fac_cantzass.cc
rf0168a5 ree668e 13 13 #include "gmpext.h" 14 14 15 #include "cf_gmp.h"15 #include <factory/cf_gmp.h> 16 16 17 17 static CanonicalForm randomPoly( int n, const Variable & x, const CFRandom & gen ); -
factory/ftmpl_inst.cc
rf0168a5 ree668e 14 14 #include "config.h" 15 15 16 #include "factoryconf.h"16 #include <factory/factoryconf.h> 17 17 18 18 #include "factory.h" -
factory/gmpext.h
rf0168a5 ree668e 6 6 7 7 // #include "config.h" 8 // #include "cf_gmp.h"8 // #include <factory/cf_gmp.h> 9 9 10 10 #include "cf_defs.h" -
factory/int_int.cc
rf0168a5 ree668e 8 8 #include "int_int.h" 9 9 #include "int_rat.h" 10 #include "cf_gmp.h"10 #include <factory/cf_gmp.h> 11 11 #include "gmpext.h" 12 12 -
factory/int_int.h
rf0168a5 ree668e 20 20 21 21 #include "int_cf.h" 22 // #include "cf_gmp.h"22 // #include <factory/cf_gmp.h> 23 23 #include "gmpext.h" 24 24 -
factory/int_intdiv.cc
rf0168a5 ree668e 15 15 #include "int_int.h" 16 16 #include "int_rat.h" 17 #include "cf_gmp.h"17 #include <factory/cf_gmp.h> 18 18 #include "gmpext.h" 19 19 #include "templates/ftmpl_functions.h" -
factory/int_rat.h
rf0168a5 ree668e 22 22 #include "int_cf.h" 23 23 #include "imm.h" 24 // #include "cf_gmp.h"24 // #include <factory/cf_gmp.h> 25 25 26 26 class InternalRational : public InternalCF -
factory/readcf.yy
rf0168a5 ree668e 5 5 6 6 #include "config.h" 7 #include "factoryconf.h"7 #include <factory/factoryconf.h> 8 8 9 9 #if defined(WINNT) && ! defined(__GNUC__) -
factory/singext.cc
rf0168a5 ree668e 14 14 #include "cf_factory.h" 15 15 16 #include "cf_gmp.h"16 #include <factory/cf_gmp.h> 17 17 18 18 -
factory/sm_sparsemod.cc
rf0168a5 ree668e 28 28 #include "sm_util.h" 29 29 #include "sm_sparsemod.h" 30 #include "templates/ftmpl_array.h"30 #include <factory/templates/ftmpl_array.h> 31 31 #include "templates/ftmpl_functions.h" 32 32 -
factory/sm_util.cc
rf0168a5 ree668e 23 23 #include "canonicalform.h" 24 24 #include "variable.h" 25 #include "templates/ftmpl_array.h"25 #include <factory/templates/ftmpl_array.h> 26 26 27 27 //{{{ static CanonicalForm fmonome( const CanonicalForm & f ) -
factory/sm_util.h
rf0168a5 ree668e 17 17 #include "canonicalform.h" 18 18 #include "cf_reval.h" 19 #include "templates/ftmpl_array.h"19 #include <factory/templates/ftmpl_array.h> 20 20 21 21 typedef Array<REvaluation> REArray;
Note: See TracChangeset
for help on using the changeset viewer.