Changeset 132
- Timestamp:
- 07/07/08 15:49:00 (17 years ago)
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r129 r132 23 23 ELSE() 24 24 #This is for UNIX makefile which does only one release at a time. 25 #SET(CMAKE_BUILD_TYPE Debug)25 SET(CMAKE_BUILD_TYPE Debug) 26 26 SET(CMAKE_CXX_FLAGS_DEBUG "-g -Wall") 27 27 ENDIF(WIN32) … … 59 59 # the project's entire directory structure. 60 60 add_subdirectory (bdm) 61 add_subdirectory (tests)61 #add_subdirectory (tests) 62 62 add_subdirectory (pmsm) -
bdm/estim/libKF.h
r85 r132 158 158 \\\end{array}\right]\f] 159 159 160 Thus this obje vt evaluates only predictors! Not filtering densities.160 Thus this object evaluates only predictors! Not filtering densities. 161 161 */ 162 162 void bayes ( const vec &dt ); -
tests/CMakeLists.txt
r129 r132 32 32 add_executable (blas_test blas_test.cpp) 33 33 target_link_libraries (blas_test itpp) 34 35 add_executable (struct_test struct_test.cpp) 36 target_link_libraries (struct_test itpp) 34 37 35 38 add_executable (test0 test0.cpp)