Changeset 64a88e in git for kernel/clapconv.cc


Ignore:
Timestamp:
Aug 13, 2009, 5:31:27 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
f5da374c614ef679bad9ff3b7d6e407d7f0dc8b0
Parents:
073295f83bd787c17170311fa837e22cf427905d
Message:
*hannes: remove unused parameter


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

Legend:

Unmodified
Added
Removed
  • kernel/clapconv.cc

    r073295f r64a88e  
    33*  Computer Algebra System SINGULAR     *
    44****************************************/
    5 // $Id: clapconv.cc,v 1.15 2009-08-13 15:17:02 Singular Exp $
     5// $Id: clapconv.cc,v 1.16 2009-08-13 15:31:27 Singular Exp $
    66/*
    77* ABSTRACT: convert data between Singular and factory
     
    162162
    163163
    164 CanonicalForm convSingPFactoryP( poly p, const int off, const ring r )
     164CanonicalForm convSingPFactoryP( poly p, const ring r )
    165165{
    166166  CanonicalForm result = 0;
     
    206206    {
    207207      if ( (e = p_GetExp( p, i, r)) != 0 )
    208         term *= power( Variable( i+off ), e );
     208        term *= power( Variable( i ), e );
    209209    }
    210210    result += term;
     
    409409  {
    410410    n_Normalize(pGetCoeff(p),r);
    411     CanonicalForm term=convSingPFactoryP(((lnumber)pGetCoeff(p))->z,0,r->algring);
     411    CanonicalForm term=convSingPFactoryP(((lnumber)pGetCoeff(p))->z,r->algring);
    412412
    413413    if ((((lnumber)pGetCoeff(p))->n!=NULL)
Note: See TracChangeset for help on using the changeset viewer.