Changeset 383b2c8 in git
- Timestamp:
- Nov 21, 2011, 3:54:45 AM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- e7d5ef49a84d8f24b249712b963e0b89eb2a5645
- Parents:
- 0c7a63403979fb09523b1cb344c84512e6f7fdd1
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-21 03:54:45+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-23 01:23:09+01:00
- Files:
-
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r0c7a63 r383b2c8 70 70 MP/MP/MP_Config.h 71 71 MP/MP/h/values.h 72 Singular/mod2.h73 72 Singular/confdefs.h 74 73 Singular/Singular.rc -
Singular/pipeLink.cc
r0c7a63 r383b2c8 18 18 19 19 20 #include "kernel/mod2.h"20 #include <kernel/mod2.h> 21 21 22 22 #include "tok.h" -
Singular/ssiLink.cc
r0c7a63 r383b2c8 24 24 25 25 #include <kernel/mod2.h> 26 // #include "mod2.h"27 26 28 27 #include <Singular/tok.h> -
dyn_modules/bigintm/bigintm.cc
r0c7a63 r383b2c8 1 #include < Singular/mod2.h>1 #include <kernel/mod2.h> 2 2 3 3 #include <omalloc/omalloc.h> -
dyn_modules/bigintm/mod_main.cc
r0c7a63 r383b2c8 3 3 */ 4 4 5 #include < Singular/mod2.h>5 #include <kernel/mod2.h> 6 6 7 7 #include <Singular/blackbox.h> -
dyn_modules/eigenval.mod
r0c7a63 r383b2c8 7 7 8 8 #include <stdio.h> 9 #include < mod2.h>9 #include <kernel/mod2.h> 10 10 #include <tok.h> 11 11 #include <structs.h> -
dyn_modules/mega2003.mod
r0c7a63 r383b2c8 7 7 8 8 #include <stdio.h> 9 #include < mod2.h>9 #include <kernel/mod2.h> 10 10 #include <tok.h> 11 11 #include <polys.h> -
dyn_modules/modgen/misc.cc
r0c7a63 r383b2c8 546 546 fprintf(fp, "#include <sys/stat.h>"); 547 547 fprintf(fp, "\n"); 548 fprintf(fp, "#include < Singular/mod2.h>\n");548 fprintf(fp, "#include <kernel/mod2.h>\n"); 549 549 fprintf(fp, "#include <Singular/tok.h>\n"); 550 550 fprintf(fp, "#include <kernel/structs.h>\n"); -
dyn_modules/pcv.mod
r0c7a63 r383b2c8 7 7 8 8 #include <stdio.h> 9 #include < mod2.h>9 #include <kernel/mod2.h> 10 10 #include <tok.h> 11 11 #include <ipid.h> -
dyn_modules/python/CF_wrap.cc
r0c7a63 r383b2c8 1 1 #include <sstream> 2 2 #include <boost/python.hpp> 3 #include "mod2.h"3 #include <kernel/mod2.h> 4 4 #include "factory.h" 5 5 -
dyn_modules/python/ideal_wrap.cc
r0c7a63 r383b2c8 1 1 //$Id$ 2 2 #include <boost/python.hpp> 3 #include "mod2.h"3 #include <kernel/mod2.h> 4 4 #include "Poly.h" 5 5 #include "Ideal.h" -
dyn_modules/python/interpreter_support.cc
r0c7a63 r383b2c8 4 4 #include <boost/python.hpp> 5 5 #include <boost/python/suite/indexing/vector_indexing_suite.hpp> 6 #include "mod2.h"6 #include <kernel/mod2.h> 7 7 #include "subexpr.h" 8 8 #include "Poly.h" -
dyn_modules/python/intvec_wrap.cc
r0c7a63 r383b2c8 2 2 #include <boost/python.hpp> 3 3 #include <boost/python/suite/indexing/vector_indexing_suite.hpp> 4 #include "mod2.h"4 #include <kernel/mod2.h> 5 5 #include "intvec_wrap.h" 6 6 -
dyn_modules/python/intvec_wrap.h
r0c7a63 r383b2c8 3 3 #define INTVEC_WRAP_HEADER 4 4 #include <vector> 5 #include "mod2.h"5 #include <kernel/mod2.h> 6 6 #include "intvec.h" 7 7 #include "IIntvec.h" -
dyn_modules/python/mywrapper.cc
r0c7a63 r383b2c8 1 #include "mod2.h"1 #include <kernel/mod2.h> 2 2 #include "structs.h" 3 3 #include "subexpr.h" -
dyn_modules/python/number_wrap.cc
r0c7a63 r383b2c8 1 1 #include <boost/python.hpp> 2 #include "mod2.h"2 #include <kernel/mod2.h> 3 3 #include "Number.h" 4 4 #include "number_wrap.h" -
dyn_modules/python/playground.cc
r0c7a63 r383b2c8 1 1 #include <boost/python.hpp> 2 #include "mod2.h"2 #include <kernel/mod2.h> 3 3 #include "Poly.h" 4 4 #include "boost/python/numeric.hpp" -
dyn_modules/python/poly_wrap.cc
r0c7a63 r383b2c8 1 1 #include <boost/python.hpp> 2 #include "mod2.h"2 #include <kernel/mod2.h> 3 3 #include "Poly.h" 4 4 #include "ring_wrap.h" -
dyn_modules/python/poly_wrap.h
r0c7a63 r383b2c8 2 2 #define POLY_WRAP_HEADER 3 3 #include <boost/python.hpp> 4 #include "mod2.h"4 #include <kernel/mod2.h> 5 5 #include "Poly.h" 6 6 void export_poly(); -
dyn_modules/python/python.cc
r0c7a63 r383b2c8 17 17 #include <boost/python.hpp> 18 18 #include <Python.h> 19 #include < mod2.h>19 #include <kernel/mod2.h> 20 20 #include <tok.h> 21 21 #include <structs.h> -
dyn_modules/python/ring_wrap.cc
r0c7a63 r383b2c8 2 2 3 3 #include <boost/python.hpp> 4 #include "mod2.h"4 #include <kernel/mod2.h> 5 5 #include "ring_wrap.h" 6 6 #include "poly_wrap.h" -
dyn_modules/python/vector_wrap.cc
r0c7a63 r383b2c8 1 1 #include <boost/python.hpp> 2 #include "mod2.h"2 #include <kernel/mod2.h> 3 3 #include "Poly.h" 4 4 #include "vector_wrap.h" -
dyn_modules/python/wrapper.h
r0c7a63 r383b2c8 5 5 #include <boost/python.hpp> 6 6 #include <sstream> 7 #include "mod2.h"7 #include <kernel/mod2.h> 8 8 9 9 -
dyn_modules/syzextra/mod_main.cc
r0c7a63 r383b2c8 1 #include < Singular/mod2.h>1 #include <kernel/mod2.h> 2 2 3 3 #include <omalloc/omalloc.h> -
dyn_modules/tools/misc.cc
r0c7a63 r383b2c8 7 7 */ 8 8 9 #include < mod2.h>9 #include <kernel/mod2.h> 10 10 #include <febase.h> 11 11 #include <grammar.h> -
dyn_modules/tools/scanner.l
r0c7a63 r383b2c8 10 10 11 11 #include "modgen.h" 12 #include < mod2.h>12 #include <kernel/mod2.h> 13 13 #include <febase.h> 14 14 #include <grammar.h> -
libpolys/misc/auxiliary.h.in
r0c7a63 r383b2c8 211 211 212 212 #define PDEBUG 2 213 #include "auxiliary.h"213 #include <kernel/mod2.h> 214 214 ... 215 215 … … 256 256 #define OM_TRACK 5 257 257 #define OM_KEEP 1 258 #include "mod2.h"259 #include "omalloc.h"258 #include <kernel/mod2.h> 259 #include <omalloc/omalloc.h> 260 260 ensures that all memory allocs/free in this file are done with 261 261 OM_CHECK==3 and OM_TRACK==5, and that all addresses allocated/freed … … 284 284 #define OM_TRACK 5 285 285 #define OM_KEEP 1 286 #include "mod2.h"287 #include "omalloc.h"286 #include <kernel/mod2.h> 287 #include <omalloc/omalloc.h> 288 288 Under dynamic scope, do (e.g., from within the debugger): 289 289 om_Opts.MinCheck = 3; om_Opts.MinTrack = 5; omOpts.Keep = LONG_MAX; -
tests/Singular/test_iparith.cpp
r0c7a63 r383b2c8 5 5 6 6 #include "test_iparith.hpp" 7 #include < Singular/mod2.h>7 #include <kernel/mod2.h> 8 8 #include <Singular/grammar.h> 9 9 #include <Singular/ipid.h> -
tests/Singular/test_ipid.cpp
r0c7a63 r383b2c8 3 3 4 4 #include "test_ipid.hpp" 5 #include < Singular/mod2.h>5 #include <kernel/mod2.h> 6 6 #include <Singular/ipid.h> 7 7 -
tests/Singular/test_ipid.hpp
r0c7a63 r383b2c8 6 6 7 7 #include <Singular/utils.h> 8 #include < Singular/mod2.h>8 #include <kernel/mod2.h> 9 9 #include <kernel/structs.h> 10 10 #include <cppunit/extensions/HelperMacros.h>
Note: See TracChangeset
for help on using the changeset viewer.