Changeset 292
- Timestamp:
- 03/09/09 15:19:32 (16 years ago)
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
CMake_modules/FindITPP.cmake
r279 r292 11 11 12 12 FIND_PATH(ITPP_INCLUDE_DIR itpp/itbase.h 13 ${ITPP_DIR} /include13 ${ITPP_DIR} 14 14 /usr/pkgs64/include 15 15 /usr/include -
bdm/stat/libFN.cpp
r278 r292 4 4 using std::endl; 5 5 using 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 }; -
bdm/stat/libFN.h
r270 r292 117 117 //!\name Mathematical operations 118 118 //!@{ 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 120 126 void dfdx_cond ( const vec &x0, const vec &u0, mat &F, bool full ) 121 127 { -
win32/run_cmake.bat
r95 r292 1 1 @echo off 2 2 cd .. 3 "c:\Devel\CMake 2.6\bin\cmake.exe" -G "Visual Studio 8 2005"3 cmake -G "Visual Studio 9 2008" 4 4 pause