Changeset c6e80e in git for kernel/kstd1.cc


Ignore:
Timestamp:
Jul 19, 2011, 5:39:14 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f478f5beee78cd910479115b993cc9e7b02b82a8
Parents:
a2174ab573b7b58a5ee6a6c293035fc8ecbd45ab
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-07-19 17:39:14+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:52:42+01:00
Message:
FIX: kInline.cc should be a header: kInline.h
ADD: nGcd/pDeg can be used with and without ring argument
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/kstd1.cc

    ra2174a rc6e80e  
    1515#define MORA_USE_BUCKETS
    1616
    17 #include <kernel/mod2.h>
    18 #include <omalloc/omalloc.h>
    19 
    2017#ifndef NDEBUG
    2118# define MYTEST 0
     
    2421#endif /* ifndef NDEBUG */
    2522
     23
     24#include "mod2.h"
     25
     26#include <omalloc/omalloc.h>
     27#include <misc/options.h>
     28#include <misc/intvec.h>
     29
    2630#if MYTEST
    2731#ifdef HAVE_TAIL_RING
     
    3034#endif /* if MYTEST */
    3135
    32 #include <misc/options.h>
     36#include <polys/weight.h>
     37#include <polys/polys.h>
     38
    3339#include <kernel/kutil.h>
    34 #include <kernel/kInline.cc>
    35 #include <polys/polys.h>
    3640#include <kernel/febase.h>
    3741#include <kernel/kstd1.h>
    3842#include <kernel/khstd.h>
    3943#include <kernel/stairc.h>
    40 #include <polys/weight.h>
    4144//#include "cntrlc.h"
    42 #include <misc/intvec.h>
    4345#include <kernel/ideals.h>
    4446//#include "../Singular/ipid.h"
     
    4850
    4951#ifdef HAVE_PLURAL
     52#include <polys/nc/nc.h>
    5053#include <polys/nc/sca.h>
    5154#endif
     55
     56#include <kernel/kInline.h>
    5257
    5358
     
    16901695long kModDeg(poly p, ring r)
    16911696{
    1692   long o=pWDegree(p, r);
     1697  long o=p_WDegree(p, r);
    16931698  long i=p_GetComp(p, r);
    16941699  if (i==0) return o;
Note: See TracChangeset for help on using the changeset viewer.