Changeset 22a09d in git
- Timestamp:
- Jul 19, 2011, 1:37:08 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 31f1262751310d366c99e1a3d2914e859f8ea5c0
- Parents:
- b938f43f09b016c0e34ed3e723d3d187af898b48
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-07-19 13:37:08+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:39:58+01:00
- Files:
-
- 18 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Singular/misc_ip.cc
rb938f4 r22a09d 379 379 380 380 /* version strings */ 381 #include <kernel/si_gmp.h>382 381 #ifdef HAVE_MPSR 383 382 #include <MP_Config.h> -
Singular/misc_ip.h
rb938f4 r22a09d 25 25 #define MISC_H 26 26 27 #include < kernel/si_gmp.h>27 #include <coeffs/si_gmp.h> 28 28 #include <kernel/structs.h> 29 29 -
Singular/mpsr_GetPoly.cc
rb938f4 r22a09d 20 20 #include <Singular/mpsr_Get.h> 21 21 22 #include < kernel/si_gmp.h>22 #include <coeffs/si_gmp.h> 23 23 #include <omalloc/omalloc.h> 24 24 #include <Singular/tok.h> -
kernel/mod2.h
rb938f4 r22a09d 123 123 /* the maximal ascii length of an int number + 1 = 11 for 32 bit int */ 124 124 #define MAX_INT_LEN 11 125 // #define MAX_INT_VAL 0x7fffffff126 125 127 126 #ifdef DO_PROFILE -
libpolys/coeffs/ffields.h
rb938f4 r22a09d 10 10 #include <coeffs/coeffs.h> 11 11 12 // #define MAX_INT_VAL 0x7fffffff13 12 typedef struct 14 13 { -
libpolys/coeffs/longrat.cc
rb938f4 r22a09d 6 6 * ABSTRACT: computation with long rational numbers (Hubert Grassmann) 7 7 */ 8 #include "config.h" 9 #include <misc/auxiliary.h> 10 11 #ifdef HAVE_FACTORY 12 #include <factory/factory.h> 13 #endif 8 14 9 15 #include <coeffs/longrat.h> … … 45 51 #include <float.h> 46 52 47 #include "config.h"48 53 #include <coeffs/coeffs.h> 49 54 #include <reporter/reporter.h> … … 54 59 #include <coeffs/shortfl.h> 55 60 #include <coeffs/mpr_complex.h> 56 57 #ifdef HAVE_FACTORY58 #include <factory/factory.h>59 #endif60 61 61 62 #ifndef BYTES_PER_MP_LIMB -
libpolys/coeffs/modulop.cc
rb938f4 r22a09d 7 7 */ 8 8 9 #include "config.h" 10 #include <misc/auxiliary.h> 11 12 #ifdef HAVE_FACTORY 13 #include <factory/factory.h> 14 #endif 15 9 16 #include <string.h> 10 #include "config.h"11 17 #include <omalloc/omalloc.h> 12 18 #include <coeffs/coeffs.h> … … 17 23 #include <misc/mylimits.h> 18 24 #include <coeffs/modulop.h> 19 #ifdef HAVE_FACTORY20 #include <factory/factory.h>21 #endif22 25 23 26 // int npGen=0; -
libpolys/coeffs/numbers.cc
rb938f4 r22a09d 8 8 */ 9 9 10 #include <string.h> 11 #include <stdlib.h> 12 10 13 #include "config.h" 11 14 #include <misc/auxiliary.h> 15 16 #ifdef HAVE_FACTORY 17 #include <factory/factory.h> 18 #endif 12 19 13 20 … … 33 40 #include <polys/ext_fields/algext.h> 34 41 #endif 35 36 #ifdef HAVE_FACTORY37 #include <factory/factory.h>38 #endif39 40 #include <string.h>41 #include <stdlib.h>42 42 43 43 -
libpolys/polys/clapconv.cc
rb938f4 r22a09d 9 9 10 10 11 #include "config.h" 11 12 #include <misc/auxiliary.h> 12 13 #ifdef HAVE_FACTORY 14 #define SI_DONT_HAVE_GLOBAL_VARS 15 #include <factory/factory.h> 16 13 17 #include <omalloc/omalloc.h> 14 #define SI_DONT_HAVE_GLOBAL_VARS15 18 #include <coeffs/coeffs.h> 16 19 #include <polys/monomials/p_polys.h> -
libpolys/polys/clapsing.cc
rb938f4 r22a09d 12 12 #include <misc/auxiliary.h> 13 13 14 #ifdef HAVE_FACTORY 14 15 #define SI_DONT_HAVE_GLOBAL_VARS 16 #include <factory/factory.h> 17 #endif 18 15 19 #include <omalloc/omalloc.h> 16 20 #include <coeffs/numbers.h> … … 25 29 26 30 TODO(Martin, Please adapt the following code for the use in SW) 27 #ifdef HAVE_FACTORY 28 29 #include <factory/factory.h> 31 30 32 31 33 #include "clapsing.h" … … 1357 1359 } 1358 1360 #endif 1359 #endif1360 1361 1361 1362 number nChineseRemainder(number *x, number *q,int rl, const coeffs r) -
libpolys/polys/clapsing.h
rb938f4 r22a09d 17 17 #include <misc/intvec.h> 18 18 #include <polys/matpol.h> 19 #include <polys/clapconv.h>19 //#include <polys/clapconv.h> 20 20 //#include <kernel/longtrans.h> 21 21 -
libpolys/polys/monomials/p_polys.cc
rb938f4 r22a09d 10 10 *******************************************************************/ 11 11 12 13 14 #include "config.h" 15 #include <misc/auxiliary.h> 16 12 17 #include <ctype.h> 13 14 15 18 #include <omalloc/omalloc.h> 16 #include <misc/auxiliary.h>17 19 #include <misc/options.h> 18 20 #include <misc/intvec.h> -
libpolys/polys/monomials/ring.cc
rb938f4 r22a09d 41 41 // #include <???/maps.h> 42 42 // #include <???/matpol.h> 43 #ifdef HAVE_FACTORY44 #define SI_DONT_HAVE_GLOBAL_VARS45 # include <factory/factory.h>46 #endif47 43 48 44 #define BITS_PER_LONG 8*SIZEOF_LONG … … 131 127 p_SetGlobals(r); 132 128 //------------ global variables related to factory ----------------- 133 #ifdef HAVE_FACTORY134 //int c=ABS(n_GetChar());135 //if (c==1) c=0;136 //setCharacteristic( c );137 #endif138 129 } 139 130 } -
libpolys/polys/operations/p_Mult_q.cc
rb938f4 r22a09d 10 10 *******************************************************************/ 11 11 #include "config.h" 12 #include <misc/auxiliary.h> 13 14 #ifdef HAVE_FACTORY 15 #include <factory/factory.h> 16 #endif 12 17 13 18 /*************************************************************** -
libpolys/polys/simpleideals.cc
rb938f4 r22a09d 1732 1732 } 1733 1733 else 1734 x[j]=n lInit(0, R->cf); // is R->cf really n_Q???1734 x[j]=n_Init(0, R->cf); // is R->cf really n_Q???, yes! 1735 1735 } 1736 1736 -
libpolys/polys/templates/p_Procs_Dynamic.cc
rb938f4 r22a09d 11 11 #include "config.h" 12 12 #include <misc/auxiliary.h> 13 14 #ifdef HAVE_FACTORY 15 #include <factory/factory.h> 16 #endif 13 17 14 18 // #include <polys/structs.h> -
libpolys/polys/templates/p_Procs_Lib.cc
rb938f4 r22a09d 18 18 #include "config.h" 19 19 #include <misc/auxiliary.h> 20 // #include <polys/structs.h> 20 21 #ifdef HAVE_FACTORY 22 #include <factory/factory.h> 23 #endif 24 21 25 #include <polys/monomials/p_polys.h> 22 26 #include <polys/monomials/ring.h> -
libpolys/polys/templates/p_Procs_Static.cc
rb938f4 r22a09d 10 10 *******************************************************************/ 11 11 #include "config.h" 12 #include <misc/auxiliary.h> 13 14 #ifdef HAVE_FACTORY 15 #include <factory/factory.h> 16 #endif 17 12 18 // #include <polys/structs.h> 13 19 #include <polys/monomials/ring.h>
Note: See TracChangeset
for help on using the changeset viewer.