Changeset fa98a4 in git


Ignore:
Timestamp:
May 8, 2006, 2:55:12 PM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
cfbcdce9a4b6526bc3148967251de0357d90401e
Parents:
fda36e719dc9e0838a50e32a6595be7b93efe867
Message:
*hannes: fixed: std-internal structures, debug


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

Legend:

Unmodified
Added
Removed
  • kernel/kInline.cc

    rfda36e rfa98a4  
    77 *  Author:  obachman (Olaf Bachmann)
    88 *  Created: 8/00
    9  *  Version: $Id: kInline.cc,v 1.2 2004-08-03 17:33:55 Singular Exp $
     9 *  Version: $Id: kInline.cc,v 1.3 2006-05-08 12:55:10 Singular Exp $
    1010 *******************************************************************/
    1111#ifndef KINLINE_CC
     
    314314{
    315315  if (t_p != NULL)
    316   { 
     316  {
    317317    pNormalize(t_p);
    318318    if (p != NULL) pSetCoeff0(p, pGetCoeff(t_p));
     
    327327{
    328328  if (t_p != NULL)
    329   { 
     329  {
    330330    nNormalize(pGetCoeff(t_p));
    331331    if (p != NULL) pSetCoeff0(p, pGetCoeff(t_p));
  • kernel/kutil.cc

    rfda36e rfa98a4  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.21 2006-03-20 20:33:56 wienand Exp $ */
     4/* $Id: kutil.cc,v 1.22 2006-05-08 12:55:11 Singular Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    20412041        h.sev = pGetShortExpVector(h.p);
    20422042        h.t_p = k_LmInit_currRing_2_tailRing(h.p, strat->tailRing);
     2043        if (pNext(p) != NULL)
     2044        {
     2045          pShallowCopyDeleteProc p_shallow_copy_delete
     2046               = pGetShallowCopyDeleteProc(strat->tailRing, new_tailRing);
     2047          pNext(p) = p_shallow_copy_delete(pNext(p),
     2048                       currRing, strat->tailRing, strat->tailRing->PolyBin);
     2049        }
    20432050        enterL(&strat->L,&strat->Ll,&strat->Lmax,h,posx);
    20442051      }
  • kernel/ring.cc

    rfda36e rfa98a4  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.45 2005-11-28 16:32:34 Singular Exp $ */
     4/* $Id: ring.cc,v 1.46 2006-05-08 12:55:12 Singular Exp $ */
    55
    66/*
     
    32853285}
    32863286
    3287 void pDebugPrintR(poly p, ring r)
     3287void pDebugPrintR(poly p, const ring r)
    32883288{
    32893289  int i,j;
    3290   pWrite(p);
     3290  p_Write(p,r);
    32913291  j=2;
    32923292  while(p!=NULL)
     
    32943294    Print("\nexp[0..%d]\n",r->ExpL_Size-1);
    32953295    for(i=0;i<r->ExpL_Size;i++)
    3296       Print("%d ",p->exp[i]);
     3296      Print("%ld ",p->exp[i]);
    32973297    PrintLn();
    32983298    Print("v0:%d ",p_GetComp(p, r));
Note: See TracChangeset for help on using the changeset viewer.