Replace delete by destroy in comments dealing with states.

* src/tgba/succiter.hh, src/tgba/tgba.hh,
src/tgba/tgbabddconcrete.hh, src/tgba/tgbaproduct.hh,
src/tgba/tgbaunion.hh, src/tgbaalgos/bfssteps.hh,
src/tgbaalgos/gtec/ce.cc, src/tgbaalgos/gtec/explscc.hh,
src/tgbaalgos/gtec/gtec.cc, src/tgbaalgos/replayrun.cc,
src/tgbaalgos/scc.cc, src/tgbaalgos/scc.hh: Update comments
to say that we "destroy" a state instead of "deleting" it.
This commit is contained in:
Alexandre Duret-Lutz 2011-01-27 10:47:57 +01:00
parent 95cc50da51
commit 0c9c9fc639
13 changed files with 41 additions and 18 deletions

View file

@ -216,7 +216,7 @@ namespace spot
}
delete succ;
// Do not delete CURR: it is a key in H.
// Do not destroy CURR: it is a key in H.
continue;
}
@ -363,7 +363,7 @@ namespace spot
void
couvreur99_check_shy::clear_todo()
{
// We must delete all states appearing in TODO
// We must destroy all states appearing in TODO
// unless they are used as keys in H.
while (!todo.empty())
{
@ -371,7 +371,7 @@ namespace spot
for (succ_queue::iterator q = queue.begin();
q != queue.end(); ++q)
{
// Delete the state if it is a clone of a
// Destroy the state if it is a clone of a
// state in the heap...
numbered_state_heap::state_index_p spi = ecs_->h->index(q->s);
// ... or if it is an unknown state.