Changeset 07b1cf in git for kernel/gr_kstd2.cc


Ignore:
Timestamp:
Feb 1, 2007, 7:53:54 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
add114ed9eca28cf67e9f12e3e5a60d07696ce8a
Parents:
2cd0ca7c81f7d71ae3b530712b2d135a4df1802e
Message:
*hannes: OPT_SB_1


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

Legend:

Unmodified
Added
Removed
  • kernel/gr_kstd2.cc

    r2cd0ca r07b1cf  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: gr_kstd2.cc,v 1.11 2007-01-31 23:51:23 motsak Exp $ */
     4/* $Id: gr_kstd2.cc,v 1.12 2007-02-01 18:53:54 Singular Exp $ */
    55/*
    66*  ABSTRACT -  Kernel: noncomm. alg. of Buchberger
     
    2020#include "kstd1.h"
    2121#include "khstd.h"
     22#include "kutil.h"
    2223//#include "spolys.h"
    2324//#include "cntrlc.h"
     
    936937
    937938  /* complete reduction of the standard basis--------- */
    938   if (TEST_OPT_REDSB){
    939      completeReduce(strat); // ???
    940 
    941 //    ideal I = strat->Shdl;
    942 //    ideal erg = kInterRed(I,Q);
    943 //    assume(I!=erg);
    944 //    id_Delete(&I, currRing);
    945 //    strat->Shdl = erg;
    946   }
    947 
     939  if (TEST_OPT_SB_1)
     940  {
     941    int k=1;
     942    int j;
     943    while(k<=strat->sl)
     944    {
     945      j=0;
     946      loop
     947      {
     948        if (j>=k) break;
     949        clearS(strat->S[j],strat->sevS[j],&k,&j,strat);
     950        j++;
     951      }
     952      k++;
     953    }
     954  }
     955
     956  if (TEST_OPT_REDSB)
     957     completeReduce(strat);
    948958  /* release temp data-------------------------------- */
    949959  exitBuchMora(strat);
Note: See TracChangeset for help on using the changeset viewer.