Changeset 148cd3a in git


Ignore:
Timestamp:
May 26, 2003, 1:42:33 PM (21 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
789cd91da5ef050b70ae8aa349ddb414686efb1f
Parents:
2a911d2ef29f1d5f804d67cdb10b336f8412f288
Message:
*hannes: IA64


git-svn-id: file:///usr/local/Singular/svn/trunk@6751 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/polys.h

    r2a911d r148cd3a  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: polys.h,v 1.57 2003-01-30 14:59:58 Singular Exp $ */
     6/* $Id: polys.h,v 1.58 2003-05-26 11:35:22 Singular Exp $ */
    77/*
    88* ABSTRACT - all basic methods to manipulate polynomials of the
     
    410410// maximum weigthed degree of all monomials of p, w is indexed from
    411411// 1..pVariables
    412 int       pDegW(poly p, short *w);
     412long      pDegW(poly p, short *w);
    413413
    414414/*-----------type conversions ----------------------------*/
  • Singular/polys1.cc

    r2a911d r148cd3a  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys1.cc,v 1.69 2002-05-29 09:39:34 mschulze Exp $ */
     4/* $Id: polys1.cc,v 1.70 2003-05-26 11:32:57 Singular Exp $ */
    55
    66/*
     
    12701270}
    12711271
    1272 int pDegW(poly p, short *w)
    1273 {
    1274   int r=0;
     1272long pDegW(poly p, short *w)
     1273{
     1274  long r=0;
    12751275
    12761276  while (p!=NULL)
Note: See TracChangeset for help on using the changeset viewer.