Changeset 6e3cab in git


Ignore:
Timestamp:
Jul 26, 2006, 3:49:29 PM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
Children:
9f7370680fe1fcdd4b1f7d54b568d74bb239e6fe
Parents:
f3c6e5cf695bf90001021f22fdfc176f564b03fb
Message:
*hannes: ringlist


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

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    rf3c6e5 r6e3cab  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: iparith.cc,v 1.406 2006-07-18 16:09:18 Singular Exp $ */
     4/* $Id: iparith.cc,v 1.407 2006-07-26 13:49:29 Singular Exp $ */
    55
    66/*
     
    39543954  if (r!=NULL)
    39553955    res->data = (char *)rDecompose((ring)v->Data());
    3956   return (r==NULL);
     3956  return (r==NULL)||(res->data==NULL);
    39573957}
    39583958static BOOLEAN jjROWS(leftv res, leftv v)
  • Singular/ipshell.cc

    rf3c6e5 r6e3cab  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ipshell.cc,v 1.141 2006-07-21 12:36:26 Singular Exp $ */
     4/* $Id: ipshell.cc,v 1.142 2006-07-26 13:49:28 Singular Exp $ */
    55/*
    66* ABSTRACT:
     
    16761676  else if (rIsExtension(r))
    16771677  {
    1678     rDecomposeCF(&(L->m[0]),r->algring,r);
     1678    if (r->algring!=NULL)
     1679      rDecomposeCF(&(L->m[0]),r->algring,r);
    16791680    if (L->m[0].rtyp==0)
    16801681    {
    1681       omFreeBin(slists_bin,(void *)L);
     1682      //omFreeBin(slists_bin,(void *)L);
    16821683      return NULL;
    16831684    }
Note: See TracChangeset for help on using the changeset viewer.