Skip to content

Commit

Permalink
Merge branch '36-lfmcmc-naming-patch' of github.com:UofUEpiBio/epiwor…
Browse files Browse the repository at this point in the history
…ld into 36-lfmcmc-naming-patch
  • Loading branch information
apulsipher committed Dec 9, 2024
2 parents ba21a6b + cfbc814 commit b514bd3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion epiworld.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2181,7 +2181,8 @@ inline void LFMCMC<TData>::print(size_t burnin) const
printf_epiworld("___________________________________________\n\n");
printf_epiworld("LIKELIHOOD-FREE MARKOV CHAIN MONTE CARLO\n\n");

printf_epiworld("N Samples : %zu\n", m_n_samples);
printf_epiworld("N Samples (total) : %zu\n", m_n_samples);
printf_epiworld("N Samples (after burn-in period) : %zu\n", m_n_samples - burnin);

std::string abbr;
epiworld_double elapsed;
Expand Down
3 changes: 2 additions & 1 deletion include/epiworld/math/lfmcmc/lfmcmc-meat-print.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ inline void LFMCMC<TData>::print(size_t burnin) const
printf_epiworld("___________________________________________\n\n");
printf_epiworld("LIKELIHOOD-FREE MARKOV CHAIN MONTE CARLO\n\n");

printf_epiworld("N Samples : %zu\n", m_n_samples);
printf_epiworld("N Samples (total) : %zu\n", m_n_samples);
printf_epiworld("N Samples (after burn-in period) : %zu\n", m_n_samples - burnin);

std::string abbr;
epiworld_double elapsed;
Expand Down

0 comments on commit b514bd3

Please sign in to comment.