Changeset 890 in Sophya for trunk/SophyaLib/TArray/basarr.cc
- Timestamp:
- Apr 11, 2000, 7:59:04 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/basarr.cc
r850 r890 8 8 #include "basarr.h" 9 9 10 11 12 10 // Variables statiques globales 13 11 char * BaseArray::ck_op_msg_[6] = {"???", "Size(int )", "IsPacked(int )", 14 12 "Stride(int )", "ElemCheckBound()", "operator()" }; 15 13 uint_4 BaseArray::max_nprt_ = 50; 16 14 uint_4 BaseArray::prt_lev_ = 0; … … 22 20 23 21 // 1/ Gestion des impressions 22 //! Set maximum number of printed elements and print level 23 /*! 24 \param nprt : maximum number of print 25 \param lev : print level 26 */ 24 27 void BaseArray::SetMaxPrint(uint_4 nprt, uint_4 lev) 25 28 { … … 28 31 } 29 32 33 //! Set Size threshold for parallel routine call 34 /*! 35 \param thr : thresold value 36 */ 30 37 void BaseArray::SetOpenMPSizeThreshold(uint_8 thr) 31 38 { … … 150 157 // ------------------------------------------------------- 151 158 152 // Les constructeurs159 //! Default constructor 153 160 BaseArray::BaseArray() 154 161 : mInfo(NULL) 155 // Default constructor156 162 { 157 163 ndim_ = 0; … … 172 178 } 173 179 174 // Destructeur180 //! Destructor 175 181 BaseArray::~BaseArray() 176 182 { … … 178 184 179 185 186 //! Returns true if \b ndim and \b sizes are equal 187 /*! 188 \param a : array to be compared 189 \return true if ndim and sizes are equal, false if not 190 */ 180 191 bool BaseArray::CompareSizes(const BaseArray& a) 181 192 {
Note:
See TracChangeset
for help on using the changeset viewer.