Changeset e7c6b22 in git
- Timestamp:
- Sep 16, 2008, 2:36:26 PM (15 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- be2303748439a06ae87f4f8d31b1aed17359c508
- Parents:
- 36605fd3c4e2a7b120265ffeb5acfc3f0e20a74e
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/wrapper.cc
r36605f re7c6b22 118 118 { 119 119 //Print ("interred\n"); 120 result=kInterRed (result);120 result=kInterRedOld(result); 121 121 idSkipZeroes(result); 122 122 } -
kernel/kstd1.h
r36605f re7c6b22 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: kstd1.h,v 1. 5 2008-09-10 16:41:12Singular Exp $ */6 /* $Id: kstd1.h,v 1.6 2008-09-16 12:32:33 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT … … 45 45 46 46 ideal kInterRed (ideal F, ideal Q=NULL); 47 ideal kInterRedOld (ideal F, ideal Q=NULL); 47 48 long kModDeg(poly p, ring r = currRing); 48 49 long kHomModDeg(poly p, ring r = currRing); -
kernel/sca.cc
r36605f re7c6b22 7 7 * Author: motsak (Oleksandr Motsak) 8 8 * Created: 2006/12/18 9 * Version: $Id: sca.cc,v 1.2 8 2008-08-18 12:25:35Singular Exp $9 * Version: $Id: sca.cc,v 1.29 2008-09-16 12:32:33 Singular Exp $ 10 10 *******************************************************************/ 11 11 … … 1260 1260 if (TEST_OPT_REDSB){ 1261 1261 ideal I = strat->Shdl; 1262 ideal erg = kInterRed (I,tempQ);1262 ideal erg = kInterRedOld(I,tempQ); 1263 1263 assume(I!=erg); 1264 1264 id_Delete(&I, currRing); … … 2031 2031 // must be at the very end (after exitBuchMora) as it changes the S set!!! 2032 2032 ideal I = strat->Shdl; 2033 ideal erg = kInterRed (I,tempQ);2033 ideal erg = kInterRedOld(I,tempQ); 2034 2034 assume(I!=erg); 2035 2035 id_Delete(&I, currRing); -
kernel/syz.cc
r36605f re7c6b22 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: syz.cc,v 1.1 5 2008-06-20 16:15:13 Singular Exp $ */4 /* $Id: syz.cc,v 1.16 2008-09-16 12:32:33 Singular Exp $ */ 5 5 6 6 /* … … 317 317 { 318 318 deg0 = idJet(res[index+1],0); 319 reddeg0 = kInterRed (deg0);319 reddeg0 = kInterRedOld(deg0); 320 320 idDelete(°0); 321 321 have_del = new intvec(IDELEMS(res[index])); … … 522 522 if (minim || (syzIndex!=0)) 523 523 { 524 temp = kInterRed (res[syzIndex],currQuotient);524 temp = kInterRedOld(res[syzIndex],currQuotient); 525 525 idDelete(&res[syzIndex]); 526 526 idSkipZeroes(temp); -
kernel/tgb.cc
r36605f re7c6b22 5 5 * Computer Algebra System SINGULAR * 6 6 ****************************************/ 7 /* $Id: tgb.cc,v 1.15 8 2008-08-18 12:25:35Singular Exp $ */7 /* $Id: tgb.cc,v 1.159 2008-09-16 12:32:33 Singular Exp $ */ 8 8 /* 9 9 * ABSTRACT: slimgb and F4 implementation … … 3298 3298 I=c->S; 3299 3299 delete c; 3300 if (TEST_OPT_REDSB){ 3301 ideal erg=kInterRed(I,NULL); 3300 if (TEST_OPT_REDSB) 3301 { 3302 ideal erg=kInterRedOld(I,NULL); 3302 3303 assume(I!=erg); 3303 3304 id_Delete(&I, currRing); -
kernel/walkSupport.cc
r36605f re7c6b22 959 959 assume(G != NULL); 960 960 961 ideal GG = kInterRed (G, NULL);961 ideal GG = kInterRedOld(G, NULL); 962 962 idDelete(&G); 963 963 return GG;
Note: See TracChangeset
for help on using the changeset viewer.