Changeset af4c56 in git
- Timestamp:
- Jun 26, 1996, 3:17:03 PM (27 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- fcae675a16caf8d4d11c889aacd1d01e01da7806
- Parents:
- 36652d871bca0b0ba5d9cff54bdbe35c3b39fdf0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/fac_univar.cc
r36652d8 raf4c56 1 1 // emacs edit mode for this file is -*- C++ -*- 2 // $Id: fac_univar.cc,v 1. 2 1996-06-13 10:43:49stobbe Exp $2 // $Id: fac_univar.cc,v 1.3 1996-06-26 13:17:03 stobbe Exp $ 3 3 4 4 /* 5 5 $Log: not supported by cvs2svn $ 6 Revision 1.2 1996/06/13 10:43:49 stobbe 7 "ZFactorizeUnivariate: fix to last bug fix (no assignment) 8 " 9 6 10 Revision 1.1 1996/06/13 10:34:04 stobbe 7 11 "ZFactorizeUnivariate: do not use Berlekamp-Algorithm since there is a … … 545 549 if ( ZF.getFirst().factor().inCoeffDomain() ) 546 550 ZF.removeFirst(); 547 if ( ! cont.isOne() ) 548 549 if ( lc( ff ).sign() < 0 ) 550 ZF.insert( CFFactor( -cont, 1 ) ); 551 else 552 ZF.insert( CFFactor( cont, 1 ) ); 551 if ( lc( ff ).sign() < 0 ) 552 ZF.insert( CFFactor( -cont, 1 ) ); 553 else if ( ! cont.isOne() ) 554 ZF.insert( CFFactor( cont, 1 ) ); 553 555 if ( D != 0 ) { 554 556 delete [] D;
Note: See TracChangeset
for help on using the changeset viewer.