Changeset ec664a2 in git
- Timestamp:
- Jul 31, 2012, 11:45:53 AM (11 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 773d281c087d1388ff04cd6c70faccb93fe0fc03
- Parents:
- 3ed675898c2676dd8ccc1bcc862fa6d6b80b234e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facFactorize.cc
r3ed6758 rec664a2 29 29 #include "facSparseHensel.h" 30 30 31 TIMING_DEFINE_PRINT( bi_factorize)32 TIMING_DEFINE_PRINT( hensel_lift)33 TIMING_DEFINE_PRINT(fac tor_recombination)31 TIMING_DEFINE_PRINT(fac_bi_factorize) 32 TIMING_DEFINE_PRINT(fac_hensel_lift) 33 TIMING_DEFINE_PRINT(fac_factor_recombination) 34 34 35 35 #ifdef HAVE_NTL … … 715 715 bufLift= degree (A, y) + 1 + degree (LC(A, x), y); 716 716 717 TIMING_START ( bi_factorize);717 TIMING_START (fac_bi_factorize); 718 718 bufBiFactors= ratBiSqrfFactorize (bufAeval.getFirst(), v); 719 TIMING_END_AND_PRINT ( bi_factorize,719 TIMING_END_AND_PRINT (fac_bi_factorize, 720 720 "time for bivariate factorization: "); 721 721 bufBiFactors.removeFirst(); … … 995 995 ExtensionInfo info= ExtensionInfo (false); 996 996 CFList liftedFactors; 997 TIMING_START ( hensel_lift);997 TIMING_START (fac_hensel_lift); 998 998 liftedFactors= henselLiftAndEarly 999 999 (A, MOD, liftBounds, earlySuccess, earlyFactors, 1000 1000 Aeval, biFactors, evaluation, info); 1001 TIMING_END_AND_PRINT ( hensel_lift, "time for hensel lifting: ");1002 1003 TIMING_START (fac tor_recombination);1001 TIMING_END_AND_PRINT (fac_hensel_lift, "time for hensel lifting: "); 1002 1003 TIMING_START (fac_factor_recombination); 1004 1004 factors= factorRecombination (A, liftedFactors, MOD); 1005 TIMING_END_AND_PRINT (fac tor_recombination,1005 TIMING_END_AND_PRINT (fac_factor_recombination, 1006 1006 "time for factor recombination: "); 1007 1007
Note: See TracChangeset
for help on using the changeset viewer.