Changeset bb82f0 in git
- Timestamp:
- Jun 16, 2008, 2:55:41 PM (15 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- c99b6b9aa9684f111c07fca497f1d2256859ad05
- Parents:
- ca4a07322f31d377c0c316a145437504fb8e6be0
- Location:
- factory
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_defs.h
rca4a073 rbb82f0 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_defs.h,v 1.1 3 2007-11-20 10:08:02Singular Exp $ */2 /* $Id: cf_defs.h,v 1.14 2008-06-16 12:55:08 Singular Exp $ */ 3 3 4 4 #ifndef INCL_CF_DEFS_H … … 42 42 const int SW_USE_CHINREM_GCD=13; 43 43 const int SW_USE_GCD_P=14; 44 const int SW_USE_QGCD=15; 44 45 //}}} 45 46 -
factory/cf_gcd.cc
rca4a073 rbb82f0 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_gcd.cc,v 1.6 1 2008-05-16 13:11:31 Singular Exp $ */2 /* $Id: cf_gcd.cc,v 1.62 2008-06-16 12:55:41 Singular Exp $ */ 3 3 4 4 #include <config.h> … … 16 16 #include "ftmpl_functions.h" 17 17 #include "ffreval.h" 18 #include "algext.h" 18 19 19 20 #ifdef HAVE_NTL … … 762 763 return cf_content( g, f ); 763 764 } 765 if (isOn(SW_USE_QGCD)) 766 { 767 Variable m; 768 if ((hasFirstAlgVar(f,m) || hasFirstAlgVar(g,m)) 769 //&& f.isUnivariate() 770 //&& g.isUnivariate() 771 && (getCharacteristic() == 0) 772 ) 773 return QGCD(f,g); 774 } 775 764 776 if ( f.inExtension() && getReduce( f.mvar() ) ) 765 return 1;777 return CanonicalForm(1); 766 778 else 767 779 { … … 1149 1161 } 1150 1162 } 1163 #include "algext.cc" -
factory/cf_switches.cc
rca4a073 rbb82f0 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_switches.cc,v 1. 9 2007-11-20 10:08:03Singular Exp $ */2 /* $Id: cf_switches.cc,v 1.10 2008-06-16 12:54:25 Singular Exp $ */ 3 3 4 4 //{{{ docu … … 37 37 On(SW_USE_EZGCD); 38 38 //On(SW_USE_EZGCD_P); // still testing 39 //On(SW_USE_QGCD); 39 40 } 40 41 //}}} -
factory/cf_switches.h
rca4a073 rbb82f0 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: cf_switches.h,v 1.1 2 2007-11-20 10:08:03Singular Exp $ */2 /* $Id: cf_switches.h,v 1.13 2008-06-16 12:54:05 Singular Exp $ */ 3 3 4 4 #ifndef INCL_CF_SWITCHES_H … … 19 19 // 20 20 //}}} 21 const int CFSwitchesMax = 1 5;21 const int CFSwitchesMax = 16; 22 22 //}}} 23 23
Note: See TracChangeset
for help on using the changeset viewer.