Changeset 15
- Timestamp:
- 01/25/08 14:51:13 (17 years ago)
- Files:
-
- 6 added
- 9 modified
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r12 r15 2 2 CPPFLAGS=-g 3 3 4 all: testSmp 4 all: subsystem 5 6 subsystem: 7 $(MAKE) -C bdm 8 $(MAKE) -C tests 5 9 6 10 test: test0 7 11 ./test0 8 9 clean:10 rm *.o test0 testKF11 12 test0: test0.cpp libBM.o libDC.o itpp_ext.o13 testKF: testKF.o libKF.o libBM.o libDC.o itpp_ext.o14 testPF: testPF.o libPF.o libBM.o libDC.o itpp_ext.o15 testSmp: testSmp.o libEF.o libBM.o libDC.o itpp_ext.o -
bdm/estim/libKF.cpp
r14 r15 1 1 #include <itpp/itbase.h> 2 #include "libBM.h"3 2 #include "libKF.h" 4 3 -
bdm/estim/libKF.h
r14 r15 15 15 16 16 #include <itpp/itbase.h> 17 #include " libBM.h"18 #include " libDC.h"17 #include "../stat/libBM.h" 18 #include "../math/libDC.h" 19 19 20 20 -
bdm/estim/libPF.h
r14 r15 15 15 16 16 #include <itpp/itbase.h> 17 #include " libBM.h"18 #include " libDC.h"17 #include "../stat/libBM.h" 18 #include "../math/libDC.h" 19 19 20 20 using namespace itpp; -
bdm/stat/libBM.cpp
r14 r15 1 1 #include <itpp/itbase.h> 2 2 #include "libBM.h" 3 #include " itpp_ext.h"3 #include "../itpp_ext.h" 4 4 5 5 using namespace itpp; -
bdm/stat/libEF.h
r14 r15 15 15 16 16 #include <itpp/itbase.h> 17 #include " libDC.h"17 #include "../math/libDC.h" 18 18 #include "libBM.h" 19 19 //#include <std> -
bdm/stat/libFN.h
r14 r15 11 11 // 12 12 #include <itpp/itbase.h> 13 #include "libBM "13 #include "libBM.h" 14 14 15 15 using namespace itpp; -
tests/test0.cpp
r14 r15 1 1 #include <itpp/itbase.h> 2 #include " libBM.h"3 #include " libDC.h"2 #include "../bdm/stat/libBM.h" 3 #include "../bdm/math/libDC.h" 4 4 5 5 using namespace itpp; -
tests/testKF.cpp
r14 r15 1 1 #include <itpp/itbase.h> 2 #include "libKF.h" 3 #include "libDC.h" 2 #include "../bdm/estim/libKF.h" 4 3 5 4 using namespace itpp;