Changeset c232af in git for Singular/semic.cc


Ignore:
Timestamp:
Aug 14, 2000, 2:58:28 PM (23 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
Children:
d26c2e9dd38f1531c0e77c38e6177109182b5bca
Parents:
4697a8a1ccbf49d0048033ea29c651e3966ba729
Message:
* omalloc stuff


git-svn-id: file:///usr/local/Singular/svn/trunk@4524 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/semic.cc

    r4697a8a rc232af  
    176176lists   spectrum::thelist( void )
    177177{
    178     lists   L  = (lists)AllocSizeOf( slists );
     178    lists   L  = (lists)omAllocBin( slists _bin);
    179179
    180180    L->Init( 6 );
    181181
    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 );
    185185
    186186    for( int i=0; i<n; i++ )
Note: See TracChangeset for help on using the changeset viewer.