Illustrates how to share data between two unrelated models.
hiv_model.pycontains the "HIV" model (actually not, since it's SIR).tb_model.pycontains the "TB" model (actually not, since it's SI).shared_vars.pydefines the variables that will be shared between the models. This is the secret sauce that lets this solution work.run.pycoordinates the running of the models either independently or together.
python run.py