Changeset 292 for bdm/stat/libFN.cpp

Show
Ignore:
Timestamp:
03/09/09 15:19:32 (15 years ago)
Author:
mido
Message:

rozbehan build pod VS 9.0, a implicitni parametr CMake pod Windows nastaven na tuto verzi

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libFN.cpp

    r278 r292  
    44using std::endl; 
    55using namespace bdm; 
    6  
    7  
    8 inline vec bilinfn::eval ( const  vec &x0, const vec &u0 ) 
    9 { 
    10         it_assert_debug ( x0.length() ==dimx, "linfn::eval Wrong xcond." ); 
    11         it_assert_debug ( u0.length() ==dimu, "linfn::eval Wrong ucond." ); 
    12         return A*x0+B*u0; 
    13 };