Changeset a40080 in git
- Timestamp:
- Aug 25, 2011, 6:58:47 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 4a4e294c1281857cdf5d91f50cfa1c1f222226b1
- Parents:
- dbcf787c5d91a92e37ade8d0ac59dc712be5c207
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-25 18:58:47+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:30+01:00
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/cntrlc.cc
rdbcf787 ra40080 24 24 25 25 #include <kernel/polys.h> 26 27 #include <Singular/tok.h>28 #include <Singular/ipshell.h>29 26 #include <kernel/febase.h> 30 #include <Singular/cntrlc.h> 31 #include <Singular/feOpt.h> 32 #include <Singular/version.h> 33 #include <Singular/silink.h> 27 28 #include "tok.h" 29 #include "ipshell.h" 30 #include "cntrlc.h" 31 #include "feOpt.h" 32 #include "version.h" 33 #include "silink.h" 34 34 35 35 /* undef, if you don't want GDB to come up on error */ -
kernel/makefile
rdbcf787 ra40080 35 35 ## compiler and linker options 36 36 ## 37 LIBPOLYS_CFLAGS = -I.. -I../libpolys - DHAVE_SINGULAR -I/opt/local/include37 LIBPOLYS_CFLAGS = -I.. -I../libpolys -I/opt/local/include 38 38 LIBPOLYS_LIBS = -L../factory -L../omalloc -L../libpolys/misc -L../libpolys/reporter -L../libpolys/resources -L../libpolys/coeffs -L../libpolys/polys -lpolys -lcoeffs -lresources -lreporter -lmisc -lfactory -lomalloc -L/opt/local/lib -lntl -lgmp -ldl 39 39 LIBPOLYS_LIBSG = -L../factory -L../omalloc -L../libpolys/misc -L../libpolys/reporter -L../libpolys/resources -L../libpolys/coeffs -L../libpolys/polys -lpolys_g -lcoeffs_g -lresources_g -lreporter_g -lmisc_g -lfactory -lomalloc_g -L/opt/local/lib -lntl -lgmp -ldl -
libpolys/polys/monomials/p_polys.h
rdbcf787 ra40080 58 58 static inline number& p_GetCoeff(poly p, const ring r) 59 59 { 60 assume(p != NULL);61 60 assume(r != NULL); 62 return p ->coef;61 return pGetCoeff(p); 63 62 } 64 63 -
libpolys/polys/pDebug.cc
rdbcf787 ra40080 12 12 #ifndef PDEBUG_CC 13 13 #define PDEBUG_CC 14 14 15 #include <stdarg.h> 15 16 #include <stdio.h> … … 18 19 #include "config.h" 19 20 #include <misc/auxiliary.h> 21 22 20 23 #ifdef PDEBUG 21 24 … … 24 27 // #define PDEBUG 2 25 28 26 //#include <polys/monomials/p_polys.h>27 //#include <output.h>28 29 #include <omalloc/omalloc.h> 30 29 31 #include <polys/monomials/ring.h> 30 32 #include <polys/monomials/p_polys.h> 33 31 34 #include <coeffs/coeffs.h> 32 35 -
libpolys/polys/templates/p_Procs_Dynamic.cc
rdbcf787 ra40080 16 16 #endif 17 17 18 #include <reporter/reporter.h> 19 18 20 // #include <polys/structs.h> 19 21 #include <polys/monomials/ring.h> 20 22 #include <polys/monomials/p_polys.h> 23 24 #include <polys/kbuckets.h> 25 26 #include <polys/templates/p_Numbers.h> 27 21 28 #include <polys/templates/p_Procs.h> 22 #include <polys/templates/p_Numbers.h>23 29 #include <polys/templates/p_MemCmp.h> 24 30 #include <polys/templates/p_MemAdd.h> 25 31 #include <polys/templates/p_MemCopy.h> 26 #include <polys/kbuckets.h> 27 #include <reporter/reporter.h> 32 28 33 29 34 #ifdef HAVE_DL -
libpolys/tests/rings_test.h
rdbcf787 ra40080 56 56 { 57 57 rWrite(r); PrintLn(); 58 #ifdefRDEBUG58 #ifdef RDEBUG 59 59 rDebugPrint(r); PrintLn(); 60 60 #endif 61 61 } 62 62 static inline void Test(const ring)
Note: See TracChangeset
for help on using the changeset viewer.