Changeset 00f47b in git
- Timestamp:
- Mar 11, 1999, 5:32:55 PM (25 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- e1fb6deecf2002e305a7f34e78491c3ea101a3b2
- Parents:
- f99917fc47a2b22bde5ec1bddc687567f3cd4dba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/matpol.cc
rf99917f r00f47b 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: matpol.cc,v 1.2 2 1999-03-11 15:58:08Singular Exp $ */4 /* $Id: matpol.cc,v 1.23 1999-03-11 16:32:55 Singular Exp $ */ 5 5 6 6 /* … … 831 831 } 832 832 } 833 if (i == l) 833 if (i == l) 834 834 { 835 835 // check monom 1 last: 836 h = mpExdiv(f, MATELEM(co,1,pos_of_1)); 837 if (h!=NULL) 836 if (pos_of_1 != -1) 838 837 { 839 MATELEM(co,2,pos_of_1) = pAdd(MATELEM(co,2,pos_of_1), h); 840 break; 838 h = mpExdiv(f, MATELEM(co,1,pos_of_1)); 839 if (h!=NULL) 840 { 841 MATELEM(co,2,pos_of_1) = pAdd(MATELEM(co,2,pos_of_1), h); 842 } 841 843 } 842 844 break; 843 } 845 } 844 846 i ++; 845 847 }
Note: See TracChangeset
for help on using the changeset viewer.