Changeset a8b44d in git for kernel/polys1.cc


Ignore:
Timestamp:
Mar 21, 2011, 3:55:47 PM (13 years ago)
Author:
Frank Seelisch <seelisch@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9cd697732c2adbda992d49885d226fc966966251
Parents:
f4a33e267c2b5be378ef1fc5426935bee8f1e4d9
Message:
changed div check in Z/m, and command simplify over rings

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

Legend:

Unmodified
Added
Removed
  • kernel/polys1.cc

    rf4a33e ra8b44d  
    17201720  if (rField_is_Ring(currRing))
    17211721  {
    1722     if ((pLength(p1) == 1) && (nEqual(pGetCoeff(p1), pGetCoeff(p2))))
    1723       return TRUE;
    1724     if (!nIsUnit(pGetCoeff(p2))) return FALSE;
     1722    if (!nDivBy(pGetCoeff(p1), pGetCoeff(p2))) return FALSE;
    17251723  }
    17261724#endif
Note: See TracChangeset for help on using the changeset viewer.