Changeset b530add in git
- Timestamp:
- Feb 14, 2012, 6:02:55 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 025d9ae4f1274b8aa1259b35270dac893452cceb
- Parents:
- 78851c8fa806e127387451b44bac7b5aab116a5eae4d9b177e8176be44cb4f51501e79d5460c1ac9
- Files:
-
- 1 added
- 1 deleted
- 12 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Singular/claptmpl.cc
rae4d9b rb530add 65 65 // libfac: 66 66 #ifdef HAVE_LIBFAC 67 # include <factory/libfac/ factor.h>67 # include <factory/libfac/libfac.h> 68 68 #endif 69 69 -
Singular/extra.cc
rae4d9b rb530add 156 156 157 157 #ifdef HAVE_LIBFAC 158 //#include <factory/libfac/ factor.h>158 //#include <factory/libfac/libfac.h> 159 159 #endif 160 160 -
factory/Makefile.am
rae4d9b rb530add 9 9 AM_CPPFLAGS = -I${builddir}/include -I${srcdir}/include ${GMP_CFLAGS} ${NTL_CFLAGS} ${OMALLOC_CFLAGS} 10 10 11 AM_LDFLAGS = -L${ builddir}11 AM_LDFLAGS = -L${abs_builddir} 12 12 13 13 lib_LTLIBRARIES = libfactory.la libfactory_g.la 14 14 15 15 libfactory_la_CXXFLAGS = -O3 -fomit-frame-pointer ${CXXTEMPLFLAGS} 16 libfactory_la_LIBADD = ${ builddir}/libfac/libfac.la ${GMP_LIBS} ${NTL_LIBS}16 libfactory_la_LIBADD = ${abs_builddir}/libfac/libfac.la ${GMP_LIBS} ${NTL_LIBS} 17 17 libfactory_la_LDFLAGS = ${AM_LDFLAGS} -release ${PACKAGE_VERSION} 18 18 libfactory_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${CXXTEMPLFLAGS} 19 libfactory_g_la_LIBADD = ${ builddir}/libfac/libfac_g.la ${GMP_LIBS} ${NTL_LIBS}19 libfactory_g_la_LIBADD = ${abs_builddir}/libfac/libfac_g.la ${GMP_LIBS} ${NTL_LIBS} 20 20 libfactory_g_la_LDFLAGS = ${AM_LDFLAGS} -release ${PACKAGE_VERSION} 21 21 -
factory/configure.ac
r78851c8 rb530add 125 125 AC_CHECK_PROG(M4, m4, m4, where-is-your-m4) 126 126 AC_CHECK_PROG(BISON, bison, bison, where-is-your-bison) 127 AC_CHECK_SIZEOF(long,4) 127 128 AC_C_CONST 128 129 AC_C_INLINE -
factory/ftmpl_inst.cc
rae4d9b rb530add 14 14 #include "config.h" 15 15 16 #include <factory/factoryconf.h> 16 // #include <factory/factoryconf.h> 17 // #include "factory.h" 18 #include "cf_iter.h" 19 #include "canonicalform.h" 20 #include "cf_assert.h" 21 #include "cf_reval.h" 22 #include "cf_map.h" 17 23 18 #include "factory.h"19 24 20 25 #include "templates/ftmpl_array.cc" -
factory/libfac/Makefile.am
rae4d9b rb530add 44 44 libfac_includedir=$(includedir)/factory/libfac 45 45 46 libfac_include_HEADERS = factor.h46 libfac_include_HEADERS = libfac.h 47 47 48 48 EXTRA_DIST = factor/class.cc \ -
factory/libfac/factor/Factor.h
rae4d9b rb530add 10 10 CFFList Factorize( const CanonicalForm & F, int is_SqrFree=0 ) ; 11 11 CFFList Factorize( const CanonicalForm & F, const CanonicalForm & mi, int is_SqrFree=0 ) ; 12 CFFList Factorize2(CanonicalForm F, const CanonicalForm & minpoly );13 12 /*ENDPUBLIC*/ 14 13 -
factory/libfac/factor/tmpl_inst.cc
rae4d9b rb530add 4 4 //////////////////////////////////////////////////////////// 5 5 6 // #include <factory/templates/ftmpl_array.cc> 6 #include "config.h" 7 7 8 #include "factory.h" 8 // #include <factory/factoryconf.h> 9 10 // #include "factory.h" 11 #include "cf_iter.h" 12 #include "canonicalform.h" 13 #include "cf_assert.h" 14 #include "cf_reval.h" 9 15 10 16 #include "templates/ftmpl_array.cc" … … 13 19 #include "templates/ftmpl_functions.h" 14 20 #include "templates/ftmpl_matrix.cc" 15 16 template class Factor<CanonicalForm>;17 template class List<CFFactor>;18 template class ListIterator<CFFactor>;19 template class List<CanonicalForm>;20 template class ListIterator<CanonicalForm>;21 template class Array<CanonicalForm>;22 template class List<MapPair>;23 template class ListIterator<MapPair>;24 template class Matrix<CanonicalForm>;25 template class SubMatrix<CanonicalForm>;26 27 #ifndef NOSTREAMIO28 template OSTREAM & operator << ( OSTREAM &, const List<CanonicalForm> & );29 template OSTREAM & operator << ( OSTREAM &, const List<CFFactor> & );30 template OSTREAM & operator << ( OSTREAM &, const List<MapPair> & );31 template OSTREAM & operator << ( OSTREAM &, const Array<CanonicalForm> & );32 template OSTREAM & operator << ( OSTREAM &, const Factor<CanonicalForm> & );33 //template OSTREAM & operator << ( OSTREAM &, const Matrix<CanonicalForm> & );34 #endif35 36 template List<CFFactor> Union ( const List<CFFactor>&, const List<CFFactor>& );37 38 /*39 template CanonicalForm crossprod ( const Array<CanonicalForm>&, const Array<CanonicalForm>& );40 template CanonicalForm prod ( const Array<CanonicalForm>& );41 */42 43 template CanonicalForm tmax ( const CanonicalForm&, const CanonicalForm& );44 template CanonicalForm tmin ( const CanonicalForm&, const CanonicalForm& );45 46 template int tmax ( const int&, const int& );47 template int tmin ( const int&, const int& );48 21 49 22 // place here your own template stuff, not instantiated by factory … … 60 33 template class List<SForm>; 61 34 template class ListIterator<SForm>; 62 63 template List<CanonicalForm> Union ( const List<CanonicalForm>&, const List<CanonicalForm>& );64 template List<CanonicalForm> Difference ( const List<CanonicalForm>&, const List<CanonicalForm>& );65 35 66 36 #ifndef NOSTREAMIO … … 86 56 template class Array<int>; 87 57 template class Array<Variable>; 88 template class Array<REvaluation>;89 58 90 59 // for database -
factory/libfac/test.cc
rae4d9b rb530add 2 2 /////////////////////////////////////////////////////////////////////////////// 3 3 // Factor - Includes 4 #include " factor.h"4 #include "libfac.h" 5 5 #ifdef HAVE_IOSTREAM 6 6 #include <iostream> -
factory/libfac/testcs.cc
rae4d9b rb530add 2 2 3 3 #include <factory.h> 4 #include < factor.h>4 #include <libfac.h> 5 5 #ifdef HAVE_IOSTREAM 6 6 #include <iostream> -
libpolys/polys/Makefile.am
rae4d9b rb530add 115 115 116 116 117 moduledir = $(libexecdir)/singular/MOD/ 117 moduledir = $(bindir) 118 #moduledir = $(libexecdir)/singular/MOD/ 118 119 119 120 if ENABLE_P_PROCS_DYNAMIC -
libpolys/polys/clapsing.cc
rae4d9b rb530add 18 18 19 19 #ifdef HAVE_LIBFAC 20 #include <factory/libfac/ factor.h>20 #include <factory/libfac/libfac.h> 21 21 #endif 22 22
Note: See TracChangeset
for help on using the changeset viewer.