Changeset 1624 in Sophya for trunk/SophyaLib/TArray


Ignore:
Timestamp:
Aug 7, 2001, 12:52:19 AM (24 years ago)
Author:
cmv
Message:

On enleve les SetTemp() inutiles cmv 6/8/01

Location:
trunk/SophyaLib/TArray
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/sopemtx.cc

    r1007 r1624  
    581581if(GausPiv(a,b)==(T) 0)
    582582  throw(MathExc("TMatrix Inverse() Singular Matrix"));
    583 b.SetTemp(true);
    584583return b;
    585584}
  • trunk/SophyaLib/TArray/tmatrix.cc

    r1581 r1624  
    1 // $Id: tmatrix.cc,v 1.21 2001-07-19 08:20:22 ansari Exp $
     1// $Id: tmatrix.cc,v 1.22 2001-08-06 22:48:43 cmv Exp $
    22//                         C.Magneville          04/99
    33#include "machdefs.h"
     
    238238  TMatrix sm(SubArray(rx, ry, Range(0), Range(0), Range(0)),true, mm);
    239239  sm.UpdateMemoryMapping(mm);
    240   sm.SetTemp(true);
    241240  return(sm);
    242241}
     
    284283    for(sa_size_t j=0; j<NCols(); j++)
    285284      tm(j,i) = (*this)(i,j);
    286   tm.SetTemp(true);
    287285  return tm;
    288286}
     
    308306    for(sa_size_t j=0; j<NCols(); j++)
    309307      tm(i,j) = (*this)(i,j);
    310   tm.SetTemp(true);
    311308  return tm;
    312309}
     
    409406    }
    410407
    411   rm.SetTemp(true);
    412408  return rm;
    413409}
  • trunk/SophyaLib/TArray/triangmtx.h

    r1327 r1624  
    3434    elem_.ReSize(long_diag_*(long_diag_+1)/2);
    3535  }
    36  inline void SetTemp(bool temp=false) const {elem_.SetTemp(temp);}
    3736
    3837//! Equal operator
  • trunk/SophyaLib/TArray/tvector.cc

    r1560 r1624  
    1 // $Id: tvector.cc,v 1.13 2001-07-03 15:41:56 ansari Exp $
     1// $Id: tvector.cc,v 1.14 2001-08-06 22:48:43 cmv Exp $
    22//                         C.Magneville          04/99
    33#include "machdefs.h"
     
    167167  TMatrix<T> const & mtx = (*this);
    168168  TVector sv( mtx(rr, cr) , true, GetVectorType(), GetMemoryMapping() );
    169   sv.SetTemp(true);
    170169  return(sv); 
    171170}
Note: See TracChangeset for help on using the changeset viewer.