Minor fixes to compile with GCC 3.3
* src/ltlast/automatop.cc, src/ltlast/automatop.hh: Rename nfa as get_nfa to avoid a name clash with the `nfa' class. * src/ltlvisit/clone.cc, src/ltlvisit/nenoform.cc, src/ltlvisit/tostring.cc, src/tgbaalgos/eltl2tgba_lacim.cc: Use get_nfa instead of nfa. * src/tgba/tgbasafracomplement.cc: Don't use a const_reverse_iterator.
This commit is contained in:
parent
dcf7eed11f
commit
0d6fd3225a
8 changed files with 27 additions and 13 deletions
|
|
@ -170,12 +170,12 @@ namespace spot
|
|||
v.push_back(const_cast<formula*>(node->nth(i)));
|
||||
|
||||
std::pair<int, int> vp =
|
||||
recurse_state(node->nfa(),
|
||||
node->nfa()->get_init_state(), v, m, acc, finish);
|
||||
recurse_state(node->get_nfa(),
|
||||
node->get_nfa()->get_init_state(), v, m, acc, finish);
|
||||
|
||||
// Update finish_ with finish(node).
|
||||
// FIXME: when node is loop, it does not make sense; hence the bddtrue.
|
||||
finish_[node] = !node->nfa()->is_loop() ? bddtrue : finish;
|
||||
finish_[node] = !node->get_nfa()->is_loop() ? bddtrue : finish;
|
||||
|
||||
bdd tmp = bddtrue;
|
||||
for (nmap::iterator it = m.begin(); it != m.end(); ++it)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue