Changeset d14712 in git for Singular/polys1.cc


Ignore:
Timestamp:
Sep 29, 1999, 12:59:43 PM (25 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
4f011a3b4ee2de9e079fb1b3ff36483e9f1f0511
Parents:
c88c949ab8d0ed79f5fe01cd33e526815d5e041f
Message:
* got rid off STDTRACE, FAST_AND_DIRTY, (most) DRING, SRING, SDRING
* got rid of spoly*.* stuff


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

Legend:

Unmodified
Added
Removed
  • Singular/polys1.cc

    rc88c949 rd14712  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys1.cc,v 1.28 1999-09-28 15:02:33 obachman Exp $ */
     4/* $Id: polys1.cc,v 1.29 1999-09-29 10:59:38 obachman Exp $ */
    55
    66/*
     
    7777  }
    7878  return k;
     79}
     80
     81BOOLEAN pIsMonomOf(poly p, poly m)
     82{
     83  if (m == NULL) return TRUE;
     84  while (p != NULL)
     85  {
     86    if (p == m) return TRUE;
     87    pIter(p);
     88  }
     89  return FALSE;
    7990}
    8091
     
    478489          }
    479490        }
    480 #ifdef SDRING
    481         if(pSDRING)
    482         {
    483           return pPow(p,i);
    484         }
    485         else
    486 #endif
    487491        {
    488492          rc = pNext(p);
Note: See TracChangeset for help on using the changeset viewer.