emptiness checks: replace assert-preconditions by exceptions
* spot/twaalgos/couvreurnew.cc, spot/twaalgos/gv04.cc, spot/twaalgos/magic.cc, spot/twaalgos/se05.cc, spot/twaalgos/tau03.cc, spot/twaalgos/tau03opt.cc: Throw if precondition on acceptance condition is not satisfied. * tests/python/misc-ec.py: New file. * tests/Makefile.am: Add it. * NEWS: Mention the change.
This commit is contained in:
parent
55b029961b
commit
2e3fc0d4d2
9 changed files with 84 additions and 11 deletions
|
|
@ -540,12 +540,17 @@ namespace spot
|
|||
: emptiness_check(a, o)
|
||||
, ecs_(std::make_shared<couvreur99_new_status<is_explicit>>(a))
|
||||
{
|
||||
if (a->acc().uses_fin_acceptance())
|
||||
throw std::runtime_error
|
||||
("couvreur99_new requires Fin-less acceptance");
|
||||
}
|
||||
|
||||
virtual
|
||||
emptiness_check_result_ptr
|
||||
check() override
|
||||
{
|
||||
if (ecs_->aut->acc().get_acceptance().is_f())
|
||||
return nullptr;
|
||||
return check_impl<true>();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2008, 2010, 2011, 2013, 2014, 2015, 2016 Laboratoire de
|
||||
// Copyright (C) 2008, 2010, 2011, 2013-2017 Laboratoire de
|
||||
// recherche et développement de l'Epita (LRDE).
|
||||
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6
|
||||
// (LIP6), département Systèmes Répartis Coopératifs (SRC), Université
|
||||
|
|
@ -67,7 +67,11 @@ namespace spot
|
|||
gv04(const const_twa_ptr& a, option_map o)
|
||||
: emptiness_check(a, o)
|
||||
{
|
||||
assert(a->num_sets() <= 1);
|
||||
if (!(a->prop_weak().is_true()
|
||||
|| a->num_sets() == 0
|
||||
|| a->acc().is_buchi()))
|
||||
throw std::runtime_error
|
||||
("gv04 requires Büchi or weak automata");
|
||||
}
|
||||
|
||||
~gv04()
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2011, 2013, 2014, 2015, 2016 Laboratoire de recherche et
|
||||
// Copyright (C) 2011, 2013-2017 Laboratoire de recherche et
|
||||
// développement de l'Epita (LRDE).
|
||||
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||
|
|
@ -59,7 +59,11 @@ namespace spot
|
|||
: emptiness_check(a, o),
|
||||
h(size)
|
||||
{
|
||||
assert(a->num_sets() <= 1);
|
||||
if (!(a->prop_weak().is_true()
|
||||
|| a->num_sets() == 0
|
||||
|| a->acc().is_buchi()))
|
||||
throw std::runtime_error
|
||||
("magic_search requires Büchi or weak automata");
|
||||
}
|
||||
|
||||
virtual ~magic_search_()
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2011, 2013, 2014, 2015, 2016 Laboratoire de Recherche
|
||||
// et Développement de l'Epita (LRDE).
|
||||
// Copyright (C) 2011, 2013-2017 Laboratoire de Recherche et
|
||||
// Développement de l'Epita (LRDE).
|
||||
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||
// et Marie Curie.
|
||||
|
|
@ -59,7 +59,10 @@ namespace spot
|
|||
: emptiness_check(a, o),
|
||||
h(size)
|
||||
{
|
||||
assert(a->num_sets() <= 1);
|
||||
if (!(a->prop_weak().is_true()
|
||||
|| a->num_sets() == 0
|
||||
|| a->acc().is_buchi()))
|
||||
throw std::runtime_error("se05 requires Büchi or weak automata");
|
||||
}
|
||||
|
||||
virtual ~se05_search()
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2011, 2013, 2014, 2015, 2016 Laboratoire de Recherche
|
||||
// et Developpement de l'Epita (LRDE).
|
||||
// Copyright (C) 2011, 2013-2017 Laboratoire de Recherche et
|
||||
// Developpement de l'Epita (LRDE).
|
||||
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||
// et Marie Curie.
|
||||
|
|
@ -58,7 +58,9 @@ namespace spot
|
|||
: emptiness_check(a, o),
|
||||
h(size)
|
||||
{
|
||||
assert(a->num_sets() > 0);
|
||||
if (!(a->num_sets() > 0 && a->acc().is_generalized_buchi()))
|
||||
throw std::runtime_error
|
||||
("tau03 requires generalized Büchi with at least one set");
|
||||
}
|
||||
|
||||
virtual ~tau03_search()
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2011, 2013, 2014, 2015, 2016 Laboratoire de Recherche et
|
||||
// Copyright (C) 2011, 2013-2017 Laboratoire de Recherche et
|
||||
// Développement de l'Epita (LRDE).
|
||||
// Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
// département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||
|
|
@ -74,6 +74,8 @@ namespace spot
|
|||
use_weights(o.get("weights", 1)),
|
||||
use_red_weights(use_weights && o.get("redweights", 1))
|
||||
{
|
||||
if (a->acc().uses_fin_acceptance())
|
||||
throw std::runtime_error("tau03opt requires Fin-less acceptance");
|
||||
}
|
||||
|
||||
virtual ~tau03_opt_search()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue