to_finit: fix issue #526

* spot/twaalgos/remprop.cc: Use bdd_restrict instead of bdd_exists.
* tests/core/ltlf.test: Add test case.
* NEWS: Mention the bug.
This commit is contained in:
Alexandre Duret-Lutz 2023-02-07 14:40:20 +01:00
parent 43b4d80da1
commit a117fe1a22
3 changed files with 57 additions and 4 deletions

View file

@ -1,6 +1,6 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2015-2019, 2022 Laboratoire de Recherche et Développement
// de l'Epita (LRDE).
// Copyright (C) 2015-2019, 2022, 2023 Laboratoire de Recherche et
// Développement de l'Epita (LRDE).
//
// This file is part of Spot, a model checking library.
//
@ -205,7 +205,7 @@ namespace spot
}
else
{
e.cond = bdd_exist(e.cond, rem);
e.cond = bdd_restrict(e.cond, rem);
}
}