fix some incorrect AP registrations

* spot/ltsmin/ltsmin.cc: Do not forget to register dead.
* spot/twa/twaproduct.cc: Use copy_ap_of() instead of
register_all_propositions_of() because the latter does
do update ap().
This commit is contained in:
Alexandre Duret-Lutz 2017-01-20 14:41:00 +01:00
parent 7f219f2738
commit 5a441e1b93
3 changed files with 14 additions and 8 deletions

View file

@ -1,6 +1,6 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2011, 2012, 2014, 2015, 2016 Laboratoire de Recherche et
// Développement de l'Epita (LRDE)
// Copyright (C) 2011, 2012, 2014, 2015, 2016, 2017 Laboratoire de
// Recherche et Développement de l'Epita (LRDE)
//
// This file is part of Spot, a model checking library.
//
@ -1118,6 +1118,7 @@ namespace spot
// twa::ap() works.
for (auto ap: *to_observe)
res->register_ap(ap);
res->register_ap(dead);
return res;
}