From ac55d037fe2721c503f377e2fd09b5dc441fd712 Mon Sep 17 00:00:00 2001 From: Ariel Shurygin Date: Mon, 29 Jan 2024 14:53:42 -0800 Subject: [PATCH] build_cross_immunity_matrix -> load_cross_immunity_matrix --- mechanistic_compartments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mechanistic_compartments.py b/mechanistic_compartments.py index c8e44c48..570c21c5 100644 --- a/mechanistic_compartments.py +++ b/mechanistic_compartments.py @@ -65,7 +65,7 @@ def __init__(self, **kwargs): # GENERATE CROSS IMMUNITY MATRIX with protection from STRAIN_INTERACTIONS most recent infected strain. if self.CROSSIMMUNITY_MATRIX is None: - self.build_cross_immunity_matrix() + self.load_cross_immunity_matrix() # if not given, load population fractions based on observed census data into self if not self.INITIAL_POPULATION_FRACTIONS: self.load_initial_population_fractions()