* spot/twaalgos/alternation.cc, spot/twaalgos/alternation.hh, spot/twaalgos/complement.cc, spot/twaalgos/complement.hh, spot/twaalgos/determinize.cc, spot/twaalgos/determinize.hh, spot/twaalgos/minimize.cc, spot/twaalgos/minimize.hh, spot/twaalgos/postproc.cc, spot/twaalgos/postproc.hh, spot/twaalgos/powerset.cc, spot/twaalgos/powerset.hh, spot/twaalgos/product.cc, spot/twaalgos/product.hh: Use an output_aborter argument to abort if the output is too large. * bin/ltlcross.cc: Use complement() with an output_aborter so that ltlcross will not attempt to build complement larger than 500 states or 5000 edges. Add --determinize-max-states and --determinize-max-edges options. * tests/core/ltlcross3.test, tests/core/ltlcrossce2.test, tests/core/sccsimpl.test, tests/core/wdba2.test, tests/python/stutter-inv.ipynb: Adjust test cases. * NEWS: Document this. * bin/spot-x.cc: Add documentation for postprocessor's det-max-states and det-max-edges arguments. * doc/org/ltlcross.org: Update description.
87 lines
3.7 KiB
C++
87 lines
3.7 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) 2015, 2016, 2019 Laboratoire de Recherche et
|
|
// Développement de l'Epita.
|
|
//
|
|
// This file is part of Spot, a model checking library.
|
|
//
|
|
// Spot is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Spot is distributed in the hope that it will be useful, but WITHOUT
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
// License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#pragma once
|
|
|
|
#include <spot/twaalgos/powerset.hh>
|
|
#include <spot/twa/twagraph.hh>
|
|
|
|
namespace spot
|
|
{
|
|
/// \ingroup twa_algorithms
|
|
/// \brief Determinize a TGBA
|
|
///
|
|
/// The main algorithm works only with automata using Büchi acceptance
|
|
/// (preferably transition-based). If generalized Büchi is input, it
|
|
/// will be automatically degeneralized first.
|
|
///
|
|
/// The output will be a deterministic automaton using parity acceptance.
|
|
///
|
|
/// This procedure is based on an algorithm by Roman Redziejowski
|
|
/// (Fundamenta Informaticae 119, 3-4 (2012)). Redziejowski's
|
|
/// algorithm is similar to Piterman's improvement of Safra's
|
|
/// algorithm, except it is presented on transition-based acceptance
|
|
/// and use simpler notations. We implement three additional
|
|
/// optimizations (they can be individually disabled) based on
|
|
///
|
|
/// - knowledge about SCCs of the input automaton
|
|
/// - knowledge about simulation relations in the input automaton
|
|
/// - knowledge about stutter-invariance of the input automaton
|
|
///
|
|
/// The last optimization is an idea described by Joachim Klein &
|
|
/// Christel Baier (CIAA'07) and implemented in ltl2dstar. In fact,
|
|
/// ltl2dstar even has a finer version (letter-based stuttering)
|
|
/// that is not implemented here.
|
|
///
|
|
/// \param aut the automaton to determinize
|
|
///
|
|
/// \param pretty_print whether to decorate states with names
|
|
/// showing the paths they track (this only
|
|
/// makes sense if the input has Büchi
|
|
/// acceptance already, otherwise the input
|
|
/// automaton will be degeneralized and the
|
|
/// names will refer to the states in the
|
|
/// degeneralized automaton).
|
|
///
|
|
/// \param use_scc whether to simplify the construction based on
|
|
/// the SCCs in the input automaton.
|
|
///
|
|
/// \param use_simulation whether to simplify the construction based
|
|
/// on simulation relations between states in
|
|
/// the original automaton.
|
|
///
|
|
/// \param use_stutter whether to simplify the construction when the
|
|
/// input automaton is known to be
|
|
/// stutter-invariant. (The stutter-invariant
|
|
/// flag of the input automaton is used, so it
|
|
/// might be worth to call
|
|
/// spot::check_stutter_invariance() first if
|
|
/// possible.)
|
|
///
|
|
/// \param aborter abort the construction if the constructed
|
|
/// automaton would be too large. Return nullptr
|
|
/// in this case.
|
|
SPOT_API twa_graph_ptr
|
|
tgba_determinize(const const_twa_graph_ptr& aut,
|
|
bool pretty_print = false,
|
|
bool use_scc = true,
|
|
bool use_simulation = true,
|
|
bool use_stutter = true,
|
|
const output_aborter* aborter = nullptr);
|
|
}
|