Changeset 1aa55bf in git for Singular/kutil.h


Ignore:
Timestamp:
Oct 16, 2000, 2:06:41 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'd08f5f0bb3329b8ca19f23b74cb1473686415c3a')
Children:
dc078459b7830eda29e3e82e01acd64423bbddc0
Parents:
b559f83182d4517c4869319c1caa185e21439112
Message:
* sparsemat.cc : faster smSelectCopy and relatives
* ring: VarL_* stuff
* divisiblity tests based on longs


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

Legend:

Unmodified
Added
Removed
  • Singular/kutil.h

    rb559f8 r1aa55bf  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: kutil.h,v 1.32 2000-10-04 13:12:03 obachman Exp $ */
     6/* $Id: kutil.h,v 1.33 2000-10-16 12:06:36 obachman Exp $ */
    77/*
    88* ABSTRACT: kernel: utils for kStd
     
    3434    {
    3535      memset((void*) this, 0, sizeof(sTObject));
     36    }
     37  sTObject(poly _p)
     38    {
     39      memset((void*) this, 0, sizeof(sTObject));
     40      p = _p;
    3641    }
    3742};
     
    5257      memset((void*) this, 0, sizeof(sLObject));
    5358      lmRing = tailRing = currRing;
     59    }
     60  sLObject(poly _p)
     61    {
     62      memset((void*) this, 0, sizeof(sLObject));
     63      lmRing = tailRing = currRing;
     64      p = _p;
    5465    }
    5566  // spoly related things
Note: See TracChangeset for help on using the changeset viewer.