Changeset 434

Show
Ignore:
Timestamp:
07/27/09 22:42:24 (15 years ago)
Author:
smidl
Message:

bug in chmat.opupdt resolved

Location:
library
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/math/chmat.cpp

    r279 r434  
    1010        mat R; 
    1111        mat V(1,v.length()); 
    12         V.set_row(0,v*w); 
     12        V.set_row(0,v*sqrt(w)); 
    1313        Z = concat_vertical ( Ch,V ); 
    1414        qr ( Z,R ); 
  • library/tests/square_mat_test.cpp

    r428 r434  
    100100 
    101101TEST(test_chmat) { 
    102     test_square_matrix_minimum<chmat>(0.2); 
     102    test_square_matrix_minimum<chmat>(epsilon); 
    103103}