Changeset 83192d in git
- Timestamp:
- Jun 21, 2013, 6:46:15 PM (10 years ago)
- Branches:
- (u'spielwiese', 'f6c3dc58b0df4bd712574325fe76d0626174ad97')
- Children:
- f88e07c79359c9680861c6db7a48478e2119bc60
- Parents:
- fe2e01ff5d2ee7a642d4a93d187fda61a3204007
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-06-21 18:46:15+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-07-09 22:24:33+02:00
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/countedref.cc
rfe2e01 r83192d 16 16 //***************************************************************************** 17 17 18 #ifdef HAVE_CONFIG_H 19 #include "config.h" 20 #endif /* HAVE_CONFIG_H */ 18 21 19 22 #include <kernel/mod2.h> 23 20 24 #include "ipid.h" 21 25 -
Singular/iplib.cc
rfe2e01 r83192d 6 6 */ 7 7 8 //#include <stdlib.h>9 #include <stdio.h>10 #include <string.h>11 #include <ctype.h>12 #include <sys/stat.h>13 14 8 #ifdef HAVE_CONFIG_H 15 9 #include "config.h" 16 10 #endif /* HAVE_CONFIG_H */ 11 17 12 #include <kernel/mod2.h> 13 18 14 #include <Singular/tok.h> 19 15 #include <misc/options.h> … … 25 21 #include <Singular/ipshell.h> 26 22 #include <Singular/lists.h> 23 24 //#include <stdlib.h> 25 #include <stdio.h> 26 #include <string.h> 27 #include <ctype.h> 28 #include <sys/stat.h> 29 27 30 28 31 #if SIZEOF_LONG == 8 -
Singular/links/semaphore.c
rfe2e01 r83192d 1 #ifdef HAVE_CONFIG_H 2 #include "config.h" 3 #endif /* HAVE_CONFIG_H */ 4 5 #include <kernel/mod2.h> 6 7 #ifdef HAVE_SIMPLEIPC 8 9 # include "simpleipc.h" 10 11 #include <Singular/si_signals.h> 12 1 13 #include <semaphore.h> 2 14 #include <fcntl.h> … … 6 18 #include <stdlib.h> 7 19 8 #include <kernel/mod2.h>9 #include <Singular/si_signals.h>10 11 #ifdef HAVE_SIMPLEIPC12 #include "simpleipc.h"13 20 14 21 // Not yet implemented: SYSV IPC Semaphores -
Singular/mod_lib.cc
rfe2e01 r83192d 1 #ifdef HAVE_CONFIG_H 2 #include "config.h" 3 #endif /* HAVE_CONFIG_H */ 4 5 #include <kernel/mod2.h> 6 7 #include <resources/feFopen.h> 8 #include <polys/mod_raw.h> 9 10 #include <Singular/mod_lib.h> 11 1 12 #include <stdio.h> 2 13 #include <string.h> … … 5 16 #include <errno.h> 6 17 7 #include <kernel/mod2.h>8 #include <resources/feFopen.h>9 #include <polys/mod_raw.h>10 #include <Singular/mod_lib.h>11 18 12 19 #define SI_BUILTIN_LIBSTR(name) (char*) #name ".so", -
Singular/mod_lib.h
rfe2e01 r83192d 2 2 #define MOD_LIB_H 3 3 4 #include <config.h> /* for EMBED_PYTHON */ 4 // #include <config.h> /* for EMBED_PYTHON */ 5 5 6 #include <polys/mod_raw.h> /* for lib_types */ 6 7 -
Singular/pyobject.cc
rfe2e01 r83192d 16 16 #include "config.h" 17 17 #endif /* HAVE_CONFIG_H */ 18 18 19 #include <kernel/mod2.h> 19 //#include <misc/auxiliary.h> 20 //#include "newstruct.h" 21 20 21 //#include <misc/auxiliary.h> 22 //#include "newstruct.h" 23 24 #include <misc/auxiliary.h> 25 26 #include <omalloc/omalloc.h> 27 28 #include <kernel/febase.h> 29 #include <misc/intvec.h> 30 31 #include <polys/mod_raw.h> 22 32 23 33 #include <Singular/ipid.h> … … 28 38 #include <Singular/newstruct.h> 29 39 30 31 #include <misc/auxiliary.h>32 33 #include <omalloc/omalloc.h>34 35 #include <kernel/febase.h>36 #include <misc/intvec.h>37 40 38 41 #include "subexpr.h" … … 720 723 (char*)#name, FALSE, name); 721 724 722 int pyobject_mod_init(SModulFunctions* psModulFunctions)725 int SI_MOD_INIT(pyobject)(SModulFunctions* psModulFunctions) 723 726 { 724 727 int tok = -1; … … 751 754 int mod_init(SModulFunctions* psModulFunctions) 752 755 { 753 return pyobject_mod_init(psModulFunctions);756 return SI_MOD_INIT(pyobject)(psModulFunctions); 754 757 } 755 758 } -
Singular/pyobject_setup.cc
rfe2e01 r83192d 16 16 #include "config.h" 17 17 #endif /* HAVE_CONFIG_H */ 18 18 19 #include <kernel/mod2.h> 19 20 #include <kernel/febase.h> … … 21 22 #include <Singular/ipshell.h> 22 23 23 #ifdef EMBED_PYTHON24 #include "pyobject.cc"25 #endif24 //#ifdef EMBED_PYTHON 25 //#include "pyobject.cc" 26 //#endif 26 27 27 28 static BOOLEAN pyobject_load() -
dyn_modules/bigintm/bigintm.cc
rfe2e01 r83192d 1 #ifdef HAVE_CONFIG_H 2 #include "config.h" 3 #endif /* HAVE_CONFIG_H */ 4 1 5 #include <kernel/mod2.h> 2 6 -
dyn_modules/bigintm/mod_main.cc
rfe2e01 r83192d 2 2 * Developer's BB tests 3 3 */ 4 5 #ifdef HAVE_CONFIG_H 6 #include "config.h" 7 #endif /* HAVE_CONFIG_H */ 4 8 5 9 #include <kernel/mod2.h> -
dyn_modules/syzextra/DebugPrint.cc
rfe2e01 r83192d 14 14 **/ 15 15 /*****************************************************************************/ 16 17 #ifdef HAVE_CONFIG_H 18 #include "config.h" 19 #endif /* HAVE_CONFIG_H */ 16 20 17 21 // include header file -
dyn_modules/syzextra/mod_main.cc
rfe2e01 r83192d 1 #ifdef HAVE_CONFIG_H 2 #include "config.h" 3 #endif /* HAVE_CONFIG_H */ 4 1 5 #include <kernel/mod2.h> 2 6 … … 31 35 #include "DebugPrint.h" 32 36 #include "myNF.h" 37 38 39 #include <Singular/mod_lib.h> 33 40 34 41 … … 998 1005 END_NAMESPACE 999 1006 1000 extern "C" 1001 { 1002 1003 int mod_init(SModulFunctions* psModulFunctions) 1007 1008 int SI_MOD_INIT(syzextra)(SModulFunctions* psModulFunctions) 1004 1009 { 1005 1010 #define ADD0(A,B,C,D,E) A(B, (char*)C, D, E) … … 1036 1041 return 0; 1037 1042 } 1038 } 1043 1044 #ifndef EMBED_PYTHON 1045 extern "C" { 1046 int mod_init(SModulFunctions* psModulFunctions) 1047 { 1048 return SI_MOD_INIT(syzextra)(psModulFunctions); 1049 } 1050 } 1051 #endif -
dyn_modules/syzextra/myNF.cc
rfe2e01 r83192d 15 15 /*****************************************************************************/ 16 16 17 #ifdef HAVE_CONFIG_H 18 #include "config.h" 19 #endif /* HAVE_CONFIG_H */ 20 17 21 // include header file 18 22 #include <kernel/mod2.h> -
kernel/mod2.h
rfe2e01 r83192d 9 9 #ifndef MOD2_H 10 10 #define MOD2_H 11 12 #ifndef CXXFLAGS 13 #error "PLEASE '#include \"config.h\"' using before mod2.h!!!" 14 #endif 15 11 16 12 17 #include <misc/auxiliary.h> -
kernel/syz2.cc
rfe2e01 r83192d 9 9 #include "config.h" 10 10 #endif /* HAVE_CONFIG_H */ 11 11 12 #include "mod2.h" 12 13 -
kernel/timer.cc
rfe2e01 r83192d 6 6 * ABSTRACT - get the computing time 7 7 */ 8 #ifdef HAVE_CONFIG_H 9 #include "config.h" 10 #endif /* HAVE_CONFIG_H */ 11 12 #include <kernel/mod2.h> 13 8 14 #include <sys/resource.h> 9 15 #include <time.h> 10 16 #include <sys/time.h> 11 17 #include <unistd.h> 12 13 #ifdef HAVE_CONFIG_H14 #include "config.h"15 #endif /* HAVE_CONFIG_H */16 #include <kernel/mod2.h>17 18 18 19 int timerv = 0; -
libpolys/coeffs/bigintmat.cc
rfe2e01 r83192d 5 5 * ABSTRACT: class bigintmat: matrizes of big integers 6 6 */ 7 8 #ifdef HAVE_CONFIG_H 9 #include "config.h" 10 #endif /* HAVE_CONFIG_H */ 11 7 12 #include "bigintmat.h" 8 13 -
libpolys/misc/int64vec.cc
rfe2e01 r83192d 5 5 * ABSTRACT: class int64vec: lists/vectors of int64 6 6 */ 7 8 #ifdef HAVE_CONFIG_H 9 #include "config.h" 10 #endif /* HAVE_CONFIG_H */ 11 12 7 13 #include <misc/int64vec.h> 8 14 #include <misc/intvec.h> -
libpolys/polys/PolyEnumerator.cc
rfe2e01 r83192d 1 #ifdef HAVE_CONFIG_H 2 #include "config.h" 3 #endif /* HAVE_CONFIG_H */ 4 5 #include <misc/auxiliary.h> 6 1 7 #include "PolyEnumerator.h" 2 8 -
libpolys/polys/weight.cc
rfe2e01 r83192d 7 7 */ 8 8 9 #ifdef HAVE_CONFIG_H 10 #include "config.h" 11 #endif /* HAVE_CONFIG_H */ 12 13 #include <misc/auxiliary.h> 14 15 #include <omalloc/omalloc.h> 16 17 #include <misc/options.h> 18 #include <misc/intvec.h> 19 20 #include <polys/monomials/ring.h> 21 #include <polys/monomials/p_polys.h> 22 23 #include <polys/weight.h> 24 9 25 #include <math.h> 10 //#include <kernel/mod2.h>11 #include <omalloc/omalloc.h>12 #include <misc/options.h>13 #include <polys/monomials/p_polys.h>14 #include <misc/intvec.h>15 //#include <kernel/febase.h>16 //#include <kernel/ideals.h>17 #include <polys/monomials/ring.h>18 #include <polys/weight.h>19 26 20 27 /*0 implementation*/ -
libpolys/polys/weight0.c
rfe2e01 r83192d 7 7 */ 8 8 9 #ifdef HAVE_CONFIG_H 10 #include "config.h" 11 #endif /* HAVE_CONFIG_H */ 12 13 #include <misc/auxiliary.h> 14 #include <omalloc/omalloc.h> 15 9 16 #include <math.h> 10 17 #include <string.h> 11 #include <misc/auxiliary.h>12 #include <omalloc/omalloc.h>13 18 14 19 double wFunctionalMora(int *degw, int *lpol, int npol,
Note: See TracChangeset
for help on using the changeset viewer.