Changeset 8d14d67 in git for factory/winnt/factory.h
- Timestamp:
- Dec 8, 2008, 9:59:27 AM (15 years ago)
- Branches:
- (u'spielwiese', 'd0474371d8c5d8068ab70bfb42719c97936b18a6')
- Children:
- 18ef40f42eafb26bcadfdbf8f8f70a8a0de137d6
- Parents:
- f41347f0d401c803dc2f636974ccdd1d7f48dac6
- File:
-
- 1 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
Note: See TracChangeset
for help on using the changeset viewer.