* src/bin/ltlcross.cc (statistics): Initialize all members.
This commit is contained in:
parent
57d25f0e21
commit
330b6ddac0
1 changed files with 14 additions and 2 deletions
|
|
@ -174,8 +174,20 @@ struct statistics
|
||||||
{
|
{
|
||||||
statistics()
|
statistics()
|
||||||
: ok(false),
|
: ok(false),
|
||||||
// Initialize these, because they accumulate values from several
|
states(0),
|
||||||
// products.
|
transitions(0),
|
||||||
|
acc(0),
|
||||||
|
scc(0),
|
||||||
|
nonacc_scc(0),
|
||||||
|
terminal_scc(0),
|
||||||
|
weak_scc(0),
|
||||||
|
strong_scc(0),
|
||||||
|
nondetstates(0),
|
||||||
|
nondeterministic(false),
|
||||||
|
terminal_aut(false),
|
||||||
|
weak_aut(false),
|
||||||
|
strong_aut(false),
|
||||||
|
time(0),
|
||||||
product_states(0),
|
product_states(0),
|
||||||
product_transitions(0),
|
product_transitions(0),
|
||||||
product_scc(0)
|
product_scc(0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue