Changeset 1003 in Sophya for trunk/SophyaLib/TArray


Ignore:
Timestamp:
May 16, 2000, 7:17:00 PM (25 years ago)
Author:
ansari
Message:

portage Mac. de la cosmetique.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/tmatrix.h

    r976 r1003  
    1515  // Creation / destruction
    1616  TMatrix();
    17   TMatrix(uint_4 r,uint_4 c, short mm=AutoMemoryMapping);
     17  TMatrix(uint_4 r,uint_4 c, short mm=BaseArray::AutoMemoryMapping);
    1818  TMatrix(const TMatrix<T>& a);
    1919  TMatrix(const TMatrix<T>& a, bool share);
    2020  TMatrix(const TArray<T>& a);
    21   TMatrix(const TArray<T>& a,  bool share, short mm=AutoMemoryMapping);
     21  TMatrix(const TArray<T>& a,  bool share, short mm=BaseArray::CMemoryMapping);
     22
    2223  virtual ~TMatrix();
    2324
     
    3839  inline uint_4 NCol()  const {return Size(macoli_); } // back-compat Peida
    3940
    40   void ReSize(uint_4 r,uint_4 c, short mm=SameMemoryMapping);  // Reallocation de place
    41   void Realloc(uint_4 r,uint_4 c, short mm=SameMemoryMapping, bool force=false);
     41  void ReSize(uint_4 r,uint_4 c, short mm=BaseArray::SameMemoryMapping);  // Reallocation de place
     42  void Realloc(uint_4 r,uint_4 c, short mm=BaseArray::SameMemoryMapping, bool force=false);
    4243
    4344  // Sub-matrix extraction $CHECK$ Reza 03/2000  Doit-on declarer ces methode const ?
     
    9192  //! -= : substract a matrix
    9293  inline  TMatrix<T>&  operator -= (const TMatrix<T>& a)  { SubElt(a); return(*this); }
    93   TMatrix<T>  Multiply(const TMatrix<T>& b, short mm=SameMemoryMapping) const;
    94   //! *= : matrix product : C = (*this)*B
     94
     95  // Produit matriciel Multiply : C = (*this)*B
     96  TMatrix<T>  Multiply(const TMatrix<T>& b, short mm=BaseArray::SameMemoryMapping) const;
    9597  inline  TMatrix<T>&  operator *= (const TMatrix<T>& b)
    9698          { this->Set(Multiply(b));  return(*this); }
Note: See TracChangeset for help on using the changeset viewer.