Skip to content
Snippets Groups Projects
Commit 63697314 authored by Peter Jentsch's avatar Peter Jentsch
Browse files

readme updates so HR ppl know what this does

parent 6c31b6c9
No related branches found
No related tags found
No related merge requests found
......@@ -227,6 +227,9 @@ function assemble_graph!(g,weights_dict,index_vectors,mixing_matrix,sampler_matr
end
end
# fast chung-lu algorithm for bipartite graphs from
# Aksoy, Sinan G., Tamara G. Kolda, and Ali Pinar. "Measuring and modeling bipartite graphs with community structure." Journal of Complex Networks 5.4 (2017): 581-603.
function fast_chung_lu_bipartite(degrees_ij,degrees_ji,index_vectors_i,index_vectors_j)
m = sum(degrees_ij)
@assert m == sum(degrees_ji)
......
# CovidAlertVaccinationModel
This a WIP.
This is an agent-based model for a work-in-progress paper. It simulates an influenza outbreak on a random, time-dependent disease-behavior network. The network structure is obtained from data.
This repo contains two packages:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment