Remove the has_mark() function in favor of the is_marked() method.

* src/ltlast/unop.cc (NegClosure): Reset is.not_marked.
* src/ltlvisit/mark.hh,
src/ltlvisit/mark.cc (has_mark_visitor, has_mark): Remove.
* src/tgbaalgos/ltl2tgba_fm.cc: Use f->is_marked() instead
of has_mark(f).
This commit is contained in:
Alexandre Duret-Lutz 2010-12-09 14:10:05 +01:00
parent 957ba664b7
commit 6380968f32
4 changed files with 4 additions and 111 deletions

View file

@ -1394,7 +1394,7 @@ namespace spot
*new_flag = true;
// Perform the actual translation.
v_.reset(!has_mark(f));
v_.reset(!f->is_marked());
f->accept(v_);
translated t;
t.symbolic = v_.result();