Changeset 9c6789 in git


Ignore:
Timestamp:
Oct 26, 2005, 4:52:10 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
Children:
523ebb135ad37b71cb5fca3f0178e706d7cdc171
Parents:
73054bb8a1f71c689b22c662c08b762f3913c906
Message:
*hannes: better way to compare polys


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

Legend:

Unmodified
Added
Removed
  • kernel/matpol.cc

    r73054bb r9c6789  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: matpol.cc,v 1.3 2005-10-26 10:42:04 Singular Exp $ */
     4/* $Id: matpol.cc,v 1.4 2005-10-26 14:52:10 Singular Exp $ */
    55
    66/*
     
    893893  while (i>=0)
    894894  {
     895#if 0
    895896    poly tt=pSub(pCopy(a->m[i]),pCopy(b->m[i]));
    896897    if (tt!=NULL)
     
    899900      return FALSE;
    900901    }
     902#else
     903    if(!pEqualPolys(a->m[i],b->m[i])) return FALSE;
     904#endif
    901905    i--;
    902906  }
Note: See TracChangeset for help on using the changeset viewer.