Changeset 3172b40 in git


Ignore:
Timestamp:
May 20, 2008, 5:30:00 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
6242bb3f267a5cd815ebdb802ba28ca040bc37c5
Parents:
672e05dbbccdbb86d350ae5b44e723949901a6ba
Message:
*hannes: pLength debug


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

Legend:

Unmodified
Added
Removed
  • kernel/kutil.cc

    r672e05 r3172b40  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kutil.cc,v 1.89 2008-04-04 10:30:09 Singular Exp $ */
     4/* $Id: kutil.cc,v 1.90 2008-05-20 15:30:00 Singular Exp $ */
    55/*
    66* ABSTRACT: kernel: utils for kStd
     
    668668  if (i >= 0 && T->pLength != 0 && T->pLength != pLength(p))
    669669  {
     670    int l=T->pLength;
     671    T->pLength=pLength(p);
    670672    return dReportError("%c[%d] pLength error: has %d, specified to have %d",
    671                         TN, i , pLength(p), T->pLength);
     673                        TN, i , pLength(p), l);
    672674  }
    673675
     
    677679    // FDeg has ir element from T of L set
    678680    if (T->FDeg  != T->pFDeg())
     681    {
     682      int d=T->FDeg;
     683      T->FDeg=T->pFDeg();
    679684      return dReportError("%c[%d] FDeg error: has %d, specified to have %d",
    680                           TN, i , T->pFDeg(), T->FDeg);
     685                          TN, i , T->pFDeg(), d);
     686    }
    681687  }
    682688
Note: See TracChangeset for help on using the changeset viewer.