Skip to content

Commit

Permalink
Fix lfmcmc print to expect size_t argument
Browse files Browse the repository at this point in the history
  • Loading branch information
apulsipher committed Nov 5, 2024
1 parent 3ebd187 commit 02c96d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/epiworld/math/lfmcmc/lfmcmc-meat-print.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ inline void LFMCMC<TData>::print()
printf_epiworld("___________________________________________\n\n");
printf_epiworld("LIKELIHOOD-FREE MARKOV CHAIN MONTE CARLO\n\n");

printf_epiworld("N Samples : %ld\n", n_samples);
printf_epiworld("N Samples : %zu\n", n_samples);

std::string abbr;
epiworld_double elapsed;
Expand Down

0 comments on commit 02c96d4

Please sign in to comment.