Changeset 270 for bdm/math

Show
Ignore:
Timestamp:
02/16/09 10:02:08 (15 years ago)
Author:
smidl
Message:

Changes in the very root classes!
* rv and rvc are no longer compulsory,
* samplecond does not return ll
* BM has drv

Location:
bdm/math
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • bdm/math/chmat.h

    r262 r270  
    4848        //! Destructor for future use; 
    4949        virtual ~chmat() {}; 
     50        //! 
     51        chmat ( ) : sqmat (),Ch ( ) {}; 
    5052        //! Default constructor 
    5153        chmat ( const int dim0 ) : sqmat ( dim0 ),Ch ( dim0,dim0 ) {}; 
  • bdm/math/libDC.h

    r262 r270  
    104104                //! Default constructor 
    105105                sqmat(const int dim0): dim(dim0){}; 
     106                //! Default constructor 
     107                sqmat(): dim(0){}; 
    106108        protected: 
    107109                //! dimension of the square matrix 
     
    131133 
    132134                //! Default initialization 
    133                 fsqmat(); // mat will be initialized OK 
     135                fsqmat(){}; // mat will be initialized OK 
    134136                //! Default initialization with proper size 
    135137                fsqmat(const int dim0); // mat will be initialized OK