Changeset 07b1cf in git for kernel/gr_kstd2.cc
- Timestamp:
- Feb 1, 2007, 7:53:54 PM (16 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- add114ed9eca28cf67e9f12e3e5a60d07696ce8a
- Parents:
- 2cd0ca7c81f7d71ae3b530712b2d135a4df1802e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/gr_kstd2.cc
r2cd0ca r07b1cf 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: gr_kstd2.cc,v 1.1 1 2007-01-31 23:51:23 motsakExp $ */4 /* $Id: gr_kstd2.cc,v 1.12 2007-02-01 18:53:54 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - Kernel: noncomm. alg. of Buchberger … … 20 20 #include "kstd1.h" 21 21 #include "khstd.h" 22 #include "kutil.h" 22 23 //#include "spolys.h" 23 24 //#include "cntrlc.h" … … 936 937 937 938 /* 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); 948 958 /* release temp data-------------------------------- */ 949 959 exitBuchMora(strat);
Note: See TracChangeset
for help on using the changeset viewer.