hierarchy: add a new way to check DBA-realizability via DPA
* spot/tl/hierarchy.cc, spot/tl/hierarchy.hh: Here. * tests/core/hierarchy.test: Test it. * bin/man/spot-x.x: Document SPOT_PR_CHECK. * doc/org/hierarchy.org, NEWS: Update.
This commit is contained in:
parent
2617c17b45
commit
b4da0cf660
6 changed files with 155 additions and 230 deletions
|
|
@ -1,5 +1,5 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2017, 2018 Laboratoire de Recherche et Développement
|
||||
// Copyright (C) 2017, 2018, 2019 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE)
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
|
|
@ -37,6 +37,9 @@ namespace spot
|
|||
///
|
||||
/// If PR_via_CoBuchi, they will check if the formula is cobuchi_realizable.
|
||||
///
|
||||
/// If PR_via_Parity, they will check if the formula is
|
||||
/// detbuchi/cobuchi-realizable by calling reduce_parity() on a DPA.
|
||||
///
|
||||
/// Note that is_persistence() and is_recurrence() will work on a formula f
|
||||
/// or its negation because of the duality of both classes
|
||||
/// (see https://spot.lrde.epita.fr/hierarchy.html for details).
|
||||
|
|
@ -47,6 +50,7 @@ namespace spot
|
|||
Auto,
|
||||
via_CoBuchi,
|
||||
via_Rabin,
|
||||
via_Parity,
|
||||
};
|
||||
|
||||
/// \ingroup tl_hier
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue