Show
Ignore:
Timestamp:
10/22/09 15:18:50 (15 years ago)
Author:
smidl
Message:

finalizing transition mpdf->epdf

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/stat/exp_family.h

    r665 r678  
    408408                } 
    409409                void validate() {  
    410                         iepdf.validate(); 
     410                        mpdf_internal<eDirich>::validate(); 
    411411                        bdm_assert(_beta.length()==betac.length(),"beta0 and betac are not compatible"); 
    412412                        if (_rv()._dsize()>0){ 
     
    734734                }; 
    735735                void validate() { 
     736                        mpdf_internal<TEpdf<sq_T> >::validate(); 
    736737                        bdm_assert (A.rows() == mu_const.length(), "mlnorm: A vs. mu mismatch"); 
    737738                        bdm_assert (A.rows() == _R().rows(), "mlnorm: A vs. R mismatch"); 
     
    895896                        UI::get (k, set, "k", UI::compulsory); 
    896897                        set_parameters (k, betatmp); 
     898                        validate(); 
     899                } 
     900                void validate() { 
     901                        mpdf_internal<egamma>::validate(); 
     902                         
     903                        dim = _beta.length(); 
     904                        dimc = _beta.length(); 
    897905                } 
    898906};