Changeset e7c6b22 in git


Ignore:
Timestamp:
Sep 16, 2008, 2:36:26 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
be2303748439a06ae87f4f8d31b1aed17359c508
Parents:
36605fd3c4e2a7b120265ffeb5acfc3f0e20a74e
Message:
*hannes: kInterRedOld


git-svn-id: file:///usr/local/Singular/svn/trunk@11055 2c84dea3-7e68-4137-9b89-c4e89433aadc
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • Singular/wrapper.cc

    r36605f re7c6b22  
    118118  {
    119119    //Print ("interred\n");
    120     result=kInterRed(result);
     120    result=kInterRedOld(result);
    121121    idSkipZeroes(result);
    122122  }
  • kernel/kstd1.h

    r36605f re7c6b22  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: kstd1.h,v 1.5 2008-09-10 16:41:12 Singular Exp $ */
     6/* $Id: kstd1.h,v 1.6 2008-09-16 12:32:33 Singular Exp $ */
    77/*
    88* ABSTRACT
     
    4545
    4646ideal kInterRed (ideal F, ideal Q=NULL);
     47ideal kInterRedOld (ideal F, ideal Q=NULL);
    4748long   kModDeg(poly p, ring r = currRing);
    4849long  kHomModDeg(poly p, ring r = currRing);
  • kernel/sca.cc

    r36605f re7c6b22  
    77 *  Author:  motsak (Oleksandr Motsak)
    88 *  Created: 2006/12/18
    9  *  Version: $Id: sca.cc,v 1.28 2008-08-18 12:25:35 Singular Exp $
     9 *  Version: $Id: sca.cc,v 1.29 2008-09-16 12:32:33 Singular Exp $
    1010 *******************************************************************/
    1111
     
    12601260  if (TEST_OPT_REDSB){
    12611261    ideal I = strat->Shdl;
    1262     ideal erg = kInterRed(I,tempQ);
     1262    ideal erg = kInterRedOld(I,tempQ);
    12631263    assume(I!=erg);
    12641264    id_Delete(&I, currRing);
     
    20312031    // must be at the very end (after exitBuchMora) as it changes the S set!!!
    20322032    ideal I = strat->Shdl;
    2033     ideal erg = kInterRed(I,tempQ);
     2033    ideal erg = kInterRedOld(I,tempQ);
    20342034    assume(I!=erg);
    20352035    id_Delete(&I, currRing);
  • kernel/syz.cc

    r36605f re7c6b22  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: syz.cc,v 1.15 2008-06-20 16:15:13 Singular Exp $ */
     4/* $Id: syz.cc,v 1.16 2008-09-16 12:32:33 Singular Exp $ */
    55
    66/*
     
    317317    {
    318318      deg0 = idJet(res[index+1],0);
    319       reddeg0 = kInterRed(deg0);
     319      reddeg0 = kInterRedOld(deg0);
    320320      idDelete(&deg0);
    321321      have_del = new intvec(IDELEMS(res[index]));
     
    522522    if (minim || (syzIndex!=0))
    523523    {
    524       temp = kInterRed(res[syzIndex],currQuotient);
     524      temp = kInterRedOld(res[syzIndex],currQuotient);
    525525      idDelete(&res[syzIndex]);
    526526      idSkipZeroes(temp);
  • kernel/tgb.cc

    r36605f re7c6b22  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb.cc,v 1.158 2008-08-18 12:25:35 Singular Exp $ */
     7/* $Id: tgb.cc,v 1.159 2008-09-16 12:32:33 Singular Exp $ */
    88/*
    99* ABSTRACT: slimgb and F4 implementation
     
    32983298  I=c->S;
    32993299  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);
    33023303    assume(I!=erg);
    33033304    id_Delete(&I, currRing);
  • kernel/walkSupport.cc

    r36605f re7c6b22  
    959959  assume(G != NULL);
    960960
    961   ideal GG = kInterRed(G, NULL);
     961  ideal GG = kInterRedOld(G, NULL);
    962962  idDelete(&G);
    963963  return GG;
Note: See TracChangeset for help on using the changeset viewer.