Changeset 6b503c in git
- Timestamp:
- Apr 21, 2006, 5:37:10 PM (17 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- f67df37fee569b5112c38948186efaccb3c63db5
- Parents:
- 0fc5364aa53658193bfb5a149fe38f92ff61bec5
- Location:
- factory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/int_poly.cc
r0fc536 r6b503c 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: int_poly.cc,v 1.1 6 2005-01-13 15:10:22Singular Exp $ */2 /* $Id: int_poly.cc,v 1.17 2006-04-21 15:37:10 Singular Exp $ */ 3 3 4 4 #include <config.h> … … 582 582 exp = aPoly->firstTerm->exp; 583 583 while (first && ( first->exp >= exp ) && divideok ) { 584 divideok = ::divremt( first->coeff, coeff, newcoeff, dummycoeff );584 divideok = divremt( first->coeff, coeff, newcoeff, dummycoeff ); 585 585 if ( divideok && dummycoeff.isZero() ) { 586 586 newexp = first->exp - exp; … … 1103 1103 1104 1104 while ( cursor && divideok ) { 1105 divideok = ::divremt( cursor->coeff, c, cquot, crem );1105 divideok = divremt( cursor->coeff, c, cquot, crem ); 1106 1106 divideok = divideok && crem.isZero(); 1107 1107 if ( divideok ) { -
factory/variable.h
r0fc536 r6b503c 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: variable.h,v 1. 4 2005-04-13 15:01:53Singular Exp $ */2 /* $Id: variable.h,v 1.5 2006-04-21 15:37:10 Singular Exp $ */ 3 3 4 4 #ifndef INCL_VARIABLE_H … … 66 66 #endif /* NOSTREAMIO */ 67 67 friend void swap_levels(); 68 friend Variable rootOf( const CanonicalForm &, char name = '@');68 friend Variable rootOf( const CanonicalForm &, char name ); 69 69 }; 70 Variable rootOf( const CanonicalForm &, char name = '@' ); 70 71 71 72 inline int level( const Variable & v ) { return v.level(); }
Note: See TracChangeset
for help on using the changeset viewer.