Show
Ignore:
Timestamp:
11/15/09 23:02:02 (15 years ago)
Author:
smidl
Message:

Big commit of LQG stuff

Files:
1 modified

Legend:

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

    r660 r723  
    106106                copy_vector ( dim*dim, chQ._data(), Ch._data() ); 
    107107        } 
    108  
     108        //! access function 
     109        void setCh ( const chmat &Ch0 ) { 
     110                Ch = Ch0._Ch(); 
     111                dim=Ch0.rows(); 
     112        } 
     113        //! access function 
     114        void setCh ( const mat &Ch0 ) { 
     115                //TODO check if Ch0 is OK!!! 
     116                Ch = Ch0; 
     117                dim=Ch0.rows(); 
     118        } 
     119         
    109120        //! Access functions 
    110121        void setD ( const vec &nD, int i ) {