Changeset 18 for tests

Show
Ignore:
Timestamp:
02/01/08 10:49:29 (17 years ago)
Author:
smidl
Message:

update

Location:
tests
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • tests/Makefile

    r17 r18  
    1 LDFLAGS = -L../bdm 
    2 LDLIBS = -lbdm -litpp 
     1LDFLAGS += -L../bdm 
     2LDLIBS += -lbdm 
    33 
    4 all: subsystem test0 testKF 
     4all: subsystem test0 testKF testSL 
    55        echo $(CPPFLAGS) 
    66 
     
    1212testKF: testKF.o 
    1313 
     14testSL: testSL.o 
     15 
    1416clean: 
    1517        $(RM) test0 
  • tests/test0.cpp

    r15 r18  
    4141                cout << "ld:"<<Il.to_mat() << "eye:"<< I <<endl; 
    4242 
     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 
    4348 
    4449        //Exit program: 
  • tests/testKF.cpp

    r17 r18  
    2020        int Ndat; 
    2121 
    22         fin.seek( "d" ); 
    23         fin >> Dt; 
     22        bool xxx= fin.seek( "d" ); 
     23        fin >>Dt; 
    2424        fin.seek( "A" );  
    2525        fin >> A; 
     
    3434        fin.seek( "Q" ); fin >> Q; 
    3535        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); 
    3738         
    3839        Ndat = Dt.cols();