Changeset f478f5b in git
- Timestamp:
- Jul 19, 2011, 5:43:11 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- f0a8c590c5ba49e8fbdeae1fedd1d5686c1ac135
- Parents:
- c6e80e954fd691ab249fd985e35fbd2b62c04260
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-07-19 17:43:11+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:52:42+01:00
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_gmp.h
rc6e80e rf478f5b 1 #ifndef CF_GMP_H2 #define CF_GMP_H1 #ifndef SI_GMP_H 2 #define SI_GMP_H 3 3 4 4 … … 15 15 16 16 17 #endif /* CF_GMP_H */17 #endif /* SI_GMP_H */ -
kernel/tgb.cc
rc6e80e rf478f5b 16 16 ///@TODO: no tail reductions in syz comp 17 17 #include <kernel/mod2.h> 18 #include <misc/options.h>19 18 #include <kernel/tgb.h> 20 19 #include <kernel/tgb_internal.h> 21 20 #include <kernel/tgbgauss.h> 22 21 22 #include <misc/options.h> 23 23 #include <kernel/digitech.h> 24 24 #include <polys/nc/nc.h> … … 26 26 #include <polys/prCopy.h> 27 27 #include <kernel/longrat.h> 28 #include < kernel/modulop.h>28 #include <coeffs/modulop.h> 29 29 #include <stdlib.h> 30 30 #include <stdio.h> -
kernel/tgb_internal.h
rc6e80e rf478f5b 9 9 * ABSTRACT: tgb internal .h file 10 10 */ 11 #include <omalloc/omalloc.h>12 #include <polys/monomials/p_polys.h>13 14 #include <kernel/ideals.h>15 #include <polys/monomials/ring.h>16 #include <kernel/febase.h>17 #include <misc/options.h>18 #include <polys/polys.h>19 #include <stdlib.h>20 #include <kernel/modulop.h>21 11 #define USE_NORO 1 22 12 23 13 14 //#define TGB_DEBUG 15 #define FULLREDUCTIONS 16 #define HANS_IDEA 17 //#define HALFREDUCTIONS 18 //#define HEAD_BIN 19 //#define HOMOGENEOUS_EXAMPLE 20 #define REDTAIL_S 21 #define PAR_N 100 22 #define PAR_N_F4 5000 23 #define AC_NEW_MIN 2 24 #define AC_FLATTEN 1 25 26 //#define FIND_DETERMINISTIC 27 //#define REDTAIL_PROT 28 //#define QUICK_SPOLY_TEST 24 29 #ifdef USE_NORO 25 30 #define NORO_CACHE 1 … … 47 52 using std::vector; 48 53 #endif 54 55 #include <omalloc/omalloc.h> 56 #include <polys/monomials/p_polys.h> 57 58 #include <kernel/ideals.h> 59 #include <polys/monomials/ring.h> 60 #include <kernel/febase.h> 61 #include <misc/options.h> 62 #include <polys/polys.h> 63 #include <stdlib.h> 64 #include <kernel/modulop.h> 49 65 #include <kernel/kutil.h> 50 66 #include <kernel/kInline.cc> … … 52 68 #include <polys/kbuckets.h> 53 69 54 55 56 57 //#define TGB_DEBUG 58 #define FULLREDUCTIONS 59 #define HANS_IDEA 60 //#define HALFREDUCTIONS 61 //#define HEAD_BIN 62 //#define HOMOGENEOUS_EXAMPLE 63 #define REDTAIL_S 64 #define PAR_N 100 65 #define PAR_N_F4 5000 66 #define AC_NEW_MIN 2 67 #define AC_FLATTEN 1 68 69 //#define FIND_DETERMINISTIC 70 //#define REDTAIL_PROT 71 //#define QUICK_SPOLY_TEST 72 class PolySimple{ 70 class PolySimple 71 { 73 72 public: 74 73 PolySimple(poly p)
Note: See TracChangeset
for help on using the changeset viewer.