adjust for recent renaming of valid_trans()
* spot/kripke/kripkegraph.hh, spot/twa/twagraph.hh: Call is_valid_edge() instead. * NEWS: Mention the renaming.
This commit is contained in:
parent
fb6cc0dff7
commit
a6afaf3d9d
3 changed files with 6 additions and 2 deletions
4
NEWS
4
NEWS
|
|
@ -11,6 +11,10 @@ New in spot 1.99.9a (not yet released)
|
|||
* The output of spot.atomic_prop_collect() is printable and
|
||||
can now be passed directly to spot.ltsmin.model.kripke().
|
||||
|
||||
Library:
|
||||
|
||||
* digraph::valid_trans() renamed to digraph::is_valid_edge().
|
||||
|
||||
Documentation:
|
||||
|
||||
* The concepts page (https://spot.lrde.epita.fr/concepts.html)
|
||||
|
|
|
|||
|
|
@ -194,7 +194,7 @@ namespace spot
|
|||
{
|
||||
auto s = down_cast<const typename graph_t::state_storage_t*>(st);
|
||||
assert(s);
|
||||
assert(!s->succ || g_.valid_trans(s->succ));
|
||||
assert(!s->succ || g_.is_valid_edge(s->succ));
|
||||
|
||||
if (this->iter_cache_)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -279,7 +279,7 @@ namespace spot
|
|||
{
|
||||
auto s = down_cast<const typename graph_t::state_storage_t*>(st);
|
||||
assert(s);
|
||||
assert(!s->succ || g_.valid_trans(s->succ));
|
||||
assert(!s->succ || g_.is_valid_edge(s->succ));
|
||||
|
||||
if (this->iter_cache_)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue