Changeset 1936fb in git
- Timestamp:
- Jul 22, 2014, 5:00:36 PM (9 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 39ed94e4ba176b9cdda63c31fb26f14e2627ad3c
- Parents:
- cc16f03d558b50b0724f4d7bbac2f7df23d80592
- git-author:
- Martin Lee <martinlee84@web.de>2014-07-22 17:00:36+02:00
- git-committer:
- Martin Lee <martinlee84@web.de>2014-07-22 17:13:11+02:00
- Location:
- factory
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cfModResultant.cc
rcc16f0 r1936fb 38 38 #endif 39 39 40 #ifdef HAVE_NTL 40 41 TIMING_DEFINE_PRINT(fac_resultant_p) 41 42 … … 680 681 return swapvar (result, X, x); 681 682 } 682 683 #endif 684 -
factory/facAlgExt.cc
rcc16f0 r1936fb 61 61 CanonicalForm norm; 62 62 TIMING_START (fac_alg_resultant); 63 #ifdef HAVE_NTL 63 64 if (degg >= 8 || degmipo >= 8) 64 65 norm= resultantZ (g, mipo, x); 65 66 else 67 #endif 66 68 norm= resultant (g, mipo, x); 67 69 TIMING_END_AND_PRINT (fac_alg_resultant, "time to compute resultant0: "); … … 83 85 CanonicalForm norm; 84 86 TIMING_START (fac_alg_resultant); 87 #ifdef HAVE_NTL 85 88 if (degg >= 8 || degmipo >= 8) 86 89 norm= resultantZ (g, mipo, x); 87 90 else 91 #endif 88 92 norm= resultant (g, mipo, x); 89 93 TIMING_END_AND_PRINT (fac_alg_resultant, "time to compute resultant0: "); … … 104 108 g *= bCommonDen (g); 105 109 TIMING_START (fac_alg_resultant); 110 #ifdef HAVE_NTL 106 111 if (degg >= 8 || degmipo >= 8) 107 112 norm= resultantZ (g (x, alpha), mipo, x); 108 113 else 114 #endif 109 115 norm= resultant (g (x, alpha), mipo, x); 110 116 TIMING_END_AND_PRINT (fac_alg_resultant,"time to compute resultant1: "); … … 115 121 g *= bCommonDen (g); 116 122 TIMING_START (fac_alg_resultant); 123 #ifdef HAVE_NTL 117 124 if (degg >= 8 || degmipo >= 8) 118 125 norm= resultantZ (g (x, alpha), mipo, x); 119 126 else 127 #endif 120 128 norm= resultant (g (x, alpha), mipo, x); 121 129 TIMING_END_AND_PRINT (fac_alg_resultant,"time to compute resultant2: "); -
factory/facAlgFunc.cc
rcc16f0 r1936fb 188 188 Off(SW_RATIONAL); 189 189 CanonicalForm result; 190 #ifdef HAVE_NTL 190 191 if (getCharacteristic() == 0) 191 192 result= resultantZ (fz, gz,v); 192 193 else 194 #endif 193 195 result= resultant (fz,gz,v); 194 196
Note: See TracChangeset
for help on using the changeset viewer.