Changeset 18255d in git for Singular/kutil.h


Ignore:
Timestamp:
Mar 19, 1998, 5:05:53 PM (26 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
737b2b4e3dd7efb3603cab701c4146ea17e9805e
Parents:
7f1b912b1613387b9ef8e0f2a053a2c335b9b5da
Message:
1998-03-18  Olaf Bachmann  <obachman@mathematik.uni-kl.de>

	* Cleaned up COMP_FAST and related #defines almost everywhere


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

Legend:

Unmodified
Added
Removed
  • Singular/kutil.h

    r7f1b91 r18255d  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: kutil.h,v 1.5 1998-03-16 14:56:35 obachman Exp $ */
     6/* $Id: kutil.h,v 1.6 1998-03-19 16:05:48 obachman Exp $ */
    77/*
    88* ABSTRACT: kernel: utils for std
     
    173173BOOLEAN homogTest(polyset F, int Fmax);
    174174BOOLEAN newHEdge(polyset S, int ak,kStrategy strat);
    175 rOrderType_t spGetOrderType(ring r, kStrategy strat);
     175
     176rOrderType_t spGetOrderType(ring r, int modrank, int syzcomp);
     177inline rOrderType_t spGetOrderType(ring r, kStrategy strat)
     178{
     179  return spGetOrderType(r, strat->ak, strat->syzComp);
     180}
     181
     182inline int MAX(int a, int b)
     183{
     184  if (a > b) return a;
     185  else return b;
     186}
     187
    176188
    177189inline TSet initT () { return (TSet)Alloc0(setmax*sizeof(TObject)); }
Note: See TracChangeset for help on using the changeset viewer.