Changeset b1dfaf in git
- Timestamp:
- Sep 17, 2010, 3:36:19 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 7194edf653bb54e050d46f0f8090b86b6ac49d1c
- Parents:
- dce1e3bbf2389a71a367d500df527054c5d4459f
- Files:
-
- 1 added
- 155 edited
Legend:
- Unmodified
- Added
- Removed
-
README
rdce1e3 rb1dfaf 186 186 187 187 GOOD LUCK and ENJOY! Your SINGULAR team. 188 189 190 Compiling SINGULAR with cmake 191 ============================= 192 193 compiling SINGULAR with cmake is currently experimental and 194 under development. 195 Use it at your own risk! Parents are liable for their children! -
Singular/Makefile.in
rdce1e3 rb1dfaf 18 18 ## various paths 19 19 ## 20 top_srcdir = @top_srcdir@ 20 21 srcdir = @srcdir@ 21 22 prefix = @prefix@ … … 52 53 PIPE = @PIPE@ 53 54 CFLAGS = @CFLAGS@ ${PIPE} 54 CXXFLAGS = @CXXFLAGS@ -I @prefix@ ${PIPE}55 CXXTEMPLFLAGS = @CXXTEMPLFLAGS@ -I @prefix@55 CXXFLAGS = @CXXFLAGS@ -I.. -I@prefix@ ${PIPE} 56 CXXTEMPLFLAGS = @CXXTEMPLFLAGS@ -I.. -I@prefix@ 56 57 ifneq ($(SINGUNAME),ix86-Win) 57 CPPFLAGS = -I${srcdir} -I.. /kernel-I@prefix@ @CPPFLAGS@58 CPPFLAGS = -I${srcdir} -I.. -I@prefix@ @CPPFLAGS@ 58 59 else 59 60 ## Dirs after @CPPFLAGS@ are for PySingular 60 CPPFLAGS = -I${srcdir} -I @prefix@ @CPPFLAGS@61 CPPFLAGS = -I${srcdir} -I.. -I@prefix@ @CPPFLAGS@ 61 62 ## -I/usr/include/python2.4 -I/usr/local/include -I../modules/python 62 63 endif … … 64 65 LDFLAGS2 = @LDFLAGS@ 65 66 ifneq ($(SINGUNAME),ix86-Win) 66 LDFLAGS = -L@prefix@/kernel - lkernel @LDFLAGS@67 LDFLAGSG = -L@prefix@/kernel - lkernel_g @LDFLAGS@68 LDFLAGSP = -L@prefix@/kernel - lkernel_p @LDFLAGS@67 LDFLAGS = -L@prefix@/kernel -L../kernel -lkernel @LDFLAGS@ 68 LDFLAGSG = -L@prefix@/kernel -L../kernel -lkernel_g @LDFLAGS@ 69 LDFLAGSP = -L@prefix@/kernel -L../kernel -lkernel_p @LDFLAGS@ 69 70 else 70 71 ## -L/usr/local/lib -L@prefix@/modules/python --> PySingular -
Singular/Minor.cc
rdce1e3 rb1dfaf 1 #include < Singular/mod2.h>1 #include <kernel/mod2.h> 2 2 #include <kernel/structs.h> 3 3 #include <kernel/polys.h> -
Singular/MinorInterface.cc
rdce1e3 rb1dfaf 1 #include < Singular/mod2.h>1 #include <kernel/mod2.h> 2 2 #include <kernel/structs.h> 3 3 #include <kernel/polys.h> -
Singular/MinorProcessor.cc
rdce1e3 rb1dfaf 1 #include < Singular/mod2.h>1 #include <kernel/mod2.h> 2 2 #include <kernel/structs.h> 3 3 #include <kernel/polys.h> … … 209 209 { 210 210 /* This is a non-recursive implementation. */ 211 assert( i >= 0 && j >= 0 && i >= j);211 assert( (i >= 0) && (j >= 0) && (i >= j)); 212 212 if (j == 0 || i == j) return 1; 213 213 int result = 1; -
Singular/attrib.cc
rdce1e3 rb1dfaf 14 14 #include <unistd.h> 15 15 16 #include < Singular/mod2.h>17 #include <omalloc .h>16 #include <kernel/mod2.h> 17 #include <omalloc/omalloc.h> 18 18 #include <kernel/options.h> 19 19 #include <Singular/tok.h> -
Singular/calcSVD.cc
rdce1e3 rb1dfaf 1 1 #include <stdio.h> 2 #include < Singular/mod2.h>2 #include <kernel/mod2.h> 3 3 4 4 #ifdef HAVE_SVD -
Singular/claptmpl.cc
rdce1e3 rb1dfaf 8 8 */ 9 9 10 #include < Singular/mod2.h>10 #include <kernel/mod2.h> 11 11 //#include <vector> 12 12 //using namespace std; 13 13 #ifdef HAVE_FACTORY 14 14 #define SINGULAR 1 15 #include <factory .h>16 #include < templates/ftmpl_list.cc>15 #include <factory/factory.h> 16 #include <factory/templates/ftmpl_list.cc> 17 17 #include <kernel/fglm.h> 18 18 19 #include < templates/ftmpl_array.cc>20 #include < templates/ftmpl_factor.cc>21 #include < templates/ftmpl_functions.h>22 #include < templates/ftmpl_matrix.cc>19 #include <factory/templates/ftmpl_array.cc> 20 #include <factory/templates/ftmpl_factor.cc> 21 #include <factory/templates/ftmpl_functions.h> 22 #include <factory/templates/ftmpl_matrix.cc> 23 23 24 24 template class Factor<CanonicalForm>; … … 62 62 // place here your own template stuff, not instantiated by factory 63 63 // libfac: 64 #include <factor.h>64 #include <libfac/factor.h> 65 65 66 66 // class.h: -
Singular/cntrlc.cc
rdce1e3 rb1dfaf 18 18 #include <sys/types.h> 19 19 #include <sys/wait.h> 20 #include < Singular/mod2.h>21 #include <omalloc .h>20 #include <kernel/mod2.h> 21 #include <omalloc/omalloc.h> 22 22 #include <Singular/tok.h> 23 23 #include <Singular/ipshell.h> -
Singular/distrib.h
rdce1e3 rb1dfaf 1 #undef MAKE_DISTRIBUTION 1 /* 2 3 */ 4 5 /* define this if we pack a distribution */ 6 /* #undef MAKE_DISTRIBUTION */ -
Singular/eigenval_ip.cc
rdce1e3 rb1dfaf 7 7 */ 8 8 9 #include < Singular/mod2.h>9 #include <kernel/mod2.h> 10 10 11 11 #ifdef HAVE_EIGENVAL -
Singular/emacs.cc
rdce1e3 rb1dfaf 19 19 #include <windows.h> 20 20 #endif 21 #include < Singular/mod2.h>21 #include <kernel/mod2.h> 22 22 #include <Singular/version.h> 23 #include <omalloc .h>23 #include <omalloc/omalloc.h> 24 24 25 25 #if !defined(TSINGULAR) && !defined(ESINGULAR) -
Singular/extra.cc
rdce1e3 rb1dfaf 14 14 #include <ctype.h> 15 15 #include <signal.h> 16 #include < Singular/mod2.h>16 #include <kernel/mod2.h> 17 17 #include <misc_ip.h> 18 18 … … 96 96 #endif 97 97 98 #include <kernel/sca.h> 98 99 #ifdef HAVE_PLURAL 99 100 #include <kernel/ring.h> 100 #include <kernel/ring.h>101 #include <kernel/sca.h>102 101 #include <kernel/ncSAMult.h> // for CMultiplier etc classes 103 102 #include <Singular/ipconv.h> … … 123 122 #ifdef HAVE_FACTORY 124 123 #define SI_DONT_HAVE_GLOBAL_VARS 125 #include <kernel/clapsing.h>126 124 #include <kernel/clapconv.h> 127 125 #include <kernel/kstdfac.h> 128 126 #endif 127 #include <kernel/clapsing.h> 129 128 130 129 #include <Singular/silink.h> … … 1999 1998 2000 1999 2001 2000 #ifdef HAVE_EXTENDED_SYSTEM 2002 2001 // You can put your own system calls here 2003 #include <kernel/fglmcomb.cc>2004 #include <kernel/fglm.h>2005 #ifdef HAVE_NEWTON2006 #include <hc_newton.h>2007 #endif2008 #include <mpsr.h>2009 #include <kernel/mod_raw.h>2010 #include <kernel/ring.h>2011 #include <kernel/shiftgb.h>2002 # include <kernel/fglmcomb.cc> 2003 # include <kernel/fglm.h> 2004 # ifdef HAVE_NEWTON 2005 # include <hc_newton.h> 2006 # endif 2007 # include <mpsr.h> 2008 # include <kernel/mod_raw.h> 2009 # include <kernel/ring.h> 2010 # include <kernel/shiftgb.h> 2012 2011 2013 2012 static BOOLEAN jjEXTENDED_SYSTEM(leftv res, leftv h) … … 3296 3295 if (h==NULL) 3297 3296 { 3297 #ifdef HAVE_PLURAL 3298 3298 Print("NTL_0:%d (use NTL for gcd of polynomials in char 0)\n",isOn(SW_USE_NTL_GCD_0)); 3299 3299 Print("NTL_p:%d (use NTL for gcd of polynomials in char p)\n",isOn(SW_USE_NTL_GCD_P)); … … 3304 3304 Print("QGCD:%d (use QGCD for gcd of polynomials in alg. ext.)\n",isOn(SW_USE_QGCD)); 3305 3305 Print("FGCD:%d (use fieldGCD for gcd of polynomials in Z/p)\n",isOn(SW_USE_fieldGCD)); 3306 #endif 3306 3307 Print("homog:%d (use homog. test for factorization of polynomials)\n",singular_homog_flag); 3307 3308 return FALSE; … … 3313 3314 int d=(int)(long)h->next->Data(); 3314 3315 char *s=(char *)h->Data(); 3316 #ifdef HAVE_PLURAL 3315 3317 if (strcmp(s,"NTL_0")==0) { if (d) On(SW_USE_NTL_GCD_0); else Off(SW_USE_NTL_GCD_0); } else 3316 3318 if (strcmp(s,"NTL_p")==0) { if (d) On(SW_USE_NTL_GCD_P); else Off(SW_USE_NTL_GCD_P); } else … … 3321 3323 if (strcmp(s,"QGCD")==0) { if (d) On(SW_USE_QGCD); else Off(SW_USE_QGCD); } else 3322 3324 if (strcmp(s,"FGCD")==0) { if (d) On(SW_USE_fieldGCD); else Off(SW_USE_fieldGCD); } else 3325 #endif 3323 3326 if (strcmp(s,"homog")==0) { if (d) singular_homog_flag=1; else singular_homog_flag=0; } else 3324 3327 return TRUE; -
Singular/feOpt.cc
rdce1e3 rb1dfaf 286 286 // "error-string" on error 287 287 #if !defined(ESINGULAR) && !defined(TSINGULAR) 288 #include <omalloc .h>288 #include <omalloc/omalloc.h> 289 289 #include <kernel/febase.h> 290 290 #include <Singular/ipshell.h> … … 296 296 #ifdef HAVE_FACTORY 297 297 #define SI_DONT_HAVE_GLOBAL_VARS 298 #include <factory .h>298 #include <factory/factory.h> 299 299 #endif 300 300 #include <errno.h> -
Singular/fehelp.cc
rdce1e3 rb1dfaf 14 14 #include <time.h> 15 15 16 #include < Singular/mod2.h>17 #include < mylimits.h>16 #include <kernel/mod2.h> 17 #include <omalloc/mylimits.h> 18 18 #include <Singular/tok.h> 19 #include <omalloc .h>19 #include <omalloc/omalloc.h> 20 20 #include <kernel/febase.h> 21 21 #include <Singular/ipid.h> -
Singular/fglm.cc
rdce1e3 rb1dfaf 17 17 */ 18 18 19 #include < Singular/mod2.h>19 #include <kernel/mod2.h> 20 20 21 21 #ifdef HAVE_FACTORY … … 29 29 #include <kernel/febase.h> 30 30 #include <kernel/maps.h> 31 #include <omalloc .h>31 #include <omalloc/omalloc.h> 32 32 #include <kernel/kstd1.h> 33 33 #include <kernel/fglm.h> -
Singular/gms.cc
rdce1e3 rb1dfaf 7 7 */ 8 8 9 #include < Singular/mod2.h>9 #include <kernel/mod2.h> 10 10 11 11 #ifdef HAVE_GMS -
Singular/grammar.cc
rdce1e3 rb1dfaf 334 334 #include <string.h> 335 335 336 #include < Singular/mod2.h>337 #include < mylimits.h>338 #include <omalloc .h>336 #include <kernel/mod2.h> 337 #include <omalloc/mylimits.h> 338 #include <omalloc/omalloc.h> 339 339 #include <Singular/tok.h> 340 340 #include <kernel/options.h> -
Singular/grammar.y
rdce1e3 rb1dfaf 14 14 #include <string.h> 15 15 16 #include < Singular/mod2.h>17 #include < mylimits.h>18 #include <omalloc .h>16 #include <kernel/mod2.h> 17 #include <omalloc/mylimits.h> 18 #include <omalloc/omalloc.h> 19 19 #include <Singular/tok.h> 20 20 #include <kernel/options.h> … … 418 418 if (inerror) 419 419 { 420 /* bison failed here 420 421 if ((inerror!=3) && ($1.i<UMINUS) && ($1.i>' ')) 421 422 { … … 426 427 Print(" error at token `%s`\n",iiTwoOps($1.i)); 427 428 } 429 */ 428 430 } 429 431 if (!errorreported) WerrorS("...parse error"); -
Singular/interpolation.cc
rdce1e3 rb1dfaf 4 4 /* $Id$ */ 5 5 6 #include < Singular/mod2.h>6 #include <kernel/mod2.h> 7 7 #include <kernel/options.h> 8 8 #include <kernel/febase.h> … … 15 15 #include <kernel/ring.h> 16 16 #ifdef HAVE_FACTORY 17 # include <factory.h>18 #endif 17 # include <factory/factory.h> 18 #endif /* HAVE_FACTORY */ 19 19 20 20 //memory management -
Singular/iparith.cc
rdce1e3 rb1dfaf 15 15 #include <unistd.h> 16 16 17 #include < Singular/mod2.h>17 #include <kernel/mod2.h> 18 18 #include <Singular/tok.h> 19 19 #include <kernel/options.h> 20 20 #include <Singular/ipid.h> 21 21 #include <kernel/intvec.h> 22 #include <omalloc .h>22 #include <omalloc/omalloc.h> 23 23 #include <kernel/polys.h> 24 24 #include <kernel/febase.h> … … 59 59 #include <Singular/misc_ip.h> 60 60 #ifdef HAVE_FACTORY 61 # include <kernel/clapsing.h>62 # include <kernel/kstdfac.h>61 # include <kernel/clapsing.h> 62 # include <kernel/kstdfac.h> 63 63 #endif /* HAVE_FACTORY */ 64 64 #ifdef HAVE_FACTORY 65 # include <kernel/fglm.h>65 # include <kernel/fglm.h> 66 66 #endif /* HAVE_FACTORY */ 67 67 #define HAVE_INTERPOLATION 68 68 #ifdef HAVE_INTERPOLATION 69 # include <Singular/interpolation.h>69 # include <Singular/interpolation.h> 70 70 #endif 71 71 … … 9030 9030 /*-------------------------------------------------------------------*/ 9031 9031 #else 9032 #include < Singular/iparith.inc>9032 #include <iparith.inc> 9033 9033 #endif 9034 9034 -
Singular/ipassign.cc
rdce1e3 rb1dfaf 13 13 #include <ctype.h> 14 14 15 #include < Singular/mod2.h>15 #include <kernel/mod2.h> 16 16 #include <Singular/tok.h> 17 17 #include <kernel/options.h> … … 19 19 #include <kernel/idrec.h> 20 20 #include <kernel/intvec.h> 21 #include <omalloc .h>21 #include <omalloc/omalloc.h> 22 22 #include <kernel/febase.h> 23 23 #include <kernel/polys.h> -
Singular/ipconv.cc
rdce1e3 rb1dfaf 7 7 */ 8 8 9 #include < Singular/mod2.h>9 #include <kernel/mod2.h> 10 10 #include <Singular/tok.h> 11 11 #include <Singular/ipid.h> 12 12 #include <kernel/intvec.h> 13 13 #include <kernel/options.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/febase.h> 16 16 #include <kernel/polys.h> -
Singular/ipid.cc
rdce1e3 rb1dfaf 10 10 #include <string.h> 11 11 12 #include < Singular/mod2.h>12 #include <kernel/mod2.h> 13 13 #include <Singular/static.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <Singular/tok.h> 16 16 #include <kernel/options.h> -
Singular/iplib.cc
rdce1e3 rb1dfaf 13 13 #include <sys/stat.h> 14 14 15 #include < Singular/mod2.h>15 #include <kernel/mod2.h> 16 16 #include <Singular/static.h> 17 17 #include <Singular/tok.h> 18 18 #include <kernel/options.h> 19 19 #include <Singular/ipid.h> 20 #include <omalloc .h>20 #include <omalloc/omalloc.h> 21 21 #include <kernel/febase.h> 22 22 #include <kernel/ring.h> -
Singular/ipprint.cc
rdce1e3 rb1dfaf 7 7 */ 8 8 9 #include < Singular/mod2.h>9 #include <kernel/mod2.h> 10 10 #include <Singular/tok.h> 11 11 #include <Singular/ipid.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/febase.h> 14 14 #include <kernel/polys.h> -
Singular/ipshell.cc
rdce1e3 rb1dfaf 13 13 #include <math.h> 14 14 15 #include < Singular/mod2.h>15 #include <kernel/mod2.h> 16 16 #include <Singular/tok.h> 17 17 #include <kernel/options.h> 18 18 #include <Singular/ipid.h> 19 19 #include <kernel/intvec.h> 20 #include <omalloc .h>20 #include <omalloc/omalloc.h> 21 21 #include <kernel/febase.h> 22 22 #include <kernel/polys.h> … … 50 50 #ifdef HAVE_FACTORY 51 51 #define SI_DONT_HAVE_GLOBAL_VARS 52 #include <factory .h>52 #include <factory/factory.h> 53 53 #endif 54 54 -
Singular/janet.cc
rdce1e3 rb1dfaf 4 4 #include <time.h> 5 5 6 #include < Singular/mod2.h>7 #include <omalloc .h>6 #include <kernel/mod2.h> 7 #include <omalloc/omalloc.h> 8 8 #include <kernel/polys.h> 9 9 #include <kernel/numbers.h> -
Singular/libparse.l
rdce1e3 rb1dfaf 8 8 #include <stdlib.h> 9 9 #include <ctype.h> 10 #include < Singular/mod2.h>10 #include <kernel/mod2.h> 11 11 #ifdef STANDALONE_PARSER 12 12 #include <Singular/utils.h> … … 22 22 #include <kernel/options.h> 23 23 #include <kernel/febase.h> 24 #include <omalloc .h>24 #include <omalloc/omalloc.h> 25 25 #endif 26 26 #include <Singular/libparse.h> … … 52 52 53 53 char *yylp_buffer_start; 54 #ifndef NEW_FLEX 54 55 int yylplineno = 1; 56 #endif /* NEW_FLEX */ 55 57 int lpverbose = 0, check = 0; 56 58 int texinfo_out = 0; … … 845 847 quote = 0; 846 848 yy_init=1; 847 yy_delete_buffer( yy_current_buffer);849 yy_delete_buffer(YY_CURRENT_BUFFER); 848 850 } 849 851 -
Singular/libsingular.h
rdce1e3 rb1dfaf 11 11 #include <kernel/febase.h> 12 12 #include <kernel/ring.h> 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <Singular/singular/clapsing.h> 15 15 #include <kernel/maps.h> -
Singular/lists.cc
rdce1e3 rb1dfaf 9 9 #define LISTS_CC 10 10 11 #include < Singular/mod2.h>11 #include <kernel/mod2.h> 12 12 #include <Singular/tok.h> 13 13 #include <kernel/febase.h> -
Singular/lists.h
rdce1e3 rb1dfaf 8 8 * ABSTRACT: handling of the list type 9 9 */ 10 #include <omalloc .h>10 #include <omalloc/omalloc.h> 11 11 #include <kernel/structs.h> 12 12 #include <kernel/ideals.h> -
Singular/maps_ip.cc
rdce1e3 rb1dfaf 7 7 */ 8 8 9 #include < Singular/mod2.h>9 #include <kernel/mod2.h> 10 10 #include <Singular/tok.h> 11 11 #include <kernel/febase.h> … … 15 15 #include <kernel/ideals.h> 16 16 #include <kernel/matpol.h> 17 #include <omalloc .h>17 #include <omalloc/omalloc.h> 18 18 #include <kernel/kstd1.h> 19 19 #include <kernel/longalg.h> -
Singular/misc_ip.cc
rdce1e3 rb1dfaf 17 17 18 18 // include header files 19 #include < Singular/mod2.h>19 #include <kernel/mod2.h> 20 20 #include <Singular/lists.h> 21 21 #include <kernel/longrat.h> … … 283 283 #include <time.h> 284 284 285 #include < mylimits.h>286 #include <omalloc .h>285 #include <omalloc/mylimits.h> 286 #include <omalloc/omalloc.h> 287 287 #include <kernel/options.h> 288 288 #include <kernel/febase.h> … … 316 316 317 317 #ifdef HAVE_FACTORY 318 #include <factory .h>318 #include <factory/factory.h> 319 319 // libfac: 320 320 extern const char * libfac_version; -
Singular/mpsr.h
rdce1e3 rb1dfaf 23 23 #include <kernel/structs.h> 24 24 #include "subexpr.h" 25 #include <omalloc .h>25 #include <omalloc/omalloc.h> 26 26 #include <kernel/polys.h> 27 27 #include <kernel/numbers.h> -
Singular/mpsr_Error.cc
rdce1e3 rb1dfaf 13 13 * 14 14 ***************************************************************/ 15 #include < Singular/mod2.h>15 #include <kernel/mod2.h> 16 16 17 17 #ifdef HAVE_MPSR -
Singular/mpsr_Get.cc
rdce1e3 rb1dfaf 14 14 ***************************************************************/ 15 15 16 #include < Singular/mod2.h>16 #include <kernel/mod2.h> 17 17 18 18 #ifdef HAVE_MPSR -
Singular/mpsr_GetMisc.cc
rdce1e3 rb1dfaf 14 14 ***************************************************************/ 15 15 16 #include < Singular/mod2.h>16 #include <kernel/mod2.h> 17 17 18 18 #ifdef HAVE_MPSR -
Singular/mpsr_GetPoly.cc
rdce1e3 rb1dfaf 13 13 * 14 14 ***************************************************************/ 15 #include < Singular/mod2.h>15 #include <kernel/mod2.h> 16 16 17 17 #ifdef HAVE_MPSR … … 21 21 22 22 #include <kernel/si_gmp.h> 23 #include <omalloc .h>23 #include <omalloc/omalloc.h> 24 24 #include <Singular/tok.h> 25 25 #include <Singular/ipid.h> -
Singular/mpsr_Put.cc
rdce1e3 rb1dfaf 15 15 * 16 16 ***************************************************************/ 17 #include < Singular/mod2.h>17 #include <kernel/mod2.h> 18 18 19 19 #ifdef HAVE_MPSR -
Singular/mpsr_PutPoly.cc
rdce1e3 rb1dfaf 16 16 * 17 17 ***************************************************************/ 18 #include < Singular/mod2.h>18 #include <kernel/mod2.h> 19 19 20 20 #ifdef HAVE_MPSR … … 23 23 #include <Singular/mpsr_Tok.h> 24 24 #include "kernel/longalg.h" 25 #include <omalloc .h>25 #include <omalloc/omalloc.h> 26 26 #include <kernel/ring.h> 27 27 #include <kernel/polys.h> -
Singular/mpsr_Tok.cc
rdce1e3 rb1dfaf 19 19 #include <unistd.h> 20 20 21 #include "mod2.h"21 #include <kernel/mod2.h> 22 22 23 23 #ifdef HAVE_MPSR 24 24 25 #include "kernel/febase.h"26 #include "tok.h"25 #include <kernel/febase.h> 26 #include <tok.h> 27 27 28 28 #include <Singular/mpsr.h> -
Singular/mpsr_sl.cc
rdce1e3 rb1dfaf 10 10 *******************************************************************/ 11 11 12 #include < Singular/mod2.h>12 #include <kernel/mod2.h> 13 13 14 14 #ifdef HAVE_MPSR … … 23 23 #include <Singular/mpsr.h> 24 24 #include <Singular/tok.h> 25 #include <omalloc .h>25 #include <omalloc/omalloc.h> 26 26 #include <kernel/febase.h> 27 27 #include <Singular/subexpr.h> -
Singular/ndbm.cc
rdce1e3 rb1dfaf 15 15 //**************************************************************************/ 16 16 17 #include < Singular/mod2.h>17 #include <kernel/mod2.h> 18 18 #ifdef HAVE_DBM 19 19 #ifndef HPUX_9 -
Singular/omSingularConfig.h
rdce1e3 rb1dfaf 1 1 /******************************************************************* 2 2 * File: omSingularConfig.h 3 #include <omalloc .h>3 #include <omalloc/omalloc.h> 4 4 * This file is inlcuded by omDefaultConfig.h, i.e., at the the time 5 #include <omalloc .h>6 #include <omalloc .h>5 #include <omalloc/omalloc.h> 6 #include <omalloc/omalloc.h> 7 7 * rebuilt the library). 8 8 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) -
Singular/pcv.cc
rdce1e3 rb1dfaf 7 7 */ 8 8 9 #include < Singular/mod2.h>9 #include <kernel/mod2.h> 10 10 11 11 #ifdef HAVE_PCV -
Singular/pipeLink.cc
rdce1e3 rb1dfaf 22 22 #include "tok.h" 23 23 #include "ipid.h" 24 #include <omalloc .h>24 #include <omalloc/omalloc.h> 25 25 #include "subexpr.h" 26 26 #include "silink.h" -
Singular/scanner.cc
rdce1e3 rb1dfaf 562 562 #include <ctype.h> 563 563 564 #include < Singular/mod2.h>565 #include <omalloc .h>564 #include <kernel/mod2.h> 565 #include <omalloc/omalloc.h> 566 566 #include <Singular/tok.h> 567 567 #include <Singular/stype.h> -
Singular/scanner.l
rdce1e3 rb1dfaf 9 9 #include <ctype.h> 10 10 11 #include < Singular/mod2.h>12 #include <omalloc .h>11 #include <kernel/mod2.h> 12 #include <omalloc/omalloc.h> 13 13 #include <Singular/tok.h> 14 14 #include <Singular/stype.h> 15 #include <Singular/ipshell.h ?15 #include <Singular/ipshell.h> 16 16 #include <kernel/febase.h> 17 17 18 18 int feReadLine(char* b, int l); 19 19 #define ALLOC(a) omAlloc((a)) 20 #ifndef NEW_FLEX 20 21 int yylineno = 0; 22 #endif /* NEW_LEX */ 21 23 int blocknest = 0; 22 24 extern char * yytext; … … 367 369 void * myynewbuffer() 368 370 { 369 void * oldb = yy_current_buffer;371 void * oldb = YY_CURRENT_BUFFER; 370 372 yy_switch_to_buffer(yy_create_buffer(NULL, YY_BUF_SIZE)); 371 373 return oldb; … … 374 376 void myyoldbuffer(void * oldb) 375 377 { 376 yy_delete_buffer( yy_current_buffer);378 yy_delete_buffer(YY_CURRENT_BUFFER); 377 379 yy_switch_to_buffer((YY_BUFFER_STATE)oldb); 378 380 //yy_flush_buffer((YY_BUFFER_STATE)oldb); -
Singular/sdb.cc
rdce1e3 rb1dfaf 9 9 #include <unistd.h> // for unlink,fork,execlp,getpid 10 10 #include <sys/wait.h> // for wait 11 #include < Singular/mod2.h>11 #include <kernel/mod2.h> 12 12 #include <Singular/tok.h> 13 13 #include <kernel/options.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/febase.h> 16 16 #include <Singular/ipshell.h> -
Singular/silink.cc
rdce1e3 rb1dfaf 14 14 #include <unistd.h> 15 15 16 #include < Singular/mod2.h>16 #include <kernel/mod2.h> 17 17 #include <Singular/tok.h> 18 18 #include <kernel/options.h> 19 #include <omalloc .h>19 #include <omalloc/omalloc.h> 20 20 #include <kernel/febase.h> 21 21 #include <Singular/subexpr.h> -
Singular/silink.h
rdce1e3 rb1dfaf 85 85 } 86 86 87 #include <omalloc .h>87 #include <omalloc/omalloc.h> 88 88 inline char* slString(si_link l) 89 89 { -
Singular/sing_dbm.cc
rdce1e3 rb1dfaf 17 17 # include <errno.h> 18 18 19 #include < Singular/mod2.h>19 #include <kernel/mod2.h> 20 20 21 21 #ifdef HAVE_DBM … … 23 23 # include <Singular/tok.h> 24 24 # include <kernel/febase.h> 25 #include <omalloc .h>25 #include <omalloc/omalloc.h> 26 26 # include <Singular/ipid.h> 27 27 # include <Singular/silink.h> -
Singular/sing_win.cc
rdce1e3 rb1dfaf 8 8 */ 9 9 10 #include < Singular/mod2.h>10 #include <kernel/mod2.h> 11 11 #ifdef ix86_Win 12 12 #include <windows.h> -
Singular/slInit_Dynamic.cc
rdce1e3 rb1dfaf 15 15 * 16 16 ***************************************************************/ 17 #include < Singular/mod2.h>17 #include <kernel/mod2.h> 18 18 #include <Singular/silink.h> 19 19 #include <Singular/slInit.h> -
Singular/slInit_Static.cc
rdce1e3 rb1dfaf 15 15 * 16 16 ***************************************************************/ 17 #include < Singular/mod2.h>17 #include <kernel/mod2.h> 18 18 #include <Singular/silink.h> 19 19 #include <Singular/slInit.h> -
Singular/ssiLink.cc
rdce1e3 rb1dfaf 25 25 #include "tok.h" 26 26 #include "ipid.h" 27 #include <omalloc .h>27 #include <omalloc/omalloc.h> 28 28 #include <kernel/ring.h> 29 29 #include <kernel/matpol.h> -
Singular/subexpr.cc
rdce1e3 rb1dfaf 13 13 #include <unistd.h> 14 14 15 #include < Singular/mod2.h>15 #include <kernel/mod2.h> 16 16 #include <kernel/intvec.h> 17 17 #include <Singular/tok.h> … … 19 19 #include <Singular/ipid.h> 20 20 #include <kernel/intvec.h> 21 #include <omalloc .h>21 #include <omalloc/omalloc.h> 22 22 #include <kernel/febase.h> 23 23 #include <kernel/polys.h> -
Singular/tesths.cc
rdce1e3 rb1dfaf 15 15 #include <time.h> 16 16 #include <errno.h> 17 #include < Singular/mod2.h>17 #include <kernel/mod2.h> 18 18 #include <Singular/tok.h> 19 19 #include <kernel/options.h> … … 21 21 #include <kernel/febase.h> 22 22 #include <Singular/cntrlc.h> 23 #include <omalloc .h>23 #include <omalloc/omalloc.h> 24 24 #include <Singular/silink.h> 25 25 #include <Singular/ipid.h> … … 35 35 #ifdef HAVE_FACTORY 36 36 #define SI_DONT_HAVE_GLOBAL_VARS 37 #include <factory .h>37 #include <factory/factory.h> 38 38 #endif 39 39 … … 68 68 /* in mmstd.c, for some architectures freeSize() unconditionally uses the *system* free() */ 69 69 /* sage ticket 5344: http://trac.sagemath.org/sage_trac/ticket/5344 */ 70 #include <omalloc .h>70 #include <omalloc/omalloc.h> 71 71 /* do not rely on the default in Singular as libsingular may be different */ 72 72 mp_set_memory_functions(omMallocFunc,omReallocSizeFunc,omFreeSizeFunc); -
Singular/walk.cc
rdce1e3 rb1dfaf 47 47 48 48 49 #include < Singular/mod2.h>49 #include <kernel/mod2.h> 50 50 #include <kernel/intvec.h> 51 51 #include <Singular/cntrlc.h> 52 52 #include <kernel/options.h> 53 #include <omalloc .h>53 #include <omalloc/omalloc.h> 54 54 #include <kernel/febase.h> 55 55 #include <Singular/ipshell.h> -
Singular/walk_ip.cc
rdce1e3 rb1dfaf 13 13 #include <math.h> 14 14 15 #include < Singular/mod2.h>15 #include <kernel/mod2.h> 16 16 #include <Singular/tok.h> 17 17 #include <kernel/options.h> 18 18 #include <Singular/ipid.h> 19 19 #include <kernel/intvec.h> 20 #include <omalloc .h>20 #include <omalloc/omalloc.h> 21 21 #include <kernel/febase.h> 22 22 #include <kernel/polys.h> -
Singular/wrapper.cc
rdce1e3 rb1dfaf 1 1 #include <string.h> 2 #include < Singular/mod2.h>2 #include <kernel/mod2.h> 3 3 #include <kernel/febase.h> 4 4 #include <kernel/polys.h> -
factory/GNUmakefile.in
rdce1e3 rb1dfaf 97 97 # flags to translate library c files 98 98 LIBCFLAGS = $(WARNFLAGS) \ 99 -I. -I $(srcdir)-I$(includedir) \99 -I. -I.. -I$(srcdir) -I${prefix} -I$(includedir) \ 100 100 $(DEFS) $(CPPFLAGS) $(CFLAGS) 101 101 102 102 # flags to translate library c++ files 103 103 LIBCXXFLAGS = $(WARNFLAGS) -fno-implicit-templates \ 104 -I. -I $(srcdir)-I$(includedir) \104 -I. -I.. -I$(srcdir) -I${prefix} -I$(includedir) \ 105 105 $(DEFS) $(CPPFLAGS) $(CXXFLAGS) 106 106 107 107 LIBCGGFLAGS = $(WARNFLAGS) -fno-implicit-templates \ 108 -I. -I $(srcdir)-I$(includedir) \108 -I. -I.. -I$(srcdir) -I${prefix} -I$(includedir) \ 109 109 $(DEFS) $(CPPFLAGS) 110 110 … … 119 119 120 120 # flags to create dependency lists 121 DEPCXXFLAGS = -I. -I $(srcdir)-I$(includedir) \121 DEPCXXFLAGS = -I. -I.. -I$(srcdir) -I${prefix} -I$(includedir) \ 122 122 $(DEFS) $(CPPFLAGS) 123 123 … … 608 608 # after installation. 609 609 test_install.o: test_install.cc factory.h 610 $(CXX) -c $< $(TESTCXXFLAGS) -I- -I$ (includedir) -o $@610 $(CXX) -c $< $(TESTCXXFLAGS) -I- -I${prefix} -I$(includedir) -o $@ 611 611 612 612 # the same we do for ftmpl_inst.o which for this reason is named 613 613 # iftmpl_inst.o 614 614 iftmpl_inst.o: factory.h 615 $(CXX) -c $(templatedir)/ftmpl_inst.cc $(TMPLCXXFLAGS) -I- -I$ (includedir) -o $@615 $(CXX) -c $(templatedir)/ftmpl_inst.cc $(TMPLCXXFLAGS) -I- -I${prefix} -I$(includedir) -o $@ 616 616 617 617 # link installation test program -
factory/bin/makeheader
rdce1e3 rb1dfaf 98 98 # get include file from next line 99 99 read line 100 # if echo "$line" | grep -v '^#include <factory/.*>$' > /dev/null 2> /dev/null; then 100 101 if echo "$line" | grep -v '^#include ".*"$' > /dev/null 2> /dev/null; then 101 102 echo "makeheader: Invalid include statement $line" 1>&2 … … 103 104 fi 104 105 includefile=`echo "$line" | sed 's/^#include "//; s/"$//'` 106 # includefile=`echo "$line" | sed 's/^#include <factory//; s/>$//'` 105 107 106 108 # search for includefile -
factory/factory.template
rdce1e3 rb1dfaf 22 22 //}}} 23 23 24 #include <factory conf.h>24 #include <factory/factoryconf.h> 25 25 26 26 #ifndef NOSTREAMIO 27 # ifdef HAVE_IOSTREAM28 # include <iostream>29 # define OSTREAM std::ostream30 # define ISTREAM std::istream31 # elif defined(HAVE_IOSTREAM_H)32 # include <iostream.h>33 # define OSTREAM ostream34 # define ISTREAM istream35 # endif27 # ifdef HAVE_IOSTREAM 28 # include <iostream> 29 # define OSTREAM std::ostream 30 # define ISTREAM std::istream 31 # elif defined(HAVE_IOSTREAM_H) 32 # include <iostream.h> 33 # define OSTREAM ostream 34 # define ISTREAM istream 35 # endif 36 36 #endif /* ! NOSTREAMIO */ 37 37 38 38 #ifdef SINGULAR 39 # include "cf_gmp.h"39 # include <factory/cf_gmp.h> 40 40 #else 41 # include <gmp.h>41 # include <gmp.h> 42 42 #endif /* SINGULAR */ 43 43 44 #include < templates/ftmpl_array.h>45 #include < templates/ftmpl_factor.h>46 #include < templates/ftmpl_list.h>47 #include < templates/ftmpl_matrix.h>44 #include <factory/templates/ftmpl_array.h> 45 #include <factory/templates/ftmpl_factor.h> 46 #include <factory/templates/ftmpl_list.h> 47 #include <factory/templates/ftmpl_matrix.h> 48 48 49 49 /*MAKEHEADER PUBLIC ONLY*/ -
factory/int_int.h
rdce1e3 rb1dfaf 30 30 31 31 #ifdef HAVE_OMALLOC 32 # include <omalloc.h>32 # include <omalloc/omalloc.h> 33 33 #endif 34 34 -
factory/int_poly.h
rdce1e3 rb1dfaf 29 29 30 30 #ifdef HAVE_OMALLOC 31 # include <omalloc.h>31 # include <omalloc/omalloc.h> 32 32 #endif 33 33 -
factory/templates/ftmpl_array.cc
rdce1e3 rb1dfaf 2 2 /* $Id$ */ 3 3 4 #include <factoryconf.h> 5 6 #include <templates/ftmpl_array.h> 4 #include <factory/templates/ftmpl_array.h> 7 5 8 6 template <class T> -
factory/templates/ftmpl_array.h
rdce1e3 rb1dfaf 5 5 #define INCL_ARRAY_H 6 6 7 #include <factory conf.h>7 #include <factory/factoryconf.h> 8 8 9 9 #ifndef NOSTREAMIO -
factory/templates/ftmpl_factor.cc
rdce1e3 rb1dfaf 2 2 /* $Id$ */ 3 3 4 #include <factoryconf.h> 5 6 #include <templates/ftmpl_factor.h> 4 #include <factory/templates/ftmpl_factor.h> 7 5 8 6 template <class T> -
factory/templates/ftmpl_factor.h
rdce1e3 rb1dfaf 5 5 #define INCL_FACTOR_H 6 6 7 #include <factory conf.h>7 #include <factory/factoryconf.h> 8 8 9 9 #ifndef NOSTREAMIO -
factory/templates/ftmpl_functions.h
rdce1e3 rb1dfaf 27 27 //}}} 28 28 29 #include <factory conf.h>29 #include <factory/factoryconf.h> 30 30 31 31 //{{{ template <class T> inline T tmax ( const T & a, const T & b ) -
factory/templates/ftmpl_list.cc
rdce1e3 rb1dfaf 2 2 /* $Id$ */ 3 3 4 #include <factoryconf.h> 5 6 #include <templates/ftmpl_list.h> 4 #include <factory/templates/ftmpl_list.h> 7 5 8 6 template <class T> -
factory/templates/ftmpl_list.h
rdce1e3 rb1dfaf 5 5 #define INCL_LIST_H 6 6 7 #include <factory conf.h>7 #include <factory/factoryconf.h> 8 8 9 9 #ifndef NOSTREAMIO -
factory/templates/ftmpl_matrix.cc
rdce1e3 rb1dfaf 2 2 /* $Id$ */ 3 3 4 #include <factoryconf.h> 5 6 #include <templates/ftmpl_matrix.h> 4 #include <factory/templates/ftmpl_matrix.h> 7 5 8 6 template <class T> -
factory/templates/ftmpl_matrix.h
rdce1e3 rb1dfaf 5 5 #define INCL_MATRIX_H 6 6 7 #include <factory conf.h>7 #include <factory/factoryconf.h> 8 8 9 9 #ifndef NOSTREAMIO -
kernel/Makefile.in
rdce1e3 rb1dfaf 49 49 CXXFLAGS = @CXXFLAGS@ ${PIPE} 50 50 CXXTEMPLFLAGS = @CXXTEMPLFLAGS@ 51 CPPFLAGS = -I${srcdir} -I @prefix@ @CPPFLAGS@51 CPPFLAGS = -I${srcdir} -I.. -I@prefix@ @CPPFLAGS@ 52 52 DEFS = -DNDEBUG -DOM_NDEBUG -D@SING_UNAME@ @DEFS@ 53 53 LDFLAGS = @LDFLAGS@ -
kernel/clapconv.cc
rdce1e3 rb1dfaf 11 11 #include <kernel/mod2.h> 12 12 #ifdef HAVE_FACTORY 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <kernel/structs.h> 15 15 #define SI_DONT_HAVE_GLOBAL_VARS -
kernel/clapconv.h
rdce1e3 rb1dfaf 15 15 #include <kernel/longalg.h> 16 16 #include <kernel/ring.h> 17 #include <factory.h> 17 #ifdef HAVE_FACTORY 18 # include <factory/factory.h> 19 #endif /* HAVE_FACTORY */ 18 20 19 21 poly convFactoryPSingP ( const CanonicalForm & f, const ring r=currRing ); -
kernel/clapsing.cc
rdce1e3 rb1dfaf 10 10 //#define FACTORIZE2_DEBUG 11 11 #include <kernel/mod2.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #ifdef HAVE_FACTORY 14 14 #define SI_DONT_HAVE_GLOBAL_VARS … … 19 19 #include <kernel/ideals.h> 20 20 #include <kernel/ffields.h> 21 #include <factory .h>21 #include <factory/factory.h> 22 22 #include <kernel/clapconv.h> 23 #include < factor.h>23 #include <libfac/factor.h> 24 24 #include <kernel/ring.h> 25 25 -
kernel/dError.c
rdce1e3 rb1dfaf 16 16 #include <Singular/distrib.h> 17 17 #ifdef HAVE_CONFIG_H 18 #include <omalloc .h>18 #include <omalloc/omalloc.h> 19 19 #endif 20 20 -
kernel/fast_maps.cc
rdce1e3 rb1dfaf 10 10 *******************************************************************/ 11 11 #include <kernel/mod2.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/options.h> 14 14 #include <kernel/p_polys.h> -
kernel/feResource.cc
rdce1e3 rb1dfaf 25 25 #if !defined(ESINGULAR) && !defined(TSINGULAR) 26 26 #include <kernel/febase.h> 27 #include <omalloc .h>27 #include <omalloc/omalloc.h> 28 28 #else 29 29 char* feResource(const char id, int warn = -1); -
kernel/febase.cc
rdce1e3 rb1dfaf 13 13 #include <stdlib.h> 14 14 #include <stdio.h> 15 #include < mylimits.h>15 #include <omalloc/mylimits.h> 16 16 #include <stdarg.h> 17 17 #include <sys/stat.h> … … 24 24 25 25 #include <kernel/febase.h> 26 #include <omalloc .h>26 #include <omalloc/omalloc.h> 27 27 #include <kernel/dError.h> 28 28 #include <kernel/options.h> -
kernel/febase.h
rdce1e3 rb1dfaf 28 28 * let's include our own */ 29 29 30 #include < mylimits.h>30 #include <omalloc/mylimits.h> 31 31 32 32 /* OSF/1 and AIX_4 are missing the header for setenv, but the proc exists */ -
kernel/feread.cc
rdce1e3 rb1dfaf 21 21 #endif 22 22 #include <kernel/febase.h> 23 #include <omalloc .h>23 #include <omalloc/omalloc.h> 24 24 #include <kernel/options.h> 25 25 -
kernel/fereadl.c
rdce1e3 rb1dfaf 10 10 #include <kernel/mod2.h> 11 11 #include <kernel/febase.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/structs.h> 14 14 #include <kernel/febase.h> -
kernel/ffields.cc
rdce1e3 rb1dfaf 9 9 #include <string.h> 10 10 #include <kernel/mod2.h> 11 #include < mylimits.h>11 #include <omalloc/mylimits.h> 12 12 #include <kernel/febase.h> 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <kernel/numbers.h> 15 15 #include <kernel/ring.h> -
kernel/fglm.h
rdce1e3 rb1dfaf 15 15 16 16 #ifdef HAVE_FACTORY 17 #include <factory .h>17 #include <factory/factory.h> 18 18 19 19 #include <kernel/polys.h> -
kernel/fglmcomb.cc
rdce1e3 rb1dfaf 18 18 #include <kernel/febase.h> 19 19 #include <kernel/maps.h> 20 #include <omalloc .h>20 #include <omalloc/omalloc.h> 21 21 #include <kernel/fglmvec.h> 22 22 #include <kernel/fglmgauss.h> 23 23 #include <kernel/kstd1.h> 24 24 #define SI_DONT_HAVE_GLOBAL_VARS 25 #include <factory .h>25 #include <factory/factory.h> 26 26 27 27 #include <kernel/fglm.h> 28 #include < templates/ftmpl_list.h>28 #include <factory/templates/ftmpl_list.h> 29 29 30 30 #ifndef NOSTREAMIO 31 # ifdef HAVE_IOSTREAM32 # include <iostream>33 # else34 # include <iostream.h>35 # endif31 # ifdef HAVE_IOSTREAM 32 # include <iostream> 33 # else 34 # include <iostream.h> 35 # endif 36 36 #endif 37 37 -
kernel/fglmgauss.cc
rdce1e3 rb1dfaf 16 16 #include <kernel/numbers.h> 17 17 #include <kernel/ring.h> 18 #include <omalloc .h>18 #include <omalloc/omalloc.h> 19 19 20 20 #include <kernel/fglmvec.h> -
kernel/fglmvec.cc
rdce1e3 rb1dfaf 16 16 17 17 #ifdef HAVE_FACTORY 18 #include <omalloc .h>18 #include <omalloc/omalloc.h> 19 19 #include <kernel/structs.h> 20 20 #include <kernel/numbers.h> -
kernel/fglmzero.cc
rdce1e3 rb1dfaf 28 28 #include <kernel/febase.h> 29 29 #include <kernel/maps.h> 30 #include <omalloc .h>30 #include <omalloc/omalloc.h> 31 31 #include <kernel/kstd1.h> 32 32 #include <kernel/intvec.h> -
kernel/gnumpc.cc
rdce1e3 rb1dfaf 12 12 #include <kernel/structs.h> 13 13 #include <kernel/febase.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/numbers.h> 16 16 #include <kernel/longrat.h> -
kernel/gnumpfl.cc
rdce1e3 rb1dfaf 12 12 #include <kernel/structs.h> 13 13 #include <kernel/febase.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/numbers.h> 16 16 #include <kernel/modulop.h> -
kernel/hdegree.cc
rdce1e3 rb1dfaf 12 12 #include <kernel/structs.h> 13 13 #include <kernel/febase.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/ideals.h> 16 16 #include <kernel/polys.h> -
kernel/hilb.cc
rdce1e3 rb1dfaf 10 10 #include <kernel/structs.h> 11 11 #include <kernel/febase.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/polys.h> 14 14 #include <kernel/intvec.h> -
kernel/hutil.cc
rdce1e3 rb1dfaf 10 10 #include <kernel/structs.h> 11 11 #include <kernel/febase.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/ideals.h> 14 14 #include <kernel/polys.h> -
kernel/ideals.cc
rdce1e3 rb1dfaf 17 17 18 18 #include <kernel/options.h> 19 #include <omalloc .h>19 #include <omalloc/omalloc.h> 20 20 #include <kernel/febase.h> 21 21 #include <kernel/numbers.h> -
kernel/int64vec.cc
rdce1e3 rb1dfaf 11 11 #include <kernel/int64vec.h> 12 12 #include <kernel/intvec.h> 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 15 15 /*0 implementation*/ -
kernel/int64vec.h
rdce1e3 rb1dfaf 10 10 #include <string.h> 11 11 #include <kernel/structs.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/febase.h> 14 14 #include <kernel/intvec.h> -
kernel/intvec.cc
rdce1e3 rb1dfaf 12 12 #include <kernel/options.h> 13 13 #include <kernel/intvec.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 16 16 /*0 implementation*/ -
kernel/intvec.h
rdce1e3 rb1dfaf 9 9 */ 10 10 #include <string.h> 11 #include <omalloc .h>11 #include <omalloc/omalloc.h> 12 12 #include <kernel/febase.h> 13 13 -
kernel/kInline.cc
rdce1e3 rb1dfaf 18 18 #include <kernel/p_Procs.h> 19 19 #include <kernel/kbuckets.h> 20 #include <omalloc .h>20 #include <omalloc/omalloc.h> 21 21 22 22 #define HAVE_TAIL_BIN -
kernel/kbuckets.cc
rdce1e3 rb1dfaf 6 6 #include <kernel/mod2.h> 7 7 #include <kernel/structs.h> 8 #include <omalloc .h>8 #include <omalloc/omalloc.h> 9 9 #include <kernel/p_polys.h> 10 10 #include <kernel/febase.h> -
kernel/kstd1.cc
rdce1e3 rb1dfaf 16 16 17 17 #include <kernel/mod2.h> 18 #include <omalloc .h>18 #include <omalloc/omalloc.h> 19 19 20 20 #ifndef NDEBUG -
kernel/kstd2.cc
rdce1e3 rb1dfaf 36 36 #include <kernel/kutil.h> 37 37 #include <kernel/options.h> 38 #include <omalloc .h>38 #include <omalloc/omalloc.h> 39 39 #include <kernel/polys.h> 40 40 #include <kernel/ideals.h> -
kernel/kstdfac.cc
rdce1e3 rb1dfaf 8 8 9 9 #include <kernel/mod2.h> 10 #include <omalloc .h>10 #include <omalloc/omalloc.h> 11 11 #include <kernel/options.h> 12 12 #include <kernel/polys.h> -
kernel/kutil.cc
rdce1e3 rb1dfaf 21 21 22 22 23 #include < mylimits.h>23 #include <omalloc/mylimits.h> 24 24 #include <kernel/options.h> 25 25 #include <kernel/gring.h> … … 47 47 #include <kernel/kbuckets.h> 48 48 #include <kernel/febase.h> 49 #include <omalloc .h>49 #include <omalloc/omalloc.h> 50 50 #include <kernel/numbers.h> 51 51 #include <kernel/polys.h> -
kernel/kutil.h
rdce1e3 rb1dfaf 11 11 12 12 #include <string.h> 13 #include < mylimits.h>13 #include <omalloc/mylimits.h> 14 14 15 15 #include <kernel/structs.h> 16 #include <omalloc .h>16 #include <omalloc/omalloc.h> 17 17 #include <kernel/ring.h> 18 18 #include <kernel/structs.h> -
kernel/longalg.cc
rdce1e3 rb1dfaf 11 11 #include <kernel/mod2.h> 12 12 #include <kernel/structs.h> 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <kernel/febase.h> 15 15 #include <kernel/longrat.h> … … 20 20 #include <kernel/ring.h> 21 21 #ifdef HAVE_FACTORY 22 #include <factory .h>22 #include <factory/factory.h> 23 23 #include <kernel/clapsing.h> 24 24 #include <kernel/clapconv.h> -
kernel/longrat.cc
rdce1e3 rb1dfaf 14 14 #include <kernel/mod2.h> 15 15 #include <kernel/structs.h> 16 #include <omalloc .h>16 #include <omalloc/omalloc.h> 17 17 #include <kernel/febase.h> 18 18 #include <kernel/numbers.h> -
kernel/longrat0.cc
rdce1e3 rb1dfaf 12 12 #include <kernel/mod2.h> 13 13 #include <kernel/structs.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/febase.h> 16 16 #include <kernel/longrat.h> -
kernel/maps.cc
rdce1e3 rb1dfaf 15 15 #include <kernel/ideals.h> 16 16 #include <kernel/matpol.h> 17 #include <omalloc .h>17 #include <omalloc/omalloc.h> 18 18 #include <kernel/kstd1.h> 19 19 #include <kernel/longalg.h> -
kernel/matpol.cc
rdce1e3 rb1dfaf 12 12 13 13 #include <kernel/mod2.h> 14 #include < mylimits.h>14 #include <omalloc/mylimits.h> 15 15 #include <kernel/structs.h> 16 16 #include <kernel/kstd1.h> 17 17 #include <kernel/polys.h> 18 #include <omalloc .h>18 #include <omalloc/omalloc.h> 19 19 #include <kernel/febase.h> 20 20 #include <kernel/numbers.h> -
kernel/misc.cc
rdce1e3 rb1dfaf 14 14 15 15 #include <kernel/mod2.h> 16 #include < mylimits.h>17 #include <omalloc .h>16 #include <omalloc/mylimits.h> 17 #include <omalloc/omalloc.h> 18 18 #include <kernel/structs.h> 19 19 #include <kernel/options.h> … … 33 33 34 34 #ifdef HAVE_FACTORY 35 # include <factory.h>35 # include <factory/factory.h> 36 36 /* libfac version strings */ 37 37 extern const char * libfac_version; -
kernel/mmalloc.cc
rdce1e3 rb1dfaf 10 10 #include <kernel/mod2.h> 11 11 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <new> 14 14 -
kernel/mmstd.c
rdce1e3 rb1dfaf 11 11 12 12 #define OM_NO_MALLOC_MACROS 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <Singular/static.h> 15 15 … … 28 28 #define OM_MALLOC_MARK_AS_STATIC 29 29 #define strdup_ strdup__ 30 #include <omalloc .c>30 #include <omalloc/omalloc.c> 31 31 #else 32 32 #include <stdlib.h> -
kernel/modulop.cc
rdce1e3 rb1dfaf 9 9 #include <string.h> 10 10 #include <kernel/mod2.h> 11 #include < mylimits.h>11 #include <omalloc/mylimits.h> 12 12 #include <kernel/structs.h> 13 13 #include <kernel/febase.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/numbers.h> 16 16 #include <kernel/longrat.h> -
kernel/mpr_base.cc
rdce1e3 rb1dfaf 13 13 #include <kernel/mod2.h> 14 14 15 #include < mylimits.h>16 #include <omalloc .h>15 #include <omalloc/mylimits.h> 16 #include <omalloc/omalloc.h> 17 17 18 18 //-> includes -
kernel/mpr_complex.cc
rdce1e3 rb1dfaf 16 16 #include <kernel/structs.h> 17 17 #include <kernel/febase.h> 18 #include <omalloc .h>18 #include <omalloc/omalloc.h> 19 19 #include <kernel/numbers.h> 20 20 #include <kernel/longrat.h> -
kernel/mpr_inout.cc
rdce1e3 rb1dfaf 18 18 #include <kernel/ring.h> 19 19 #include <kernel/febase.h> 20 #include <omalloc .h>20 #include <omalloc/omalloc.h> 21 21 #include <kernel/numbers.h> 22 22 #include <kernel/matpol.h> -
kernel/mpr_numeric.cc
rdce1e3 rb1dfaf 18 18 #include <kernel/options.h> 19 19 #include <kernel/febase.h> 20 #include <omalloc .h>20 #include <omalloc/omalloc.h> 21 21 #include <kernel/numbers.h> 22 22 #include <kernel/polys.h> -
kernel/pDebug.cc
rdce1e3 rb1dfaf 25 25 #include <kernel/p_polys.h> 26 26 #include <kernel/febase.h> 27 #include <omalloc .h>27 #include <omalloc/omalloc.h> 28 28 #include <kernel/ring.h> 29 29 #include <kernel/numbers.h> -
kernel/pInline1.h
rdce1e3 rb1dfaf 16 16 // #define PDIV_DEBUG 17 17 #endif 18 #include < mylimits.h>18 #include <omalloc/mylimits.h> 19 19 #include <kernel/p_MemCmp.h> 20 20 #include <kernel/structs.h> … … 53 53 #if !defined(NO_PINLINE1) || defined(PINLINE1_CC) 54 54 55 #include <omalloc .h>55 #include <omalloc/omalloc.h> 56 56 #include <kernel/numbers.h> 57 57 #include <kernel/p_polys.h> -
kernel/pInline2.h
rdce1e3 rb1dfaf 20 20 21 21 #include <kernel/structs.h> 22 #include <omalloc .h>22 #include <omalloc/omalloc.h> 23 23 #include <kernel/numbers.h> 24 24 #include <kernel/p_Procs.h> -
kernel/polys-impl.cc
rdce1e3 rb1dfaf 21 21 #include <kernel/mod2.h> 22 22 23 #include <omalloc .h>23 #include <omalloc/omalloc.h> 24 24 #ifdef PDEBUG 25 25 #undef NO_INLINE3 -
kernel/polys-impl.h
rdce1e3 rb1dfaf 17 17 ***************************************************************/ 18 18 #include <kernel/structs.h> 19 #include <omalloc .h>19 #include <omalloc/omalloc.h> 20 20 21 21 /*************************************************************** -
kernel/polys.cc
rdce1e3 rb1dfaf 14 14 #include <kernel/mod2.h> 15 15 #include <kernel/options.h> 16 #include <omalloc .h>16 #include <omalloc/omalloc.h> 17 17 #include <kernel/febase.h> 18 18 #include <kernel/numbers.h> -
kernel/polys1.cc
rdce1e3 rb1dfaf 15 15 #include <kernel/numbers.h> 16 16 #include <kernel/ffields.h> 17 #include <omalloc .h>17 #include <omalloc/omalloc.h> 18 18 #include <kernel/febase.h> 19 19 #include <kernel/weight.h> -
kernel/prCopy.cc
rdce1e3 rb1dfaf 8 8 9 9 #include <kernel/mod2.h> 10 #include <omalloc .h>10 #include <omalloc/omalloc.h> 11 11 #include <kernel/p_polys.h> 12 12 #include <kernel/numbers.h> -
kernel/ring.cc
rdce1e3 rb1dfaf 19 19 20 20 #include <kernel/options.h> 21 #include <omalloc .h>21 #include <omalloc/omalloc.h> 22 22 #include <kernel/polys.h> 23 23 #include <kernel/numbers.h> … … 38 38 #include <kernel/matpol.h> 39 39 #ifdef HAVE_FACTORY 40 # include <factory.h>40 # include <factory/factory.h> 41 41 #endif 42 42 -
kernel/ringgb.cc
rdce1e3 rb1dfaf 12 12 #include <kernel/kutil.h> 13 13 #include <kernel/structs.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/polys.h> 16 16 #include <kernel/p_polys.h> -
kernel/rintegers.cc
rdce1e3 rb1dfaf 9 9 #include <string.h> 10 10 #include <kernel/mod2.h> 11 #include < mylimits.h>11 #include <omalloc/mylimits.h> 12 12 #include <kernel/structs.h> 13 13 #include <kernel/febase.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/numbers.h> 16 16 #include <kernel/longrat.h> -
kernel/rmodulo2m.cc
rdce1e3 rb1dfaf 11 11 12 12 #ifdef HAVE_RINGS 13 #include < mylimits.h>13 #include <omalloc/mylimits.h> 14 14 #include <kernel/structs.h> 15 15 #include <kernel/febase.h> 16 #include <omalloc .h>16 #include <omalloc/omalloc.h> 17 17 #include <kernel/numbers.h> 18 18 #include <kernel/longrat.h> -
kernel/rmodulon.cc
rdce1e3 rb1dfaf 9 9 #include <string.h> 10 10 #include <kernel/mod2.h> 11 #include < mylimits.h>11 #include <omalloc/mylimits.h> 12 12 #include <kernel/structs.h> 13 13 #include <kernel/febase.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/numbers.h> 16 16 #include <kernel/longrat.h> -
kernel/sbuckets.cc
rdce1e3 rb1dfaf 13 13 14 14 #include <kernel/sbuckets.h> 15 #include <omalloc .h>15 #include <omalloc/omalloc.h> 16 16 #include <kernel/ring.h> 17 17 #include <kernel/p_Procs.h> -
kernel/shiftgb.cc
rdce1e3 rb1dfaf 22 22 #include <kernel/kutil.h> 23 23 #include <kernel/structs.h> 24 #include <omalloc .h>24 #include <omalloc/omalloc.h> 25 25 #include <kernel/khstd.h> 26 26 #include <kernel/kbuckets.h> -
kernel/shortfl.cc
rdce1e3 rb1dfaf 10 10 #include <string.h> 11 11 #include <kernel/mod2.h> 12 #include < mylimits.h>12 #include <omalloc/mylimits.h> 13 13 #include <kernel/structs.h> 14 14 #include <kernel/febase.h> -
kernel/si_gmp.h
rdce1e3 rb1dfaf 4 4 #define INCL_CF_GMP_H 5 5 #ifdef HAVE_FACTORY 6 # include <cf_gmp.h>6 # include <factory/cf_gmp.h> 7 7 #else 8 8 #if defined(__cplusplus) && defined(__GNUC__) -
kernel/spectrum.cc
rdce1e3 rb1dfaf 19 19 #endif 20 20 21 #include < mylimits.h>21 #include <omalloc/mylimits.h> 22 22 23 23 #include <kernel/numbers.h> -
kernel/structs.h
rdce1e3 rb1dfaf 12 12 #include <string.h> 13 13 /* for omBin */ 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #ifdef HAVE_RINGS 16 16 #include <kernel/si_gmp.h> -
kernel/syz.cc
rdce1e3 rb1dfaf 11 11 #include <kernel/mod2.h> 12 12 #include <kernel/options.h> 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <kernel/polys.h> 15 15 #include <kernel/febase.h> … … 471 471 } 472 472 } 473 474 #ifdef HAVE_PLURAL 473 475 if (rIsPluralRing(currRing) && !rIsSCA(currRing) ) 474 476 { … … 476 478 hom = isNotHomog; 477 479 } 480 #endif // HAVE_PLURAL 481 478 482 if (hom==isHomog) 479 483 { -
kernel/syz0.cc
rdce1e3 rb1dfaf 10 10 #include <kernel/mod2.h> 11 11 #include <kernel/options.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/polys.h> 14 14 #include <kernel/febase.h> -
kernel/syz1.cc
rdce1e3 rb1dfaf 8 8 9 9 #include <kernel/mod2.h> 10 #include < mylimits.h>10 #include <omalloc/mylimits.h> 11 11 #include <kernel/options.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/polys.h> 14 14 #include <kernel/febase.h> -
kernel/syz2.cc
rdce1e3 rb1dfaf 8 8 9 9 #include <kernel/mod2.h> 10 #include < mylimits.h>10 #include <omalloc/mylimits.h> 11 11 #include <kernel/options.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/syz.h> 14 14 #include <kernel/polys.h> -
kernel/syz3.cc
rdce1e3 rb1dfaf 8 8 9 9 #include <kernel/mod2.h> 10 #include < mylimits.h>10 #include <omalloc/mylimits.h> 11 11 #include <kernel/options.h> 12 #include <omalloc .h>12 #include <omalloc/omalloc.h> 13 13 #include <kernel/polys.h> 14 14 #include <kernel/febase.h> -
kernel/tgb_internal.h
rdce1e3 rb1dfaf 9 9 * ABSTRACT: tgb internal .h file 10 10 */ 11 #include <omalloc .h>11 #include <omalloc/omalloc.h> 12 12 #include <kernel/p_polys.h> 13 13 -
kernel/tgbgauss.cc
rdce1e3 rb1dfaf 9 9 #include <kernel/options.h> 10 10 #include <kernel/tgbgauss.h> 11 #include <omalloc .h>11 #include <omalloc/omalloc.h> 12 12 #include <stdlib.h> 13 13 #include <kernel/kutil.h> -
kernel/walkProc.cc
rdce1e3 rb1dfaf 12 12 #include <kernel/febase.h> 13 13 #include <kernel/maps.h> 14 #include <omalloc .h>14 #include <omalloc/omalloc.h> 15 15 #include <kernel/kstd1.h> 16 16 #include <kernel/fglm.h> -
kernel/weight.cc
rdce1e3 rb1dfaf 11 11 #include <kernel/mod2.h> 12 12 #include <kernel/options.h> 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <kernel/polys.h> 15 15 #include <kernel/intvec.h> -
kernel/weight0.c
rdce1e3 rb1dfaf 11 11 #include <string.h> 12 12 #include <kernel/mod2.h> 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <kernel/structs.h> 15 15 -
libfac/Makefile.in
rdce1e3 rb1dfaf 38 38 CXXFLAGS = @CXXFLAGS@ 39 39 CXXTEMPLFLAGS = @CXXTEMPLFLAGS@ 40 CPPFLAGS = -I${srcdir}/factor -I${srcdir}/charset -I${srcdir} @CPPFLAGS@40 CPPFLAGS = -I${srcdir}/factor -I${srcdir}/charset -I${srcdir} -I.. -I${prefix} @CPPFLAGS@ 41 41 DEFS = @DEFS@ 42 42 LDFLAGS = @LDFLAGS@ -
libfac/factor.h
rdce1e3 rb1dfaf 6 6 #define FACTOR_H 7 7 8 #include <factory .h>8 #include <factory/factory.h> 9 9 10 10 // Set this to a nonzero value to interrupt the computation -
omalloc/Makefile.in
rdce1e3 rb1dfaf 13 13 ## various paths 14 14 ## 15 top_srcdir = @top_srcdir@ 16 srcdir = @srcdir@ 15 17 prefix = @prefix@ 16 18 exec_prefix = @exec_prefix@ … … 38 40 ## 39 41 CFLAGS = @CFLAGS@ 40 CPPFLAGS = -I. @CPPFLAGS@ -I@prefix@ 42 CPPFLAGS = -I. @CPPFLAGS@ -I@prefix@ -I.. 41 43 DEFS = @DEFS@ 42 44
Note: See TracChangeset
for help on using the changeset viewer.