Changeset 6bec87 in git
- Timestamp:
- Dec 22, 2010, 4:16:34 PM (12 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 9a738f4ce36c0bdd95061c049961fac7b131c5be
- Parents:
- 20b794b84c950b9228e04900a5ccb47c0926cb2e
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-12-22 16:16:34+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:59:23+01:00
- Location:
- libpolys
- Files:
-
- 7 added
- 3 deleted
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/COPYING
r20b794 r6bec87 1 /sw/share/automake-1. 9/COPYING1 /sw/share/automake-1.11/COPYING -
libpolys/coeffs/INSTALL
r20b794 r6bec87 1 /sw/share/automake-1. 9/INSTALL1 /sw/share/automake-1.11/INSTALL -
libpolys/coeffs/Makefile.am
r20b794 r6bec87 1 1 AM_CXXFLAGS = -fno-implicit-templates --no-exceptions 2 2 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. -I${srcdir} 3 AM_LDFLAGS = -L${top_builddir}/../coeffs -L${top_builddir}/../reporter -L${top_builddir}/../resources -L${top_builddir}/../../omalloc 4 AM_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 3 AM_LDFLAGS = -L${top_builddir}/../coeffs -L${top_builddir}/../reporter -L${top_builddir}/../resources -L${top_builddir}/../../omalloc 4 AM_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 5 6 SOURCES = \ 7 gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \ 8 modulop.cc mpr_complex.cc \ 9 numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc 5 10 6 11 lib_LIBRARIES=libcoeffs.a libcoeffs_g.a 7 8 # normal C++ source files9 SOURCES = \10 gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \11 modulop.cc mpr_complex.cc \12 numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc13 12 14 13 libcoeffs_a_SOURCES = ${SOURCES} … … 19 18 noinst_HEADERS= \ 20 19 gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h \ 21 22 20 mpr_complex.h mpr_global.h \ 21 rintegers.h rmodulo2m.h rmodulon.h shortfl.h 23 22 24 23 include_HEADERS = coeffs.h numbers.h -
libpolys/polys/configure.ac
r20b794 r6bec87 4 4 AC_PREREQ([2.65]) 5 5 AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) 6 AC_CONFIG_SRCDIR([longalg.cc]) 6 AM_INIT_AUTOMAKE 7 AC_CONFIG_SRCDIR([polys.cc]) 7 8 AC_CONFIG_HEADERS([config.h]) 8 9 … … 11 12 AC_PROG_CC 12 13 AC_PROG_LN_S 14 AC_PROG_RANLIB 13 15 14 16 # Checks for libraries. -
libpolys/polys/monomials/monomials.cc
r20b794 r6bec87 19 19 #include <stdio.h> 20 20 #include <string.h> 21 #include < auxialiary.h>21 #include <misc/auxiliary.h> 22 22 23 23 #include <omalloc/omalloc.h> … … 34 34 #include <polys/monomials/ring.h> 35 35 #include <polys/templates/p_Procs.h> 36 #include < dError.h>36 #include <reporter/reporter.h> 37 37 38 38 #ifdef PDEBUG -
libpolys/polys/monomials/p_polys.cc
r20b794 r6bec87 11 11 12 12 13 #include < auxialiary.h>13 #include <misc/auxiliary.h> 14 14 15 15 #include <polys/monomials/ring.h> 16 #include <polys/ p_polys.h>16 #include <polys/monomials/p_polys.h> 17 17 #include <polys/monomials/ring.h> 18 18 // #include <???/ideals.h> -
libpolys/polys/monomials/p_polys.h
r20b794 r6bec87 1179 1179 * Version: $Id$ 1180 1180 *******************************************************************/ 1181 #include <m ylimits.h>1181 #include <misc/mylimits.h> 1182 1182 #include <polys/templates/p_MemCmp.h> 1183 1183 // #include <polys/structs.h> … … 1209 1209 #include <omalloc/omalloc.h> 1210 1210 #include <coeffs/coeffs.h> 1211 #include <polys/ p_polys.h>1211 #include <polys/monomials/p_polys.h> 1212 1212 #include <polys/templates/p_MemAdd.h> 1213 1213 #include <polys/templates/p_MemCopy.h> -
libpolys/polys/monomials/ring.cc
r20b794 r6bec87 29 29 // #include <sca.h> 30 30 #endif 31 #include <maps.h>32 #include <matpol.h>31 // #include <???/maps.h> 32 // #include <???/matpol.h> 33 33 #ifdef HAVE_FACTORY 34 34 #define SI_DONT_HAVE_GLOBAL_VARS 35 # include <factory .h>35 # include <factory/factory.h> 36 36 #endif 37 37 -
libpolys/polys/operations/pShallowCopyDelete.cc
r20b794 r6bec87 10 10 *******************************************************************/ 11 11 #include "polys/config.h" 12 #include <polys/ p_polys.h>12 #include <polys/monomials/p_polys.h> 13 13 #include <polys/monomials/ring.h> 14 14 #include <polys/operations/pShallowCopyDelete.h> -
libpolys/polys/operations/p_Mult_q.cc
r20b794 r6bec87 18 18 ***************************************************************/ 19 19 // #include <polys/options.h> 20 #include <polys/ p_polys.h>21 #include <polys/ p_Procs.h>22 #include <polys/ p_Numbers.h>23 #include <polys/kbuckets.h>20 #include <polys/monomials/p_polys.h> 21 #include <polys/templates/p_Procs.h> 22 #include <polys/templates/p_Numbers.h> 23 // #include <???/kbuckets.h> 24 24 25 25 #include <polys/operations/p_Mult_q.h> -
libpolys/polys/pDebug.cc
r20b794 r6bec87 23 23 // #define PDEBUG 2 24 24 25 //#include <polys/ p_polys.h>25 //#include <polys/monomials/p_polys.h> 26 26 #include <output.h> 27 27 #include <omalloc/omalloc.h> -
libpolys/polys/pInline0.h
r20b794 r6bec87 18 18 #endif 19 19 20 #include <polys/ p_polys.h>20 #include <polys/monomials/p_polys.h> 21 21 #include <polys/monomials/ring.h> 22 22 -
libpolys/polys/polys.cc
r20b794 r6bec87 12 12 #include <string.h> 13 13 #include <ctype.h> 14 #include < auxiliary.h>14 #include <misc/auxiliary.h> 15 15 // #include <polys/options.h> 16 16 #include <omalloc/omalloc.h> -
libpolys/polys/polys.h
r20b794 r6bec87 10 10 */ 11 11 12 #include <polys/ p_polys.h>12 #include <polys/monomials/p_polys.h> 13 13 14 14 /*************************************************************** … … 246 246 static inline long pTotaldegree(poly p) { return p_Totaldegree(p,currRing); } 247 247 #define pWTotaldegree(p) p_WTotaldegree(p,currRing) 248 #define pWDegree(p oly p) p_WDegree(p,currRing)248 #define pWDegree(p) p_WDegree(p,currRing) 249 249 250 250 /*-------------operations on polynomials:------------*/ -
libpolys/polys/polys0.cc
r20b794 r6bec87 13 13 #include <coeffs/numbers.h> 14 14 #include <polys/monomials/ring.h> 15 #include <polys/ p_polys.h>15 #include <polys/monomials/p_polys.h> 16 16 // #include <???/febase.h> 17 17 -
libpolys/polys/polys1.cc
r20b794 r6bec87 17 17 #include <omalloc/omalloc.h> 18 18 // #include <???/febase.h> 19 #include <polys/weight.h>20 #include <polys/intvec.h>19 // #include <???/weight.h> 20 // #include <???/intvec.h> 21 21 #include <polys/ext_fields/longalg.h> 22 22 #include <polys/monomials/ring.h> 23 #include <polys/ideals.h>23 // #include <???/ideals.h> 24 24 #include <polys/polys.h> 25 // #include "ipid.h"25 // #include "ipid.h" 26 26 #ifdef HAVE_FACTORY 27 #include <polys/clapsing.h>27 // #include <???/clapsing.h> 28 28 #endif 29 29 -
libpolys/polys/prCopy.cc
r20b794 r6bec87 9 9 #include "polys/config.h" 10 10 #include <omalloc/omalloc.h> 11 #include <polys/ p_polys.h>11 #include <polys/monomials/p_polys.h> 12 12 #include <coeffs/numbers.h> 13 13 // #include <polys/structs.h> … … 30 30 } 31 31 32 #include <polys/prCopy.inc>32 // #include <polys/prCopy.inc> 33 33 34 34 ///////////////////////////////////////////////////////////////////////// -
libpolys/polys/templates/p_Numbers.h
r20b794 r6bec87 39 39 #endif 40 40 41 #include < polys/modulop.h>41 #include <coeffs/modulop.h> 42 42 #define n_Copy_FieldZp(n, r) n 43 43 #define n_Delete_FieldZp(n, r) ((void)0) -
libpolys/polys/templates/p_Procs_Dynamic.cc
r20b794 r6bec87 18 18 #include <polys/p_MemAdd.h> 19 19 #include <polys/p_MemCopy.h> 20 #include <polys/kbuckets.h>21 #include < polys/dError.h>20 // #include <polys/kbuckets.h> 21 #include <reporter/reporter.h> 22 22 23 23 #ifdef HAVE_DL -
libpolys/polys/templates/p_Procs_Static.cc
r20b794 r6bec87 18 18 #include <polys/p_MemAdd.h> 19 19 #include <polys/p_MemCopy.h> 20 #include <polys/kbuckets.h>21 #include < polys/dError.h>20 // #include <polys/kbuckets.h> 21 #include <reporter/reporter.h> 22 22 23 23 BOOLEAN p_procs_dynamic = FALSE;
Note: See TracChangeset
for help on using the changeset viewer.