Changeset f82bd3 in git


Ignore:
Timestamp:
May 22, 2009, 7:16:12 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
a46b479a5ab7a8bc79239f7ebbc7880f78ebb026
Parents:
c5aa96961ea81c9a52395f44f33510756c0ae7a9
Message:
*hannes: const


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

Legend:

Unmodified
Added
Removed
  • kernel/p_polys.h

    rc5aa96 rf82bd3  
    88 *  Author:  obachman (Olaf Bachmann)
    99 *  Created: 9/00
    10  *  Version: $Id: p_polys.h,v 1.8 2008-07-04 14:21:30 motsak Exp $
     10 *  Version: $Id: p_polys.h,v 1.9 2009-05-22 17:15:59 Singular Exp $
    1111 *******************************************************************/
    1212#ifndef P_POLYS_H
     
    399399long pLDeg1_WFirstTotalDegree(poly p,int *l, ring r);
    400400long pLDeg1c_WFirstTotalDegree(poly p,int *l, ring r);
    401 BOOLEAN p_EqualPolys(poly p1, poly p2, ring r);
     401BOOLEAN p_EqualPolys(poly p1, poly p2, const ring r);
    402402/***************************************************************
    403403 *
  • kernel/polys1.cc

    rc5aa96 rf82bd3  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys1.cc,v 1.38 2009-05-18 11:31:49 Singular Exp $ */
     4/* $Id: polys1.cc,v 1.39 2009-05-22 17:16:12 Singular Exp $ */
    55
    66/*
     
    18431843* returns TRUE if p1 = p2
    18441844*/
    1845 BOOLEAN p_EqualPolys(poly p1,poly p2, ring r)
     1845BOOLEAN p_EqualPolys(poly p1,poly p2, const ring r)
    18461846{
    18471847  while ((p1 != NULL) && (p2 != NULL))
Note: See TracChangeset for help on using the changeset viewer.