Changeset 6b503c in git


Ignore:
Timestamp:
Apr 21, 2006, 5:37:10 PM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
f67df37fee569b5112c38948186efaccb3c63db5
Parents:
0fc5364aa53658193bfb5a149fe38f92ff61bec5
Message:
*hannes: gcc-4.1 port


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

Legend:

Unmodified
Added
Removed
  • factory/int_poly.cc

    r0fc536 r6b503c  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: int_poly.cc,v 1.16 2005-01-13 15:10:22 Singular Exp $ */
     2/* $Id: int_poly.cc,v 1.17 2006-04-21 15:37:10 Singular Exp $ */
    33
    44#include <config.h>
     
    582582    exp = aPoly->firstTerm->exp;
    583583    while (first && ( first->exp >= exp ) && divideok ) {
    584         divideok = ::divremt( first->coeff, coeff, newcoeff, dummycoeff );
     584        divideok = divremt( first->coeff, coeff, newcoeff, dummycoeff );
    585585        if ( divideok && dummycoeff.isZero() ) {
    586586            newexp = first->exp - exp;
     
    11031103
    11041104    while ( cursor && divideok ) {
    1105         divideok = ::divremt( cursor->coeff, c, cquot, crem );
     1105        divideok = divremt( cursor->coeff, c, cquot, crem );
    11061106        divideok = divideok && crem.isZero();
    11071107        if ( divideok ) {
  • factory/variable.h

    r0fc536 r6b503c  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: variable.h,v 1.4 2005-04-13 15:01:53 Singular Exp $ */
     2/* $Id: variable.h,v 1.5 2006-04-21 15:37:10 Singular Exp $ */
    33
    44#ifndef INCL_VARIABLE_H
     
    6666#endif /* NOSTREAMIO */
    6767    friend void swap_levels();
    68     friend Variable rootOf( const CanonicalForm &, char name = '@' );
     68    friend Variable rootOf( const CanonicalForm &, char name );
    6969};
     70Variable rootOf( const CanonicalForm &, char name = '@' );
    7071
    7172inline int level( const Variable & v ) { return v.level(); }
Note: See TracChangeset for help on using the changeset viewer.