Changeset c232af in git for Singular/semic.cc
- Timestamp:
- Aug 14, 2000, 2:58:28 PM (23 years ago)
- Branches:
- (u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
- Children:
- d26c2e9dd38f1531c0e77c38e6177109182b5bca
- Parents:
- 4697a8a1ccbf49d0048033ea29c651e3966ba729
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/semic.cc
r4697a8a rc232af 176 176 lists spectrum::thelist( void ) 177 177 { 178 lists L = (lists) AllocSizeOf( slists);178 lists L = (lists)omAllocBin( slists _bin); 179 179 180 180 L->Init( 6 ); 181 181 182 intvec *num = NewIntvec1( n );183 intvec *den = NewIntvec1( n );184 intvec *mult = NewIntvec1( n );182 intvec *num = new intvec( n ); 183 intvec *den = new intvec( n ); 184 intvec *mult = new intvec( n ); 185 185 186 186 for( int i=0; i<n; i++ )
Note: See TracChangeset
for help on using the changeset viewer.