Show
Ignore:
Timestamp:
11/26/09 22:46:01 (14 years ago)
Author:
smidl
Message:

Stress tests are passing now. Missing validate calls are filled...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/bdmbase.h

    r738 r741  
    437437        //! Array<vec> version of evallogcond 
    438438        virtual vec evallogcond_mat ( const Array<vec> &Yt, const vec &cond ) { 
    439                 bdm_error ( "Not implemented" ); 
    440                 return vec(); 
     439                vec v ( Yt.length() ); 
     440                for ( int i = 0; i < Yt.length(); i++ ) { 
     441                        v ( i ) = evallogcond ( Yt( i ), cond ); 
     442                } 
     443                return v; 
    441444        } 
    442445