Changeset b3daab in git for kernel/tgb.cc


Ignore:
Timestamp:
Feb 15, 2007, 8:43:36 AM (17 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
06ee2319dd4b19ec3a80cc26e303adc33c355849
Parents:
0cf2ccd7e51a54d39f2083257dce639c54c827e0
Message:
* bricken: some prot


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

Legend:

Unmodified
Added
Removed
  • kernel/tgb.cc

    r0cf2ccd rb3daab  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb.cc,v 1.131 2007-02-14 13:55:47 bricken Exp $ */
     7/* $Id: tgb.cc,v 1.132 2007-02-15 07:43:36 bricken Exp $ */
    88/*
    99* ABSTRACT: slimgb and F4 implementation
     
    23342334#endif
    23352335    nIrreducibleMonomials=0;
     2336    nReducibleMonomials=0;
    23362337    temp_term=pOne();
    23372338  }
     
    23592360 
    23602361  int nIrreducibleMonomials;
     2362  int nReducibleMonomials;
    23612363protected:
    23622364  DataNoroCacheNode* treeInsert(poly term,poly nf,int len){
    23632365    int i;
     2366    nReducibleMonomials++;
    23642367    int nvars=pVariables;
    23652368    NoroCacheNode* parent=&root;
     
    28352838  int n=irr_nodes.size();//cache.countIrreducibleMonomials();
    28362839  cache.nIrreducibleMonomials=n;
    2837   if (TEST_OPT_PROT)
     2840  if (TEST_OPT_PROT){
    28382841    Print("Irred Mon:%d\n",n);
     2842    Print("red Mon:%d\n",cache.nReducibleMonomials);
     2843  }
    28392844  TermNoroDataNode* term_nodes=(TermNoroDataNode*) omalloc(n*sizeof(TermNoroDataNode));
    28402845 
Note: See TracChangeset for help on using the changeset viewer.