Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile
r17 r18 1 LDFLAGS = -L../bdm2 LDLIBS = -lbdm -litpp1 LDFLAGS += -L../bdm 2 LDLIBS += -lbdm 3 3 4 all: subsystem test0 testKF 4 all: subsystem test0 testKF testSL 5 5 echo $(CPPFLAGS) 6 6 … … 12 12 testKF: testKF.o 13 13 14 testSL: testSL.o 15 14 16 clean: 15 17 $(RM) test0 -
tests/test0.cpp
r15 r18 41 41 cout << "ld:"<<Il.to_mat() << "eye:"<< I <<endl; 42 42 43 cout << "Test ldform()"<<endl; 44 mat V = "1 2; 2 3"; 45 ldmat lV(V); 46 // cout << "ld:" << lV.to_mat() << "eye:"<< I <<endl; 47 43 48 44 49 //Exit program: -
tests/testKF.cpp
r17 r18 20 20 int Ndat; 21 21 22 fin.seek( "d" );23 fin >> 22 bool xxx= fin.seek( "d" ); 23 fin >>Dt; 24 24 fin.seek( "A" ); 25 25 fin >> A; … … 34 34 fin.seek( "Q" ); fin >> Q; 35 35 fin.seek( "P0" ); fin >> P0; 36 fin.seek( "mu0" ); fin >> Mu0; mu0=Mu0; 36 fin.seek( "mu0" ); fin >> Mu0; 37 mu0=Mu0.get_col(0); 37 38 38 39 Ndat = Dt.cols();