- Timestamp:
- 07/31/09 11:29:40 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/stat/emix.cpp
r394 r460 7 7 dim = Coms0(0)->dimension(); 8 8 int i; 9 RV tmp_rv=Coms0(0)->_rv(); 9 10 for ( i=0;i<w.length();i++ ) { 10 it_assert_debug ( dim== ( Coms0 ( i )->dimension() ),"Component sizes do not match!" ); 11 it_assert_debug ( dim== ( Coms0 ( i )->dimension() ),"Component sizes do not match!" ); 12 it_assert_debug ( tmp_rv.equal( Coms0 ( i )->_rv() ),"Component RVs do not match!" ); 11 13 } 12 14 if ( copy ) { … … 20 22 destroyComs=false; 21 23 } 24 if (tmp_rv._dsize()==dim) epdf::set_rv(tmp_rv); //coms aer already OK, no need for set_rv 22 25 } 23 26