Changeset 292 for bdm/stat/libFN.h

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.h

    r270 r292  
    117117                //!\name Mathematical operations 
    118118                //!@{ 
    119                 vec eval ( const  vec &x0, const vec &u0 ); 
     119                inline vec eval ( const  vec &x0, const vec &u0 ) 
     120                { 
     121                        it_assert_debug ( x0.length() ==dimx, "linfn::eval Wrong xcond." ); 
     122                        it_assert_debug ( u0.length() ==dimu, "linfn::eval Wrong ucond." ); 
     123                        return A*x0+B*u0; 
     124                } 
     125 
    120126                void dfdx_cond ( const vec &x0, const vec &u0, mat &F, bool full ) 
    121127                {