Changeset 997ae52 in git


Ignore:
Timestamp:
Mar 26, 1997, 5:48:36 PM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
d6b0b14b77fa6a69e4beb1c09ce716036ba69df5
Parents:
3bf64a6be55854dd9a9618cc52e5d25706567565
Message:
stream-io wrapped by NOSTREAMIO


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

Legend:

Unmodified
Added
Removed
  • factory/cf_map.cc

    r3bf64a6 r997ae52  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: cf_map.cc,v 1.1 1996-07-08 08:17:22 stobbe Exp $
     2// $Id: cf_map.cc,v 1.2 1997-03-26 16:47:32 schmidt Exp $
    33
    44/*
    55$Log: not supported by cvs2svn $
     6Revision 1.1  1996/07/08 08:17:22  stobbe
     7"New function compress( f, g, M, N ) that maps the common variables to be
     8the ones with the lowest level.
     9"
     10
    611Revision 1.0  1996/05/17 10:59:44  stobbe
    712Initial revision
     
    1015
    1116#include "assert.h"
     17
    1218#include "cf_defs.h"
     19
    1320#include "cf_map.h"
    1421#include "cf_iter.h"
     
    3037}
    3138
     39#ifndef NOSTREAMIO
    3240ostream&
    3341operator << ( ostream& s, const MapPair & p )
     
    3644    return s;
    3745}
     46#endif /* NOSTREAMIO */
    3847
    3948CFMap::CFMap ( const List<CanonicalForm> & L )
     
    6675}
    6776
     77#ifndef NOSTREAMIO
    6878ostream&
    6979operator<< ( ostream& s, const CFMap & m )
     
    8393    return s;
    8494}
     95#endif /* NOSTREAMIO */
    8596
    8697CanonicalForm
     
    215226        return f;
    216227}
    217 
    218 
  • factory/cf_map.h

    r3bf64a6 r997ae52  
    11// emacs edit mode for this file is -*- C++ -*-
    2 // $Id: cf_map.h,v 1.1 1996-07-08 08:17:22 stobbe Exp $
     2// $Id: cf_map.h,v 1.2 1997-03-26 16:48:36 schmidt Exp $
    33
    44#ifndef INCL_CF_MAP_H
     
    77/*
    88$Log: not supported by cvs2svn $
     9Revision 1.1  1996/07/08 08:17:22  stobbe
     10"New function compress( f, g, M, N ) that maps the common variables to be
     11the ones with the lowest level.
     12"
     13
    914Revision 1.0  1996/05/17 10:59:38  stobbe
    1015Initial revision
     
    1217*/
    1318
     19#ifndef NOSTREAMIO
    1420#include <iostream.h>
     21#endif /* NOSTREAMIO */
     22
    1523#include "variable.h"
    1624#include "templates/list.h"
     
    3240    Variable var() const { return V; }
    3341    CanonicalForm subst() const { return S; }
     42#ifndef NOSTREAMIO
    3443    friend ostream& operator << ( ostream& s, const MapPair & p );
     44#endif /* NOSTREAMIO */
    3545};
    3646
     
    5464  void newpair( const Variable & v, const CanonicalForm & s );
    5565  CanonicalForm operator() ( const CanonicalForm & f ) const;
     66#ifndef NOSTREAMIO
    5667  friend ostream& operator<< ( ostream& s, const CFMap & m );
     68#endif /* NOSTREAMIO */
    5769};
    5870
     
    6476
    6577#endif /* INCL_CF_MAP_H */
    66 
Note: See TracChangeset for help on using the changeset viewer.