- Timestamp:
- 01/05/10 22:19:49 (15 years ago)
- Location:
- library/bdm
- Files:
-
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/base/bdmbase.h
r750 r760 612 612 // TODO we do not want to store rvc.. 613 613 // therfore, pdf::to_setting( set ) is omitted 614 root::to_setting(set); 614 615 UI::save( &rv, set, "rv" ); 615 616 } -
library/bdm/base/user_info.h
r737 r760 545 545 //! A root descendant instance is stored in the new child Setting appended to the passed element 546 546 template< class T> static void save ( const T * const instance, Setting &element, const string &name = "" ) { 547 Setting &set = ( name == "" ) ? element.add ( Setting::TypeGroup )547 Setting &set = ( name == "" ) ? (element.getType()==Setting::TypeArray) ? element.add ( Setting::TypeGroup ) : element 548 548 : element.add ( name, Setting::TypeGroup ); 549 549 -
library/bdm/stat/discrete.cpp
r737 r760 97 97 98 98 void discrete_support::from_setting ( const Setting &set ) { 99 UI::get ( Spoints, set, "points", UI:: compulsory);99 UI::get ( Spoints, set, "points", UI::optional ); 100 100 if ( points() < 1 ) { 101 101 int npoints; -
library/bdm/stat/emix.cpp
r750 r760 7 7 8 8 bool isnamed = Coms0 ( 0 )->isnamed(); 9 int i;10 9 RV tmp_rv; 11 10 if ( isnamed ) tmp_rv = Coms0 ( 0 )->_rv(); -
library/bdm/stat/exp_family.h
r750 r760 1422 1422 }; 1423 1423 virtual void validate (){ 1424 bdm_assert ( n > 0, "Empty samples" ); 1425 epdf::validate ( samples ( 0 ).length() ); 1424 bdm_assert (samples.length()==w.length(),"samples and weigths are of different lengths"); 1425 n = w.length(); 1426 if (n>0) 1427 epdf::validate ( samples ( 0 ).length() ); 1426 1428 } 1427 1429 //! Potentially dangerous, use with care. … … 1483 1485 //! For this class, qbounds are minimum and maximum value of the population! 1484 1486 void qbounds ( vec &lb, vec &ub, double perc = 0.95 ) const; 1485 }; 1487 1488 void to_setting ( Setting &set ) const { 1489 epdf::to_setting( set ); 1490 UI::save ( samples, set, "samples" ); 1491 UI::save ( w, set, "w" ); 1492 } 1493 1494 void from_setting ( const Setting &set ) { 1495 epdf::from_setting( set ); 1496 1497 UI::get( samples, set, "samples", UI::compulsory ); 1498 UI::get ( w, set, "w", UI::compulsory ); 1499 validate(); 1500 } 1501 1502 }; 1503 UIREGISTER(eEmp); 1486 1504 1487 1505