Changeset 052df1 in git for libpolys/polys


Ignore:
Timestamp:
Mar 11, 2016, 3:31:26 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '4bd32dfef92ec9f5ed8dceee82d14318ae147107')
Children:
a934fb3a833e0797ec8317b68545561e78de9b53
Parents:
d7ced823b2df05ae5afbab6a2cb8495e3b2085bc
Message:
monor cleanup (types)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/ring.h

    rd7ced82 r052df1  
    359359
    360360/// we must always have this test!
    361 static inline bool rIsPluralRing(const ring r)
     361static inline BOOLEAN rIsPluralRing(const ring r)
    362362{
    363363  assume(r != NULL); assume(r->cf != NULL);
     
    366366  return (r != NULL) && ((n=r->GetNC()) != NULL) /*&& (n->type != nc_error)*/;
    367367#else
    368   return false;
    369 #endif
    370 }
    371 
    372 static inline bool rIsRatGRing(const ring r)
     368  return FALSE;
     369#endif
     370}
     371
     372static inline BOOLEAN rIsRatGRing(const ring r)
    373373{
    374374  assume(r != NULL);
     
    378378          && (r->real_var_start>1);
    379379#else
    380   return false;
    381 #endif
    382 }
    383 
    384 
    385 
     380  return FALSE;
     381#endif
     382}
    386383
    387384// The following are for LaScala3 only!
Note: See TracChangeset for help on using the changeset viewer.