Changeset 718e670 in git for factory/int_rat.h


Ignore:
Timestamp:
Mar 27, 1997, 11:11:36 AM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d3d15e1e33fa5929a1843963df82a7852b4ae781
Parents:
32e9cd7e1db25624413ec07ffbed129f761df364
Message:
stream-io wrapped by NOSTREAMIO


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

Legend:

Unmodified
Added
Removed
  • factory/int_rat.h

    r32e9cd7 r718e670  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: int_rat.h,v 1.0 1996-05-17 10:59:41 stobbe Exp $
     2// $Id: int_rat.h,v 1.1 1997-03-27 10:11:36 schmidt Exp $
    33
    44#ifndef INCL_INTERNALRATIONAL_H
     
    77/*
    88$Log: not supported by cvs2svn $
     9Revision 1.0  1996/05/17 10:59:41  stobbe
     10Initial revision
     11
    912*/
    1013
     14#ifndef NOSTREAMIO
    1115#include <iostream.h>
     16#endif /* NOSTREAMIO */
     17
    1218#include "cf_gmp.h"
     19
     20#include "assert.h"
    1321
    1422#include "int_cf.h"
     
    3846    InternalCF* deepCopyObject() const;
    3947    const char * const classname() const { return "InternalRational"; }
     48#ifndef NOSTREAMIO
    4049    void print( ostream&, char* );
     50#endif /* NOSTREAMIO */
    4151    bool isZero() const;
    4252    bool isOne() const;
     
    5666    InternalCF* addsame( InternalCF* );
    5767    InternalCF* subsame( InternalCF* );
    58     InternalCF* mulsame( InternalCF* ); 
     68    InternalCF* mulsame( InternalCF* );
    5969    InternalCF* dividesame( InternalCF* );
    6070    InternalCF* modulosame( InternalCF* );
    61     InternalCF* divsame( InternalCF* ); 
    62     InternalCF* modsame( InternalCF* ); 
     71    InternalCF* divsame( InternalCF* );
     72    InternalCF* modsame( InternalCF* );
    6373    void divremsame( InternalCF*, InternalCF*&, InternalCF*& );
    6474    bool divremsamet( InternalCF*, InternalCF*&, InternalCF*& );
     
    6878    InternalCF* addcoeff( InternalCF* );
    6979    InternalCF* subcoeff( InternalCF*, bool );
    70     InternalCF* mulcoeff( InternalCF* ); 
     80    InternalCF* mulcoeff( InternalCF* );
    7181    InternalCF* dividecoeff( InternalCF*, bool );
    7282    InternalCF* modulocoeff( InternalCF*, bool );
    73     InternalCF* divcoeff( InternalCF*, bool ); 
     83    InternalCF* divcoeff( InternalCF*, bool );
    7484    InternalCF* modcoeff( InternalCF*, bool );
    7585    void divremcoeff( InternalCF*, InternalCF*&, InternalCF*&, bool );
Note: See TracChangeset for help on using the changeset viewer.