Changeset 01eca5 in git


Ignore:
Timestamp:
Apr 26, 2007, 7:40:59 AM (17 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
cb637fad8051814719a0ea36ed4b65a20f1114cc
Parents:
91a62a9b0d894256f34fe96f2db36abd82719469
Message:
*bricken: some cleanup


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

Legend:

Unmodified
Added
Removed
  • kernel/tgb.cc

    r91a62a r01eca5  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb.cc,v 1.151 2007-04-03 15:16:39 Singular Exp $ */
     7/* $Id: tgb.cc,v 1.152 2007-04-26 05:40:59 bricken Exp $ */
    88/*
    99* ABSTRACT: slimgb and F4 implementation
     
    23922392  #ifdef USE_NORO
    23932393  //Print("module rank%d\n",c->S->rank);
    2394   const BOOLEAN use_noro=((!(c->nc))&&(c->S->rank<=1)&&(rField_is_Zp(c->r)));
     2394  const BOOLEAN use_noro=((!(c->nc))&&(c->S->rank<=1)&&(rField_is_Zp(c->r)) &&(!(c->eliminationProblem))&&(npPrimeM<=32003));
    23952395  #else
    23962396  const BOOLEAN use_noro=FALSE;
     
    27862786        si->expected_length=pQuality(p,this,pLength(p));
    27872787        si->deg=pTotaldegree_full(p);
    2788         if (!rField_is_Zp(r)){
     2788        /*if (!rField_is_Zp(r)){
     2789          pContent(p);
    27892790          pCleardenom(p);
    2790         }
     2791        }*/
    27912792        si->lcm_of_lm=p;
    27922793
     
    33403341          if (!rField_is_Zp(r))
    33413342          {
     3343            pCleardenom(h);
    33423344            pContent(h);
    3343             pCleardenom(h);//should be unnecessary
     3345           
    33443346          } else pNorm(h);
    33453347          //TODO:GCD of TERMS
     
    38473849    if (!rField_is_Zp(c->r))
    38483850    {
     3851      pCleardenom(clear_into);//should be unnecessary
    38493852      pContent(clear_into);
    3850       pCleardenom(clear_into);//should be unnecessary
     3853     
    38513854    }
    38523855    else
     
    43314334    if (!rField_is_Zp(c->r))
    43324335    {
     4336      pCleardenom(red);//should be unnecessary
    43334337      pContent(red);
    4334       pCleardenom(red);//should be unnecessary
     4338     
    43354339
    43364340    }
Note: See TracChangeset for help on using the changeset viewer.