Changeset 270 for bdm/stat/libFN.cpp

Show
Ignore:
Timestamp:
02/16/09 10:02:08 (15 years ago)
Author:
smidl
Message:

Changes in the very root classes!
* rv and rvc are no longer compulsory,
* samplecond does not return ll
* BM has drv

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libFN.cpp

    r262 r270  
    55using namespace bdm; 
    66 
    7 bilinfn::bilinfn ( const RV &rvx0, const RV &rvu0, const mat &A0, const mat &B0 ) : diffbifn (A0.rows(), rvx0,rvu0 ) 
    8 { 
    9         //check input 
    10         it_assert_debug ( ( A0.cols() ==dimx ) & ( A0.rows() ==B0.rows() ), "linfn:: wrong A" ); 
    11         it_assert_debug ( ( B0.cols() ==dimu ), "linfn:: wrong B" ); 
    12  
    13         // set dimensions 
    14         dimy = A0.rows(); 
    15  
    16         //set internals 
    17         A = A0; 
    18         B = B0; 
    19 }; 
    207 
    218inline vec bilinfn::eval ( const  vec &x0, const vec &u0 )