Changeset f9bfec in git


Ignore:
Timestamp:
May 5, 2000, 11:46:57 AM (23 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
ef01241fece3236b762161e59b6bde349a6396bf
Parents:
fdd95cae3fd09e17105ef495d37154b1f2dd43fe
Message:
*hannes: pComparePolys optimized


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

Legend:

Unmodified
Added
Removed
  • Singular/polys1.cc

    rfdd95ca rf9bfec  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys1.cc,v 1.36 2000-04-11 15:01:58 Singular Exp $ */
     4/* $Id: polys1.cc,v 1.37 2000-05-05 09:46:57 Singular Exp $ */
    55
    66/*
     
    14321432  int i;
    14331433
     1434  if (!pEqual(p1,p2)) //compare leading mons
     1435      return FALSE;
     1436  if ((pNext(p1)==NULL) && (pNext(p2)!=NULL))
     1437     return FALSE;
     1438  if ((pNext(p2)==NULL) && (pNext(p1)!=NULL))
     1439     return FALSE;
    14341440  if (pLength(p1) != pLength(p2))
    14351441    return FALSE;
Note: See TracChangeset for help on using the changeset viewer.