Skip to content

Commit

Permalink
Unit tests for MF AD model, decreased number of agents, so that it is…
Browse files Browse the repository at this point in the history
… faster
  • Loading branch information
MSallermann committed Mar 14, 2024
1 parent 109381f commit 3f1b7c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/res/10_agents_meanfield_activity.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[simulation]
model = "ActivityDriven"
rng_seed = 120 # Leaving this empty will pick a random seed
# rng_seed = 120 # Leaving this empty will pick a random seed

[io]
n_output_network = 1 # Write the network every 20 iterations
Expand All @@ -12,7 +12,7 @@ max_iterations = 1000 # If not set, max iterations is infinite

[ActivityDriven]
dt = 0.01 # Timestep for the integration of the coupled ODEs
m = 10 # Number of agents contacted, when the agent is active
m = 10 # Number of agents contacted, when the agent is active
eps = 0.01 # Minimum activity epsilon; a_i belongs to [epsilon,1]
gamma = 2.1 # Exponent of activity power law distribution of activities
reciprocity = 1.0 # probability that when agent i contacts j via weighted reservoir sampling, j also sends feedback to i. So every agent can have more than m incoming connections
Expand All @@ -23,5 +23,5 @@ mean_activities = true # Use the mean value of the powerlaw distribution for the
mean_weights = true # Use the meanfield approximation of the network edges

[network]
number_of_agents = 100
number_of_agents = 50
connections_per_agent = 1

0 comments on commit 3f1b7c5

Please sign in to comment.