* src/bin/ltlcross.cc (statistics): Initialize all members.

This commit is contained in:
Alexandre Duret-Lutz 2013-05-16 17:46:18 +02:00
parent 57d25f0e21
commit 330b6ddac0

View file

@ -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)