Show
Ignore:
Timestamp:
03/29/10 23:01:49 (14 years ago)
Author:
smidl
Message:

epdf and emix now have _base classes

Location:
library/tests/stresssuite
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • library/tests/stresssuite/merger_2d_stress.cpp

    r721 r886  
    6767        it << Name ( "S1" ) << f1->evallog_mat ( Grid ); 
    6868        it << Name ( "S2" ) << f2->evallog_mat ( Grid ); 
    69         cout << ( ( enorm<ldmat>* ) ( MP->_Coms ( 0 ).get() ) )->_R().to_mat() << endl; 
     69//      cout << ( ( enorm<ldmat>* ) ( MP->_Coms ( 0 ).get() ) )->_R().to_mat() << endl; 
    7070} 
  • library/tests/stresssuite/mixtures_stress.cpp

    r766 r886  
    1515        mat Var ( 2, 2 ), M ( 1, 2 ); 
    1616        for ( i = 0; i < ep._rv().length() - 1; i++ ) { // -1 => last one is the weight 
    17                 ( ( egiw* ) ep ( i ) )->mean_mat ( M, Var ); 
     17                ( ( egiw* ) ep.factor ( i ) )->mean_mat ( M, Var ); 
    1818                cout << "Mean: " << M << endl << "Variance: " << endl << Var << endl; 
    1919        } 
    20         cout << "Weights: " << ep ( i )->mean() << endl; 
     20        cout << "Weights: " << ep.factor ( i )->mean() << endl; 
    2121} 
    2222