- Timestamp:
- 03/19/10 11:23:05 (15 years ago)
- Location:
- library/bdm/base
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
library/bdm/base/bdmbase.cpp
r870 r871 470 470 logrec->ids ( 0 ) = logrec->L.add_vector ( r, prefix + logrec->L.prefix_sep() + "mean" ); 471 471 } 472 if ( log_level[loglb ] ) {472 if ( log_level[loglbound] ) { 473 473 logrec->ids ( 1 ) = logrec->L.add_vector ( r, prefix + logrec->L.prefix_sep() + "lb" ); 474 474 } 475 if ( log_level[logub ] ) {475 if ( log_level[logubound] ) { 476 476 logrec->ids ( 2 ) = logrec->L.add_vector ( r, prefix + logrec->L.prefix_sep() + "ub" ); 477 477 } … … 487 487 logrec->L.log_vector ( logrec->ids ( 0 ), mean() ); 488 488 } 489 if ( log_level[loglb ] || log_level[logub] ) {489 if ( log_level[loglbound] || log_level[logubound] ) { 490 490 vec lb; 491 491 vec ub; 492 492 qbounds ( lb, ub ); 493 if (log_level[loglb ])493 if (log_level[loglbound]) 494 494 logrec->L.log_vector ( logrec->ids ( 1 ), lb ); 495 if (log_level[logub ])495 if (log_level[logubound]) 496 496 logrec->L.log_vector ( logrec->ids ( 2 ), ub ); 497 497 } … … 564 564 565 565 if (log_level[logbounds]){ 566 prior().log_level[epdf::loglb ]=true;567 prior().log_level[epdf::logub ]=true;566 prior().log_level[epdf::loglbound]=true; 567 prior().log_level[epdf::logubound]=true; 568 568 } 569 569 if (log_level[logfull]){ -
library/bdm/base/bdmbase.h
r870 r871 495 495 //! TODO DOPLNIT 496 496 497 //! \var log_level_enums loglb 497 //! \var log_level_enums loglbound 498 498 //! TODO DOPLNIT 499 499 500 //! \var log_level_enums logub 500 //! \var log_level_enums logubound 501 501 //! TODO DOPLNIT 502 502 503 503 //! \var log_level_enums logfull 504 504 //! TODO DOPLNIT 505 LOG_LEVEL(epdf,logmean,loglb ,logub,logfull);505 LOG_LEVEL(epdf,logmean,loglbound,logubound,logfull); 506 506 507 507 public: … … 1171 1171 } else { 1172 1172 if ( log_level[logbounds] ) { 1173 const_cast<epdf&> ( posterior() ).log_level[epdf::loglb ] = true;1173 const_cast<epdf&> ( posterior() ).log_level[epdf::loglbound] = true; 1174 1174 } else { 1175 1175 const_cast<epdf&> ( posterior() ).log_level[epdf::logmean] = true;;