Changeset 3a3392c in git
- Timestamp:
- Apr 27, 1998, 4:47:03 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 9e2ba3333cb37221b091178f15de38c4f2cfbf24
- Parents:
- e0af3faf6be09aa0e5d1dab637336b2fa2a30739
- Location:
- Singular
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ChangeLog
re0af3fa r3a3392c 1 Mon Apr 27 16:45:41 MET DST 1998 hannes 2 * fixed conversion of factory 0 to poly NULL (clapconv.cc) 3 1 4 1998-04-27 Olaf Bachmann <obachman@mathematik.uni-kl.de> 2 5 -
Singular/clapconv.cc
re0af3fa r3a3392c 3 3 * Computer Algebra System SINGULAR * 4 4 ****************************************/ 5 // $Id: clapconv.cc,v 1.1 6 1998-04-23 09:52:07Singular Exp $5 // $Id: clapconv.cc,v 1.17 1998-04-27 14:47:01 Singular Exp $ 6 6 /* 7 7 * ABSTRACT: convert data between Singular and factory … … 157 157 } 158 158 pSetm( term ); 159 result = pAdd( result, term ); 159 if ( nIsZero(pGetCoeff(term)) ) 160 { 161 pDelete(&term); 162 } 163 else 164 { 165 result = pAdd( result, term ); 166 } 160 167 } 161 168 } -
Singular/clapsing.cc
re0af3fa r3a3392c 3 3 * Computer Algebra System SINGULAR * 4 4 ****************************************/ 5 // $Id: clapsing.cc,v 1.3 4 1998-04-24 17:19:29 schmidtExp $5 // $Id: clapsing.cc,v 1.35 1998-04-27 14:47:02 Singular Exp $ 6 6 /* 7 7 * ABSTRACT: interface between Singular and factory … … 97 97 { 98 98 poly res=NULL; 99 99 100 100 if (f) pCleardenom(f); 101 101 if (g) pCleardenom(g); 102 102 103 103 // for now there is only the possibility to handle polynomials over 104 104 // Q and Fp ... … … 129 129 CanonicalForm F( convSingAPClapAP( f,a ) ), G( convSingAPClapAP( g,a ) ); 130 130 res= convClapAPSingAP( gcd( F, G ) ); 131 } 131 } 132 132 } 133 133 else … … 634 634 (**v)[j]=(*w)[i]; j++; 635 635 } 636 } 636 } 637 637 delete w; 638 } 638 } 639 639 } 640 640 if (res->m[0]==NULL) -
Singular/febase.cc
re0af3fa r3a3392c 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: febase.cc,v 1.3 2 1998-04-27 12:34:12 obachmanExp $ */4 /* $Id: febase.cc,v 1.33 1998-04-27 14:47:03 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: i/o system … … 711 711 return got; 712 712 } 713 714 715
Note: See TracChangeset
for help on using the changeset viewer.