-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestdata_bc_improved.py
54 lines (45 loc) · 1.51 KB
/
testdata_bc_improved.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/python
#************************************************************
#
# IMITATOR
#
# Testing script
# (Testing data)
#
# Testing data descripion:
# cartography algorithm, testing improved algorithm
#
# Etienne ANDRE
# Laboratoire d'Informatique de Paris Nord
# Universite Paris 13, Sorbonne Paris Cite, France
# Created : 2013/01/23
# Last modified: 2013/01/23
#************************************************************
#************************************************************
# BINARIES
#************************************************************
# Binaries to execute, with options
binaries = [
{'version': '2.51' , 'options' : ''}
,
{'version': 'unstable' , 'options' : ''}
]
#************************************************************
# COMMON OPTIONS
#************************************************************
# Options common for all case studies
common_options = '-mode cover'
#************************************************************
# LIST OF EXAMPLES
#************************************************************
examples = [
{'files' : ['AndOr/AndOr.imi' , 'AndOr/AndOr.v0 '] , 'options' : ''}
,
{'files' : ['Flipflop/flipflop.imi' , 'Flipflop/flipflop.v0'] , 'options' : ''}
,
{'files' : ['SRlatch/SRlatch.imi' , 'SRlatch/SRlatch.v0'] , 'options' : ''}
,
#{'files' : ['RCP/RCP.imi' , 'RCP/RCP.v0'] , 'options' : ''}
#,
{'files' : ['CSMACD/csmacdPrism_2p.imi' , 'CSMACD/csmacdPrism_2p.v0'] , 'options' : ''}
]