Combine parameters for simulation and verify for correctness.
make_vaccine_parameters(
safir_parameters,
vaccine_ab_parameters,
vaccine_set,
dose_period,
strategy_matrix,
next_dose_priority_matrix
)
a list from get_parameters
a list from get_vaccine_ab_titre_parameters
a vector giving the number of doses available each day (not each timestep)
a vector giving the minimum delay between doses
a vaccine strategy matrix from strategy_matrix
or a list of strategy matrices, one for each vaccine dose
a binary matrix giving age groups prioritized for next dose; it should have one fewer row than the number of doses being given, because on the final allocation phase there will be no future dose to prioritize
If modeling a single dose, dose_period
must be a vector of length 1 and
next_dose_priority_matrix
may be set to NULL
.