Changeset 292

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:
4 modified

Legend:

Unmodified
Added
Removed
  • CMake_modules/FindITPP.cmake

    r279 r292  
    1111 
    1212FIND_PATH(ITPP_INCLUDE_DIR itpp/itbase.h 
    13         ${ITPP_DIR}/include 
     13        ${ITPP_DIR} 
    1414        /usr/pkgs64/include 
    1515        /usr/include 
  • 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 }; 
  • 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                { 
  • win32/run_cmake.bat

    r95 r292  
    11@echo off 
    22cd .. 
    3 "c:\Devel\CMake 2.6\bin\cmake.exe" -G "Visual Studio 8 2005" 
     3cmake -G "Visual Studio 9 2008" 
    44pause