Skip to content

Commit

Permalink
Make single header and bump patch version number
Browse files Browse the repository at this point in the history
  • Loading branch information
apulsipher committed Nov 5, 2024
1 parent 02c96d4 commit 895634c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions epiworld.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/* Versioning */
#define EPIWORLD_VERSION_MAJOR 0
#define EPIWORLD_VERSION_MINOR 4
#define EPIWORLD_VERSION_PATCH 2
#define EPIWORLD_VERSION_PATCH 3

static const int epiworld_version_major = EPIWORLD_VERSION_MAJOR;
static const int epiworld_version_minor = EPIWORLD_VERSION_MINOR;
Expand Down Expand Up @@ -2126,7 +2126,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
2 changes: 1 addition & 1 deletion include/epiworld/epiworld.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/* Versioning */
#define EPIWORLD_VERSION_MAJOR 0
#define EPIWORLD_VERSION_MINOR 4
#define EPIWORLD_VERSION_PATCH 2
#define EPIWORLD_VERSION_PATCH 3

static const int epiworld_version_major = EPIWORLD_VERSION_MAJOR;
static const int epiworld_version_minor = EPIWORLD_VERSION_MINOR;
Expand Down

0 comments on commit 895634c

Please sign in to comment.