mirror of
https://github.com/gsi-upm/soil
synced 2024-11-24 11:52:29 +00:00
14 lines
220 B
Python
Executable File
14 lines
220 B
Python
Executable File
# General configuration
|
|
import json
|
|
|
|
with open('settings.json', 'r') as f:
|
|
settings = json.load(f)
|
|
|
|
network_params = settings[0]
|
|
environment_params = settings[1]
|
|
|
|
centrality_param = {}
|
|
partition_param={}
|
|
leaders={}
|
|
|