mirror of
https://github.com/gsi-upm/soil
synced 2024-11-14 15:32:29 +00:00
14 lines
482 B
Python
14 lines
482 B
Python
|
import settings
|
||
|
|
||
|
settings.init()
|
||
|
|
||
|
global networkStatus
|
||
|
networkStatus = {} # Dict that will contain the status of every agent in the network
|
||
|
|
||
|
sentimentCorrelationNodeArray=[]
|
||
|
for x in range(0, settings.number_of_nodes):
|
||
|
sentimentCorrelationNodeArray.append({'id':x})
|
||
|
# Initialize agent states. Let's assume everyone is normal.
|
||
|
init_states = [{'id': 0, } for _ in range(settings.number_of_nodes)]
|
||
|
# add keys as as necessary, but "id" must always refer to that state category
|