Changeset f20117 in git


Ignore:
Timestamp:
Jan 6, 2009, 5:53:54 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
753f9d279599c9b867a6d1e24ceace76b99a5066
Parents:
fee4c232c2e228392bbbf89f63f4188ea34e9c61
Message:
*hannes: format


git-svn-id: file:///usr/local/Singular/svn/trunk@11283 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
kernel
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/ideals.cc

    rfee4c2 rf20117  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.64 2009-01-06 15:49:14 Singular Exp $ */
     4/* $Id: ideals.cc,v 1.65 2009-01-06 16:53:54 Singular Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    687687
    688688  homog = idHomModule(h1,currQuotient,&wth);
    689   if (rHasGlobalOrdering_currRing)
     689  if (rHasGlobalOrdering_currRing())
    690690  {
    691691    if(!homog)
  • kernel/kutil.cc

    rfee4c2 rf20117  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.115 2009-01-06 15:49:14 Singular Exp $ */
     4/* $Id: kutil.cc,v 1.116 2009-01-06 16:53:54 Singular Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    309309  poly h;
    310310
    311   if(rHasGlobalOrdering_currRing) return;
     311  if(rHasGlobalOrdering_currRing()) return;
    312312  if(TEST_OPT_CANCELUNIT) return;
    313313
  • kernel/ring.h

    rfee4c2 rf20117  
    77* ABSTRACT - the interpreter related ring operations
    88*/
    9 /* $Id: ring.h,v 1.35 2009-01-06 15:49:14 Singular Exp $ */
     9/* $Id: ring.h,v 1.36 2009-01-06 16:53:54 Singular Exp $ */
    1010
    1111/* includes */
     
    346346//{ return (r->OrdSgn==1); }
    347347#define rHasGlobalOrdering(R) ((R)->OrdSgn==1)
    348 #define rHasGlobalOrdering_currRing (pOrdSgn==1)
     348#define rHasGlobalOrdering_currRing() (pOrdSgn==1)
    349349//inline BOOLEAN rHasLocalOrMixedOrdering(const ring r=currRing)
    350350//{ return (r->OrdSgn==-1); }
Note: See TracChangeset for help on using the changeset viewer.