Changeset bfbc32 in git


Ignore:
Timestamp:
Dec 20, 2000, 6:20:02 PM (22 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
bf29a4692e3955673873f06d0d3ab862206e38ef
Parents:
6a137423640627dac7a85d2ab93041fdc1c7bb27
Message:
* small bug fixes


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

Legend:

Unmodified
Added
Removed
  • Singular/kutil.cc

    r6a13742 rbfbc32  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.89 2000-12-20 13:38:21 obachman Exp $ */
     4/* $Id: kutil.cc,v 1.90 2000-12-20 17:20:00 obachman Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    26552655    op = strat->tailRing->pFDeg(hn, strat->tailRing);
    26562656    if ((Kstd1_deg>0)&&(op>Kstd1_deg)) goto all_done;
    2657     e = pLDeg(hn, &l, strat->tailRing) - op;
     2657    e = strat->tailRing->pLDeg(hn, &l, strat->tailRing) - op;
    26582658    while (1)
    26592659    {
     
    26812681      op = strat->tailRing->pFDeg(hn, strat->tailRing);
    26822682      if ((Kstd1_deg>0)&&(op>Kstd1_deg)) goto all_done;
    2683       e = pLDeg(hn, &l) - op;
     2683      e = strat->tailRing->pLDeg(hn, &l, strat->tailRing) - op;
    26842684    }
    26852685    h = hn;
     
    40194019          T_j->max = NULL;
    40204020      }
     4021      if (TEST_OPT_INTSTRATEGY)
     4022        T_j->pCleardenom();
    40214023    }
    40224024    else
     
    40274029      else
    40284030        strat->S[i] = redtail(strat->S[i], strat->sl, strat);
    4029     }
    4030     if (TEST_OPT_INTSTRATEGY)
    4031       pCleardenom(strat->S[i]);
     4031      if (TEST_OPT_INTSTRATEGY)
     4032        pCleardenom(strat->S[i]);
     4033    }
    40324034    if (TEST_OPT_PROT)
    40334035      PrintS("-");
  • Singular/matpol.cc

    r6a13742 rbfbc32  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: matpol.cc,v 1.35 2000-09-18 09:19:15 obachman Exp $ */
     4/* $Id: matpol.cc,v 1.36 2000-12-20 17:20:01 obachman Exp $ */
    55
    66/*
     
    218218      for (k=1; k<=p; k++)
    219219      {
    220         aik = pCopy(MATELEM(a,i,k));
    221         bkj = pCopy(MATELEM(b,k,j));
    222         s = pMult(aik,bkj);
     220        s = ppMult_qq(MATELEM(a,i,k), MATELEM(b,k,j));
    223221        t = pAdd(t,s);
    224222      }
  • Singular/p_Procs_Generate.cc

    r6a13742 rbfbc32  
    88 *  Author:  obachman (Olaf Bachmann)
    99 *  Created: 8/00
    10  *  Version: $Id: p_Procs_Generate.cc,v 1.2 2000-12-12 08:44:50 obachman Exp $
     10 *  Version: $Id: p_Procs_Generate.cc,v 1.3 2000-12-20 17:20:02 obachman Exp $
    1111 *******************************************************************/
    1212
     
    4242 
    4343  // plus procs with FieldZp
    44   if (field == FieldZp &&
     44  if ((field == FieldZp || field == FieldQ) &&
    4545      // which are not general in length or ord
    4646      !((length == LengthGeneral && p_ProcDependsOn_Length(proc)) ||
     
    4949      (!p_ProcDependsOn_Length(proc) || (length >= LengthFour)))
    5050    return 1;
     51
     52 
    5153 
    5254  return 0;
Note: See TracChangeset for help on using the changeset viewer.