Changeset 997

Show
Ignore:
Timestamp:
05/26/10 23:33:38 (14 years ago)
Author:
smidl
Message:

product of arx models

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/estim/mixtures.h

    r943 r997  
    1818#include "../stat/exp_family.h" 
    1919#include "../stat/emix.h" 
     20#include "arx.h" 
    2021 
    2122namespace bdm { 
     
    128129UIREGISTER ( MixEF ); 
    129130 
     131class ARXprod: public ProdBMBase { 
     132        Array<shared_ptr<ARX> > arxs; 
     133        public: 
     134                ARX* bm(int i){return arxs(i).get();} 
     135                int no_bms() {return arxs.length();} 
     136}; 
     137UIREGISTER(ARXprod); 
     138 
    130139} 
    131140#endif // MIXTURES_H