tgba: add a release_named_properties() method

Fixes #67.

* src/tgba/tgba.cc, src/tgba/tgba.hh: Here.
* src/tgbaalgos/complete.cc, src/tgbaalgos/stripacc.cc: Use it.
This commit is contained in:
Alexandre Duret-Lutz 2015-03-22 12:05:05 +01:00
parent d1efe9a75a
commit c26457b02b
4 changed files with 21 additions and 6 deletions

View file

@ -1,6 +1,6 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2012, 2014 Laboratoire de Recherche et Développement
// de l'Epita (LRDE).
// Copyright (C) 2012, 2014, 2015 Laboratoire de Recherche et
// Développement de l'Epita (LRDE).
//
// This file is part of Spot, a model checking library.
//
@ -29,5 +29,6 @@ namespace spot
for (auto& t: a->out(s))
t.acc = 0U;
a->set_generalized_buchi(0);
a->release_named_properties();
}
}