* src/tgbaalgos/postproc.cc (count_states): Speed up explicit case.
This commit is contained in:
parent
76988369dc
commit
362c396356
1 changed files with 10 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
// -*- coding: utf-8 -*-
|
// -*- coding: utf-8 -*-
|
||||||
// Copyright (C) 2012 Laboratoire de Recherche et Développement de
|
// Copyright (C) 2012, 2013 Laboratoire de Recherche et Développement
|
||||||
// l'Epita (LRDE).
|
// de l'Epita (LRDE).
|
||||||
//
|
//
|
||||||
// This file is part of Spot, a model checking library.
|
// This file is part of Spot, a model checking library.
|
||||||
//
|
//
|
||||||
|
|
@ -29,8 +29,14 @@ namespace spot
|
||||||
{
|
{
|
||||||
unsigned count_states(const tgba* a)
|
unsigned count_states(const tgba* a)
|
||||||
{
|
{
|
||||||
// FIXME: the number of states can be found more
|
const sba_explicit_number* se =
|
||||||
// efficiently in explicit automata.
|
dynamic_cast<const sba_explicit_number*>(a);
|
||||||
|
if (se)
|
||||||
|
return se->num_states();
|
||||||
|
const tgba_explicit_number* te =
|
||||||
|
dynamic_cast<const tgba_explicit_number*>(a);
|
||||||
|
if (te)
|
||||||
|
return te->num_states();
|
||||||
tgba_statistics st = stats_reachable(a);
|
tgba_statistics st = stats_reachable(a);
|
||||||
return st.states;
|
return st.states;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue