Changeset 3d9ed9 in git


Ignore:
Timestamp:
Mar 25, 2004, 10:16:47 PM (20 years ago)
Author:
Viktor Levandovskyy <levandov@…>
Branches:
(u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
Children:
68349daf21644ca2ec7dab7776dfdf8773a1589c
Parents:
5bdabc0293eabd9c0e84bfb41f75e8fc4002d70b
Message:
*levandov: Plural Power fix


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

Legend:

Unmodified
Added
Removed
  • kernel/polys1.cc

    r5bdabc r3d9ed9  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys1.cc,v 1.2 2004-01-09 10:42:11 Singular Exp $ */
     4/* $Id: polys1.cc,v 1.3 2004-03-25 21:16:47 levandov Exp $ */
    55
    66/*
     
    323323        else
    324324        {
     325#ifdef HAVE_PLURAL
     326          if (rIsPluralRing(currRing)) /* in the NC case nothing helps :-( */
     327          {
     328            int j=i;
     329            rc = pCopy(p);
     330            while (j>1)
     331            {
     332              rc = pMult(pCopy(p),rc);
     333              j--;
     334            }
     335            pDelete(&p);
     336            return rc;
     337          }
     338#endif
    325339          rc = pNext(p);
    326340          if (rc == NULL)
Note: See TracChangeset for help on using the changeset viewer.