Changeset d0207e9 in git
- Timestamp:
- Feb 26, 2009, 3:23:07 PM (14 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 4751d7a7e4db5fb6ec994a889d43d7f78013fbfa
- Parents:
- b8cf6c7396a74cf9f5eaabb53c4e78e2f9675873
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kInline.cc
rb8cf6c rd0207e9 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 8/00 9 * Version: $Id: kInline.cc,v 1.1 2 2009-02-21 14:11:06Singular Exp $9 * Version: $Id: kInline.cc,v 1.13 2009-02-26 14:22:38 Singular Exp $ 10 10 *******************************************************************/ 11 11 #ifndef KINLINE_CC … … 418 418 { 419 419 assume(p != NULL); 420 #ifdef HAVE_RATGRING 421 p= ::pCleardenom(p); 422 #else 420 423 ::pCleardenom(p); 424 #endif 421 425 if (t_p != NULL) 422 426 pSetCoeff0(t_p, pGetCoeff(p)); -
kernel/polys.h
rb8cf6c rd0207e9 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: polys.h,v 1.2 0 2008-07-26 16:05:41Singular Exp $ */6 /* $Id: polys.h,v 1.21 2009-02-26 14:22:49 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT - all basic methods to manipulate polynomials of the … … 364 364 void pContent(poly p); 365 365 void pSimpleContent(poly p, int s); 366 voidpCleardenom(poly p);366 poly pCleardenom(poly p); 367 367 void pCleardenom_n(poly p,number &c); 368 368 void p_Normalize(poly p,const ring r); -
kernel/polys1.cc
rb8cf6c rd0207e9 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys1.cc,v 1.3 4 2009-02-26 11:24:15Singular Exp $ */4 /* $Id: polys1.cc,v 1.35 2009-02-26 14:23:07 Singular Exp $ */ 5 5 6 6 /* … … 942 942 #endif 943 943 944 void pCleardenom(poly ph) 945 { 944 poly pCleardenom(poly ph) 945 { 946 poly start=ph; 946 947 number d, h; 947 948 poly p; … … 951 952 { 952 953 pContent(ph); 953 return ;954 return start; 954 955 } 955 956 #endif … … 1058 1059 { 1059 1060 pContentRat(ph); 1061 start=ph; 1060 1062 } 1061 1063 #endif 1062 1064 } 1065 return start; 1063 1066 } 1064 1067
Note: See TracChangeset
for help on using the changeset viewer.