Changeset 8d14d67 in git
- Timestamp:
- Dec 8, 2008, 9:59:27 AM (15 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 18ef40f42eafb26bcadfdbf8f8f70a8a0de137d6
- Parents:
- f41347f0d401c803dc2f636974ccdd1d7f48dac6
- Location:
- factory/winnt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/winnt/factory.h
rf41347f r8d14d67 1 1 /* winnt/factory.h automatically generated by makeheader from factory.template */ 2 2 /* emacs edit mode for this file is -*- C++ -*- */ 3 /* $Id: factory.h,v 1. 6 2007-11-20 10:08:03Singular Exp $ */3 /* $Id: factory.h,v 1.7 2008-12-08 08:59:27 Singular Exp $ */ 4 4 5 5 #ifndef INCL_FACTORY_H … … 106 106 const int SW_FAC_QUADRATICLIFT = 5; 107 107 const int SW_USE_EZGCD = 6; 108 const int SW_USE_SPARSEMOD = 7; 109 const int SW_USE_NTL=8; 110 const int SW_USE_NTL_GCD_0=9; 111 const int SW_USE_NTL_GCD_P=10; 112 const int SW_USE_NTL_SORT=11; 113 const int SW_USE_CHINREM_GCD=12; 114 const int SW_USE_GCD_P=13; 108 const int SW_USE_EZGCD_P = 7; 109 const int SW_USE_SPARSEMOD = 8; 110 const int SW_USE_NTL=9; 111 const int SW_USE_NTL_GCD_0=10; 112 const int SW_USE_NTL_GCD_P=11; 113 const int SW_USE_NTL_SORT=12; 114 const int SW_USE_CHINREM_GCD=13; 115 const int SW_USE_GCD_P=14; 116 const int SW_USE_QGCD=15; 117 const int SW_USE_fieldGCD=16; 115 118 //}}} 116 119 … … 178 181 179 182 CanonicalForm getMipo( const Variable & alpha, const Variable & x ); 183 bool hasMipo( const Variable & alpha ); 180 184 181 185 char getDefaultVarName(); … … 359 363 CanonicalForm gcd ( const CanonicalForm&, const CanonicalForm& ); 360 364 365 CanonicalForm gcd_poly ( const CanonicalForm & f, const CanonicalForm & g ); 366 361 367 CanonicalForm extgcd ( const CanonicalForm&, const CanonicalForm&, CanonicalForm&, CanonicalForm& ); 362 368 … … 542 548 CFFList factorize ( const CanonicalForm & f, const Variable & alpha ); 543 549 544 CFFList sqrFree ( const CanonicalForm & f , bool sort = false);550 CFFList sqrFree ( const CanonicalForm & f ); 545 551 546 552 bool isSqrFree ( const CanonicalForm & f ); … … 592 598 // direct comparison `f < 0', it is faster, too 593 599 if ( sign( f ) < 0 ) 594 600 return -f; 595 601 else 596 602 return f; 597 603 } 598 604 //}}} … … 781 787 int n; 782 788 AlgExtRandomF(); 783 AlgExtRandomF( const AlgExtRandomF & );784 789 AlgExtRandomF( const Variable & v, CFRandom * g, int nn ); 785 790 AlgExtRandomF& operator= ( const AlgExtRandomF & ); 786 791 public: 792 AlgExtRandomF( const AlgExtRandomF & ); 787 793 AlgExtRandomF( const Variable & v ); 788 794 AlgExtRandomF( const Variable & v1, const Variable & v2 ); … … 943 949 class REvaluation : public Evaluation 944 950 { 945 pr ivate:951 protected: // neeeded in FFREvaluation 946 952 CFRandom * gen; 947 953 public: … … 953 959 void nextpoint(); 954 960 }; 961 962 963 /* stuff included from ./fac_sqrfree.h */ 955 964 956 965 -
factory/winnt/factoryconf.h
rf41347f r8d14d67 1 1 /* winnt/factoryconf.h automatically generated by makeheader from factoryconf.template */ 2 2 /* emacs edit mode for this file is -*- C -*- */ 3 /* $Id: factoryconf.h,v 1. 6 2007-11-20 10:08:03Singular Exp $ */3 /* $Id: factoryconf.h,v 1.7 2008-12-08 08:59:27 Singular Exp $ */ 4 4 5 5 #ifndef INCL_FACTORYCONF_H … … 23 23 24 24 /* emacs edit mode for this file is -*- C -*- */ 25 /* $Id: factoryconf.h,v 1. 6 2007-11-20 10:08:03Singular Exp $ */25 /* $Id: factoryconf.h,v 1.7 2008-12-08 08:59:27 Singular Exp $ */ 26 26 27 27 #ifndef INCL_CONFIG_H … … 105 105 106 106 /* emacs edit mode for this file is -*- C -*- */ 107 /* $Id: factoryconf.h,v 1. 6 2007-11-20 10:08:03Singular Exp $ */107 /* $Id: factoryconf.h,v 1.7 2008-12-08 08:59:27 Singular Exp $ */ 108 108 109 109 /* This is for compatibility with standard assert.h */ … … 134 134 /* }}} */ 135 135 136 #ifdef HAVE_CSTDIO 137 #include <cstdio> 138 #else 136 139 #ifdef __cplusplus 137 140 extern "C" { … … 143 146 #ifdef __cplusplus 144 147 } 148 #endif 145 149 #endif 146 150
Note: See TracChangeset
for help on using the changeset viewer.