Changeset 183 for bdm/math

Show
Ignore:
Timestamp:
10/17/08 10:28:16 (16 years ago)
Author:
smidl
Message:

Universal merging tool is (almost) finished

Location:
bdm/math
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • bdm/math/chmat.h

    r168 r183  
    6363                Ch=chol ( M ); 
    6464        }; 
     65        //! Constructor 
     66        chmat ( const chmat &M, const ivec &perm ):sqmat(M.rows()){it_error("not implemneted");}; 
    6567        //! Access function 
    6668        mat & _Ch() {return Ch;} 
  • bdm/math/libDC.h

    r180 r183  
    131131                //! Constructor 
    132132                fsqmat ( const mat &M ); 
     133                //! Constructor 
     134                fsqmat ( const fsqmat &M, const ivec &perm ):sqmat(M.rows()){it_error("not implemneted");}; 
    133135                //! Constructor 
    134136                fsqmat ( const vec &d ):sqmat(d.length()){M=diag(d);};