Changeset 9e47237 in git
- Timestamp:
- Jul 3, 2012, 8:22:01 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'ad2543eab51733612ba7d118afc77edca719600e')
- Children:
- 070c1b4d9f283afebff4ed41fcf721b71a9716df
- Parents:
- cd81417ddd6d2d3d0d2f8b3b8f109992056f2920
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-07-03 20:22:01+02:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-08-03 10:03:18+02:00
- Location:
- libfac
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libfac/charset/charset.cc
rcd8141 r9e47237 493 493 if ( degree(elem) > 1 ) // linear poly's are irreduzible 494 494 { 495 qs = Factorize(elem);495 qs = factorize(elem); 496 496 // remove a constant 497 497 if (qs.getFirst().factor().degree()==0) qs.removeFirst(); -
libfac/factor/Factor.cc
rcd8141 r9e47237 805 805 { 806 806 //out_cf("Factorize ",F,"\n"); 807 CFFList Outputlist,SqrFreeList,Intermediatelist,Outputlist2; 808 ListIterator<CFFactor> i,j; 809 CanonicalForm g=1,unit=1,r=1; 810 Variable minpoly; // dummy 811 int exp; 812 CFMap m; 807 CFFList Outputlist; 813 808 814 809 // INTERRUPTHANDLER … … 832 827 return Outputlist; 833 828 } 829 CFFList SqrFreeList,Intermediatelist,Outputlist2; 830 ListIterator<CFFactor> i,j; 831 CanonicalForm g=1,unit=1,r=1; 832 Variable minpoly; // dummy 833 int exp; 834 CFMap m; 834 835 TIMING_START(factorize_time); 835 836 // search an "optimal" main variavble
Note: See TracChangeset
for help on using the changeset viewer.