-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommons.py
More file actions
25 lines (20 loc) · 704 Bytes
/
commons.py
File metadata and controls
25 lines (20 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
benchmarks = ['jdom', 'jgrapht', 'jmeter', 'weka', 'jfree', 'gvis', 'hsqldb', 'poi', 'jodatime', 'cc']
project_dir = '../projects/'
bauhaus_dir = './bauhaus-complete-data/'
dirs = {
'jdom' : 'jdom',
'jgrapht' : 'jgrapht',
'jmeter' : 'jmeter',
'weka' : 'weka',
'jfree' : 'jfreechart',
'gvis' : 'google-visualization',
'hsqldb' : 'hsqldb',
'poi' : 'poi',
'jodatime' : 'joda-time',
'cc' : 'apache-commons-collections',
}
def af_result_file_name(project):
return 'results/%s/method_sets_by_assert_flow' % project
def bauhaus_result_file_name(project):
return '%s.txt' % dirs[project]