Changeset 45d2332 in git for libpolys/polys/nc


Ignore:
Timestamp:
Mar 31, 2011, 6:30:18 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
3f2fb2cdc5019bbfc97d4fa27121402be181a8a3
Parents:
ab4f17f53255dd31a9347110c1d434aea6bda6ae
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-03-31 18:30:18+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:16+01:00
Message:
FIX: p_polys.cc
CHG: use mylimits.h instead of limit.h in misc/auxiliary.h!
Location:
libpolys/polys/nc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/nc/nc.h

    rab4f17 r45d2332  
    11#ifndef POLYS_NC_H
    22#define POLYS_NC_H
     3
    34
    45#ifdef HAVE_PLURAL
     
    3536
    3637// //////////////////////////////////////////////////////
     38
     39
    3740
    3841// NC pProcs:
     
    181184
    182185
     186
     187// //////////////////////////////////////////////////////////////////////// //
     188// we must always have this test!?
     189inline bool rIsSCA(const ring r)
     190{
     191#ifdef HAVE_PLURAL
     192  return rIsPluralRing(r) && (ncRingType(r) == nc_exterior);
     193#else
     194  return false;
     195#endif
     196}
     197
    183198// //////////////////////////////////////////////////////////////////////// //
    184199// NC inlines
     
    281296}
    282297
     298
     299
     300/* subst: */
     301poly nc_pSubst(poly p, int n, poly e, const ring r);
     302
     303
     304
    283305#endif /* HAVE_PLURAL */
    284306
  • libpolys/polys/nc/sca.h

    rab4f17 r45d2332  
    22#define SCA_H
    33
    4 /****************************************
    5 *  Computer Algebra System SINGULAR     *
    6 ****************************************/
    7 /* $Id$ */
     4#ifdef HAVE_PLURAL
    85
    9 #include <kernel/ring.h>
    10 #include <kernel/gring.h>
    11 #include <kernel/structs.h>
    12 #include <kernel/intvec.h>
     6#include <polys/nc/nc.h>
    137
    14 
    15 // we must always have this test!
    16 inline bool rIsSCA(const ring r)
    17 {
    18 #ifdef HAVE_PLURAL
    19   return rIsPluralRing(r) && (ncRingType(r) == nc_exterior);
    20 #else
    21   return false;
    22 #endif
    23 }
    24 
    25 
    26 #ifdef HAVE_PLURAL
    278// we must always have this test!
    289inline ideal SCAQuotient(const ring r)
     
    3213}
    3314
    34 #include <kernel/gring.h>
    3515
    3616
Note: See TracChangeset for help on using the changeset viewer.