List of commits:
Subject Hash Author Date (UTC)
Cleanup, add more config options 7f0a631d299eb350cc1d9f48371d145d1e3823f3 Vasilis Ververis 2017-02-24 00:57:28
Set fileformat to unix 4eed6d1916a812e143e1096e963c3b233129e8d7 Vasilis Ververis 2017-02-23 16:45:16
Fix redis hostname 57276c0a5aa259092b81a09b8c81f134ac58c959 Vasilis Ververis 2017-02-23 15:33:02
Add test dataset e76fd091a7c646c07d40dd4e037fed743edffacf Vasilis Ververis 2017-02-23 15:22:03
Add 2012 dataset a53b501c7751f5dcf05e4f495b2d766cd6fd4727 Vasilis Ververis 2017-02-23 15:06:50
Set redis config, cleanup remove spaces and tabs a53dadd1a517ad483b3bcfaf8f1a8dbf06986dba Vasilis Ververis 2017-02-23 14:09:53
added the backend code 7cd35621d7adef15ecc88a7ad61d2709530f8a52 lizzzi111 2016-05-12 21:29:37
Commit 7f0a631d299eb350cc1d9f48371d145d1e3823f3 - Cleanup, add more config options
Author: Vasilis Ververis
Author date (UTC): 2017-02-24 00:57
Committer name: Vasilis Ververis
Committer date (UTC): 2017-02-24 00:57
Parent(s): 4eed6d1916a812e143e1096e963c3b233129e8d7
Signer:
Signing key:
Signing status: N
Tree: 7f2c0a09da3e978837a202e99192508187c643a2
File Lines added Lines deleted
.gitignore 1 0
config.py 7 3
metric_calculator.py 6 9
File .gitignore added (mode: 100644) (index 0000000..0d20b64)
1 *.pyc
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
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/coria/coria-backend

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/coria/coria-backend

Clone this repository using git:
git clone git://git.rocketgit.com/user/coria/coria-backend

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main