Changeset 6f1610 in git for Singular/kstdfac.cc


Ignore:
Timestamp:
Nov 17, 1999, 1:09:27 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d6b035db0aca74c2dfaa450b41b81d9ef4adfe0b
Parents:
59f0d2fa7d5c7132b992bffd6be3a4a07eeb4b9b
Message:
* ideals: fix in idModulo
* k* fix initSSpecial
* mmbt: don't track on new


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

Legend:

Unmodified
Added
Removed
  • Singular/kstdfac.cc

    r59f0d2f r6f1610  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kstdfac.cc,v 1.30 1999-11-15 17:20:15 obachman Exp $ */
     4/* $Id: kstdfac.cc,v 1.31 1999-11-17 12:09:25 obachman Exp $ */
    55/*
    66*  ABSTRACT -  Kernel: factorizing alg. of Buchberger
     
    102102      if(i>o->tl)
    103103      {
    104         PrintS("poly p1 not found in T:");wrp(p);PrintLn();
     104        Warn("poly p1 not found in T:");wrp(p);PrintLn();
    105105        l[j].p1=pCopy(p);
    106106        break;
     
    122122      if(i>o->tl)
    123123      {
    124         PrintS("poly p2 not found in T:");wrp(p);PrintLn();
     124        Warn("poly p2 not found in T:");wrp(p);PrintLn();
    125125        l[j].p2=pCopy(p);
    126126        break;
     
    149149kStrategy kStratCopy(kStrategy o)
    150150{
     151  kTest_TS(o);
    151152  kStrategy s=(kStrategy)Alloc0SizeOf(skStrategy);
    152153  s->next=NULL;
     
    220221  s->fromT=o->fromT;
    221222  s->noetherSet=o->noetherSet;
     223  kTest_TS(s);
    222224  return s;
    223225}
     
    251253    int facdeg=pFDeg(strat->S[si]);
    252254
    253     kTest(strat);
    254255    ideal fac=singclap_factorize(strat->S[si],NULL,1);
    255     kTest(strat);
    256256#ifndef HAVE_LIBFAC_P
    257257    if (fac==NULL)
     
    462462    if (TEST_OPT_REDSB) completeReduceFac(strat,FL);
    463463  }
     464  kTest_TS(strat);
    464465  while (strat->Ll >= 0)
    465466  {
     
    484485    strat->P = strat->L[strat->Ll];
    485486    strat->Ll--;
    486     kTest(strat);
    487487    if (pNext(strat->P.p) == strat->tail)
    488488    {
     
    741741        }
    742742      } /* for */
    743     kTest(strat);
    744743      for(i=0;i<IDELEMS(fac);i++) fac->m[i]=NULL;
    745744      idDelete(&fac);
     
    753752      if (TEST_OPT_REDSB) completeReduceFac(strat,FL);
    754753    }
    755     kTest(strat);
     754    kTest_TS(strat);
    756755  }
    757756  if (TEST_OPT_DEBUG) messageSets(strat);
Note: See TracChangeset for help on using the changeset viewer.