Changeset 535f7b in git for factory


Ignore:
Timestamp:
Dec 17, 1997, 12:31:11 PM (26 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
Children:
07dec4059530fd22c322c2cca4a7b522305a6436
Parents:
a1ec00ea2190711f2d293347bfc230dedb18d840
Message:
	* int_cf.h (class InternalCF): new pure virtual function
	  comparecoeff()

	* int_cf.cc (InternalCF::sign): method made pure virtual.
	  Declaration adapted.


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

Legend:

Unmodified
Added
Removed
  • factory/int_cf.h

    ra1ec00e r535f7b  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: int_cf.h,v 1.6 1997-10-10 10:33:31 schmidt Exp $ */
     2/* $Id: int_cf.h,v 1.7 1997-12-17 11:31:11 schmidt Exp $ */
    33
    44#ifndef INCL_INT_CF_H
     
    5555    virtual int intval() const;
    5656    virtual int intmod( int ) const { return 0; }
    57     virtual int sign() const;
     57    virtual int sign() PVIRT_INT("sign");
    5858
    5959    virtual InternalCF* num();
     
    6262    virtual InternalCF* neg() PVIRT_INTCF("neg");
    6363    virtual InternalCF* invert(); // semantically const, changes refCount const
    64     virtual int comparesame ( InternalCF* ) PVIRT_INT("comparesame");
     64    virtual int comparesame ( InternalCF * ) PVIRT_INT("comparesame");
     65    virtual int comparecoeff ( InternalCF * ) PVIRT_INT("comparecoeff");
    6566
    6667    virtual InternalCF* addsame( InternalCF* ) PVIRT_INTCF("addsame");
     
    7374    virtual void divremsame( InternalCF*, InternalCF*&, InternalCF*& ) PVIRT_VOID("divremsame");
    7475    virtual bool divremsamet( InternalCF*, InternalCF*&, InternalCF*& ) PVIRT_BOOL("divremsamet");
    75 
    76     virtual int comparecoeff ( InternalCF* );
    7776
    7877    virtual InternalCF* addcoeff( InternalCF* ) PVIRT_INTCF("addcoeff");
Note: See TracChangeset for help on using the changeset viewer.