Changeset 3669 in Sophya for trunk/SophyaLib/TArray


Ignore:
Timestamp:
Oct 25, 2009, 8:20:54 AM (16 years ago)
Author:
ansari
Message:

Correction ds BaseArray::CompareSizes() - ligne 356-357, test smo=true (same memory organisation) rendu plus restrictif , Reza 24/10/2009

File:
1 edited

Legend:

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

    r3664 r3669  
    354354      for(int_4 k=2; k<ndim_; k++)
    355355        if (size_[k] != a.size_[k])  return(false);
    356     if ( ((macoli_ == a.macoli_) && (marowi_ == a.marowi_)) &&
    357          (veceli_ == a.veceli_) )  smo = true;
     356    // Octobre 2009 (RA) : test plus restrictif , ' ||  (veceli_ == a.veceli_)  supprime
     357    if ((macoli_ == a.macoli_) && (marowi_ == a.marowi_))   smo = true;
    358358    return(true);
    359359  }
Note: See TracChangeset for help on using the changeset viewer.