27#include <spot/misc/common.hh>
62 std::vector<std::string>
name;
72 SPOT_API std::ostream& operator<<(std::ostream& os,
const mc_algorithm& ma)
77 os <<
"bloemen_ec";
break;
79 os <<
"bloemen_scc";
break;
83 os <<
"deadlock";
break;
85 os <<
"reachability";
break;
87 os <<
"swarming";
break;
92 SPOT_API std::ostream& operator<<(std::ostream& os,
const mc_rvalue& mr)
97 os <<
"deadlock";
break;
101 os <<
"failure";
break;
103 os <<
"no_deadlock";
break;
105 os <<
"not_empty";
break;
107 os <<
"success";
break;
112 SPOT_API std::ostream& operator<<(std::ostream& os,
const ec_stats& es)
114 for (
unsigned i = 0; i < es.name.size(); ++i)
116 os <<
"---- Thread number:\t" << i <<
'\n'
117 <<
" - Algorithm:\t\t" << es.name[i] <<
'\n'
118 <<
" - Walltime (ms):\t" << es.walltime[i] <<
'\n'
119 <<
" - States:\t\t" << es.states[i] <<
'\n'
120 <<
" - Transitions:\t" << es.transitions[i] <<
'\n'
121 <<
" - Result:\t\t" << es.value[i] <<
'\n'
122 <<
" - SCCs:\t\t" << es.sccs[i] <<
'\n';
124 os <<
"CSV: tid,algorithm,walltime,states,transitions,"
125 "sccs,result,finisher\n"
126 <<
"@th_" << i <<
',' << es.name[i] <<
',' << es.walltime[i] <<
','
127 << es.states[i] <<
',' << es.transitions[i] <<
','
128 << es.sccs[i] <<
',' << es.value[i]
129 <<
',' << es.finisher[i] <<
"\n\n";
165 throw std::runtime_error(
"Unable to compare these elements!");
Definition automata.hh:26
mc_algorithm
The list of parallel model-checking algorithms available.
Definition mc.hh:39
@ CNDFS
Evangelista.12.atva emptiness check.
@ REACHABILITY
Only perform a reachability algorithm.
@ SWARMING
Holzmann.11.ieee applied to renault.13.lpar.
@ DEADLOCK
Check wether there is a deadlock.
@ BLOEMEN_SCC
Bloemen.16.ppopp SCC computation.
@ BLOEMEN_EC
Bloemen.16.hvc emptiness check.
mc_rvalue
Definition mc.hh:49
@ NOT_EMPTY
The product is not empty.
@ NO_DEADLOCK
No deadlock has been found.
@ FAILURE
The Algorithm finished abnormally.
@ DEADLOCK
A deadlock has been found.
@ EMPTY
The product is empty.
@ SUCCESS
The Algorithm finished normally.
const mc_rvalue operator|(const mc_rvalue &lhs, const mc_rvalue &rhs)
This function helps to find the output value from a set of threads that may have different values.
Definition mc.hh:136
This structure contains, for each thread, the collected information during the traversal.
Definition mc.hh:61
std::vector< mc_rvalue > value
The return status.
Definition mc.hh:67
std::vector< unsigned > walltime
Walltime for this thread in ms.
Definition mc.hh:63
std::vector< bool > finisher
Is it the finisher thread?
Definition mc.hh:68
std::vector< int > sccs
Number of SCCs or -1.
Definition mc.hh:66
std::vector< unsigned > states
Number of states visited.
Definition mc.hh:64
std::vector< unsigned > transitions
Number of transitions visited.
Definition mc.hh:65
std::vector< std::string > name
The name of the algorithm used.
Definition mc.hh:62
std::string trace
The output trace.
Definition mc.hh:69