Changeset 86aa6a1 in git for kernel/tgb_internal.h


Ignore:
Timestamp:
Jun 27, 2008, 2:10:58 PM (15 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
bb7a4d8ceb25776da1ef2e024e02fd76ff2928e4
Parents:
3b7e975b373f57a1e6cb135cc3765f937f180e12
Message:
+ deg in exp


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

Legend:

Unmodified
Added
Removed
  • kernel/tgb_internal.h

    r3b7e97 r86aa6a1  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb_internal.h,v 1.71 2008-06-25 08:49:22 bricken Exp $ */
     7/* $Id: tgb_internal.h,v 1.72 2008-06-27 12:10:58 bricken Exp $ */
    88/*
    99 * ABSTRACT: tgb internal .h file
     
    181181{
    182182  public:
    183     slimgb_alg(ideal I, int syz_comp,BOOLEAN F4);
     183    slimgb_alg(ideal I, int syz_comp,BOOLEAN F4,int deg_pos);
    184184                void introduceDelayedPairs(poly* pa,int s);
    185185    virtual ~slimgb_alg();
     
    241241  int lastDpBlockStart;
    242242  int lastCleanedDeg;
     243  int deg_pos;
    243244  BOOLEAN use_noro;
    244245  BOOLEAN use_noro_last_block;
     
    254255  #endif
    255256  unsigned long pTotaldegree(poly p){
    256       return ::pTotaldegree(p,this->r);
     257      pTest(p);
     258      //assume(pDeg(p,r)==::pTotaldegree(p,r));
     259      assume(::pTotaldegree(p,r)==p->exp[deg_pos]);
     260      return p->exp[deg_pos];
     261      //return ::pTotaldegree(p,this->r);
    257262  }
    258263  int pTotaldegree_full(poly p){
     
    301306static void do_this_spoly_stuff(int i,int j,slimgb_alg* c);
    302307//ideal t_rep_gb(ring r,ideal arg_I);
     308ideal do_t_rep_gb(ring r,ideal arg_I, int syz_comp, BOOLEAN F4_mode,int deg_pos);
    303309static BOOLEAN has_t_rep(const int & arg_i, const int & arg_j, slimgb_alg* state);
    304310static int* make_connections(int from, poly bound, slimgb_alg* c);
Note: See TracChangeset for help on using the changeset viewer.