Changeset cf80ce in git
- Timestamp:
- Mar 27, 1998, 3:21:29 PM (25 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- 0498af627b4dbd25f3b68c7b681256ffe9cfdda5
- Parents:
- 427ba93431587575a0ada806631e26f2aa275abc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/fglmcomb.cc
r427ba9 rcf80ce 1 1 // emacs edit mode for this file is -*- C++ -*- 2 // $Id: fglmcomb.cc,v 1. 7 1998-01-27 14:16:14 pohlExp $2 // $Id: fglmcomb.cc,v 1.8 1998-03-27 14:21:29 Singular Exp $ 3 3 4 4 /**************************************** … … 193 193 poly temp= monset; 194 194 for ( k= 0; k < numMonoms; k++ ) { 195 m[k]= pOne(); 196 pSetExpV( m[k], temp->exp ); 197 pSetm( m[k] ); 195 // m[k]= pOne(); 196 // pSetExpV( m[k], temp->exp ); 197 // pSetm( m[k] ); 198 m[k]= pNew(); 199 pCopy2( m[k], temp ); 200 pSetCoeff( m[k], nInit(1) ); 198 201 temp= pIter( temp ); 199 202 } … … 250 253 basisMax+= basisBS; 251 254 } 252 basis[basisSize]= pOne(); 253 pSetExpV( basis[basisSize], temp->exp ); 254 pSetm( basis[basisSize] ); 255 // basis[basisSize]= pOne(); 256 // pSetExpV( basis[basisSize], temp->exp ); 257 // pSetm( basis[basisSize] ); 258 basis[basisSize]= pNew(); 259 pCopy2( basis[basisSize], temp ); 260 pSetCoeff( basis[basisSize], nInit(1) ); 255 261 basisSize++; 256 262 }
Note: See TracChangeset
for help on using the changeset viewer.