Changeset 2d10dab in git


Ignore:
Timestamp:
Sep 14, 2010, 3:28:10 PM (13 years ago)
Author:
Andreas Steenpaß <steenpas@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
7504ddfe25cbc97ca03089b2d7dd8c1a3ff1d050
Parents:
41ab4214f2b17d7e50edffc7030e3805f2c58be4
Message:
debug stuff

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

Legend:

Unmodified
Added
Removed
  • Singular/claptmpl.cc

    r41ab421 r2d10dab  
    4141  //template class vector<poly>;
    4242  #ifndef NOSTREAMIO
    43   template ostream & operator<<(ostream &, const List<Factor<CanonicalForm> > &);
    44   template ostream & operator<<(ostream &, const List<List<CanonicalForm> > &);
    45   template ostream & operator<<(ostream &, const List<Variable> &);
    46   template ostream & operator<<(ostream &, const Matrix<Variable> &);
     43  template OSTREAM & operator<<(OSTREAM &, const List<Factor<CanonicalForm> > &);
     44  template OSTREAM & operator<<(OSTREAM &, const List<List<CanonicalForm> > &);
     45  template OSTREAM & operator<<(OSTREAM &, const List<Variable> &);
     46  template OSTREAM & operator<<(OSTREAM &, const Matrix<Variable> &);
    4747  #endif
    4848
     
    8282    T exp() const { return _exp; }
    8383#ifndef NOSTREAMIO
    84     //friend ostream & operator <<<>(ostream &, Substitution<T> &);
    85     void print ( ostream& s ) const
     84    //friend OSTREAM & operator <<<>(OSTREAM &, Substitution<T> &);
     85    void print ( OSTREAM& s ) const
    8686    {
    8787      s << "("  << factor() << ")^" << exp();
     
    113113#ifndef NOSTREAMIO
    114114template <class T>
    115 ostream & operator <<(ostream & os, Substitution<T> &a)
     115OSTREAM & operator <<(OSTREAM & os, Substitution<T> &a)
    116116{
    117117  a.print(os);
    118118  return os;
    119119}
    120 template ostream & operator <<(ostream &, Substitution<CanonicalForm> &);
    121 template ostream & operator <<(ostream &, const List<CanonicalForm> &);
    122 template ostream & operator <<(ostream &, const Array<CanonicalForm> &);
    123 template ostream & operator<<(ostream &, const List<Substitution<CanonicalForm> > &);
     120template OSTREAM & operator <<(OSTREAM &, Substitution<CanonicalForm> &);
     121template OSTREAM & operator <<(OSTREAM &, const List<CanonicalForm> &);
     122template OSTREAM & operator <<(OSTREAM &, const Array<CanonicalForm> &);
     123template OSTREAM & operator<<(OSTREAM &, const List<Substitution<CanonicalForm> > &);
    124124#endif
    125125
     
    185185
    186186#ifdef   KMATRIX_PRINT
    187 template    ostream &   operator << ( ostream&,const KMatrix<Rational>& );
    188 template    static  void    print_rational( ostream&,int,const Rational& );
     187template    OSTREAM &   operator << ( OSTREAM&,const KMatrix<Rational>& );
     188template    static  void    print_rational( OSTREAM&,int,const Rational& );
    189189#endif
    190190
  • kernel/fglm.h

    r41ab421 r2d10dab  
    4040    void newDivisor( int var ) { divisors[ ++divisors[0] ]= var; }
    4141#ifndef NOSTREAMIO
    42 friend ostream & operator <<(ostream &, fglmSelem);
     42friend OSTREAM & operator <<(OSTREAM &, fglmSelem);
    4343#endif
    4444};
    4545#ifndef NOSTREAMIO
    46 inline ostream & operator <<(ostream & os, fglmSelem) { return os;};
     46inline OSTREAM & operator <<(OSTREAM & os, fglmSelem) { return os;};
    4747#endif
    4848
     
    6060    void newDivisor() { insertions--; }
    6161#ifndef NOSTREAMIO
    62 friend ostream & operator <<(ostream &, fglmDelem);
     62friend OSTREAM & operator <<(OSTREAM &, fglmDelem);
    6363#endif
    6464};
    6565#ifndef NOSTREAMIO
    66 inline ostream & operator <<(ostream & os, fglmDelem) { return os;};
     66inline OSTREAM & operator <<(OSTREAM & os, fglmDelem) { return os;};
    6767#endif
    6868
  • kernel/fglmcomb.cc

    r41ab421 r2d10dab  
    2929
    3030#ifndef NOSTREAMIO
     31#ifdef HAVE_IOSTREAM
     32#include <iostream>
     33#else
    3134#include <iostream.h>
     35#endif
    3236#endif
    3337
  • libfac/factor/MVMultiHensel.cc

    r41ab421 r2d10dab  
    2929#define HAVE_SINGULAR_ERROR
    3030#ifndef NOSTREAMIO
    31 void out_cf(char *s1,const CanonicalForm &f,char *s2);
     31void out_cf(const char *s1,const CanonicalForm &f,const char *s2);
    3232#endif
    3333#endif
Note: See TracChangeset for help on using the changeset viewer.