File config.py changed (mode: 100644) (index 370006e..ab286ad) |
... |
... |
advanced_scores = {'advanced_unified_risk_score': advancedscores.adv_unified_ris |
116 |
116 |
# advanced modes have sub-modes for e.g. each metric |
# advanced modes have sub-modes for e.g. each metric |
117 |
117 |
|
|
118 |
118 |
percolation_modes = {'failure': percolation.failure, |
percolation_modes = {'failure': percolation.failure, |
119 |
|
'random_walk': percolation.random_walk, |
|
120 |
|
'russian_shutoff': percolation.russian |
|
|
119 |
|
'random_walk': percolation.random_walk#, |
|
120 |
|
#'russian_shutoff': percolation.russian |
121 |
121 |
} |
} |
122 |
122 |
|
|
123 |
123 |
advanced_percolation_modes = {'target_list': percolation.target_list, |
advanced_percolation_modes = {'target_list': percolation.target_list, |
|
... |
... |
advanced_percolation_modes = {'target_list': percolation.target_list, |
128 |
128 |
# note 1: ARF does not seem to work with most graphs (error message: non-invertible matrix) |
# note 1: ARF does not seem to work with most graphs (error message: non-invertible matrix) |
129 |
129 |
# note 2: Fruchtermann-Rheingold layout (FRUCHT) takes up a high percentrage of computation time |
# note 2: Fruchtermann-Rheingold layout (FRUCHT) takes up a high percentrage of computation time |
130 |
130 |
visualization_layouts = {#'SFDP': visualization.sfdp, |
visualization_layouts = {#'SFDP': visualization.sfdp, |
131 |
|
'Radial': visualization.radial, |
|
|
131 |
|
'Radial': visualization.radial#, |
132 |
132 |
#'Random': visualization.random, |
#'Random': visualization.random, |
133 |
133 |
#'ARF': visualization.arf, |
#'ARF': visualization.arf, |
134 |
134 |
#'Fruchterman_Reingold':visualization.frucht |
#'Fruchterman_Reingold':visualization.frucht |
|
... |
... |
visualization_layouts = {#'SFDP': visualization.sfdp, |
137 |
137 |
# Redis |
# Redis |
138 |
138 |
REDIS_PORT = 6379 |
REDIS_PORT = 6379 |
139 |
139 |
REDIS_HOST = 'redis' |
REDIS_HOST = 'redis' |
|
140 |
|
FLUSH_REDIS_DB = True |
|
141 |
|
|
|
142 |
|
# Percolation |
|
143 |
|
PERCOLATION_PERCENTAGES = '1 2 5 10' |
File metric_calculator.py changed (mode: 100644) (index e7f0688..733b22f) |
... |
... |
class MetricCalculator(object): |
19 |
19 |
print ('Starting metric_calculator!') |
print ('Starting metric_calculator!') |
20 |
20 |
|
|
21 |
21 |
# for code evaluation |
# for code evaluation |
22 |
|
self.start_time = dt.datetime.now() |
|
|
22 |
|
self.start_time = dt.datetime.now() |
23 |
23 |
self.durations = {} |
self.durations = {} |
24 |
24 |
self.durations_in_seconds = {} |
self.durations_in_seconds = {} |
25 |
25 |
self.durations_in_percent = {} |
self.durations_in_percent = {} |
|
... |
... |
class MetricCalculator(object): |
48 |
48 |
# configuration variables are read from the config file and are also saved to class variables for easy access |
# configuration variables are read from the config file and are also saved to class variables for easy access |
49 |
49 |
self.graph_index_key = config.graph_index_key |
self.graph_index_key = config.graph_index_key |
50 |
50 |
|
|
51 |
|
self.graph_name = '' |
|
|
51 |
|
self.graph_name = 'coria-graph' |
52 |
52 |
while (self.graph_name == ''): |
while (self.graph_name == ''): |
53 |
53 |
self.graph_name = raw_input("Please enter name of graph. This will be used for storing results.\n") |
self.graph_name = raw_input("Please enter name of graph. This will be used for storing results.\n") |
54 |
54 |
|
|
|
... |
... |
class MetricCalculator(object): |
126 |
126 |
## PRELIMINARIES ## |
## PRELIMINARIES ## |
127 |
127 |
################### |
################### |
128 |
128 |
def flush_database(self): |
def flush_database(self): |
129 |
|
# ask to clean all data in Redis |
|
130 |
|
flush_flag = 'Flushing' |
|
131 |
|
while (flush_flag != 'y' and flush_flag != 'n'): |
|
132 |
|
flush_flag = raw_input("Would you like to flush the database before continuing? [y/n]") |
|
133 |
|
if flush_flag == 'y': |
|
134 |
|
self.redis.flushdb() |
|
|
129 |
|
# Check if FLUSH_REDIS_DB is set to True and flush the DB |
|
130 |
|
if config.FLUSH_REDIS_DB: |
|
131 |
|
self.redis.flushdb() |
135 |
132 |
|
|
136 |
133 |
def obtain_percentages(self): |
def obtain_percentages(self): |
137 |
134 |
# obtain percentages for calculation of deterioration # |
# obtain percentages for calculation of deterioration # |
138 |
135 |
# and calculate number of nodes to remove from graph ## |
# and calculate number of nodes to remove from graph ## |
139 |
|
percentages = '' # initialise |
|
|
136 |
|
percentages = config.PERCOLATION_PERCENTAGES # initialise |
140 |
137 |
while (percentages == ''): |
while (percentages == ''): |
141 |
138 |
percentages = raw_input("Please enter percentages of nodes to remove for the calculation of percolation. (10 is interpreted as 10%. If multiple percentages are given they must be separated by whitespace, e.g. \"1 2 5 10\".)\n") |
percentages = raw_input("Please enter percentages of nodes to remove for the calculation of percolation. (10 is interpreted as 10%. If multiple percentages are given they must be separated by whitespace, e.g. \"1 2 5 10\".)\n") |
142 |
139 |
|
|