* bin/README, bin/common_conv.hh, bin/common_trans.cc,
bin/ltlsynt.cc, bin/spot-x.cc, spot/gen/automata.hh,
spot/graph/graph.hh, spot/ltsmin/ltsmin.hh,
spot/ltsmin/spins_interface.hh, spot/ltsmin/spins_kripke.hh,
spot/mc/bloemen.hh, spot/mc/bloemen_ec.hh, spot/mc/cndfs.hh,
spot/mc/deadlock.hh, spot/mc/intersect.hh, spot/mc/lpar13.hh,
spot/mc/mc_instanciator.hh, spot/misc/bareword.cc,
spot/misc/fixpool.hh, spot/misc/formater.hh, spot/misc/minato.hh,
spot/misc/satsolver.hh, spot/misc/timer.hh,
spot/parseaut/public.hh, spot/priv/partitioned_relabel.cc,
spot/priv/satcommon.hh, spot/ta/ta.hh, spot/ta/taexplicit.cc,
spot/ta/taproduct.hh, spot/ta/tgta.hh, spot/taalgos/reachiter.hh,
spot/taalgos/tgba2ta.hh, spot/tl/apcollect.cc,
spot/tl/apcollect.hh, spot/tl/formula.cc, spot/tl/parse.hh,
spot/tl/randomltl.hh, spot/tl/relabel.hh, spot/tl/simplify.cc,
spot/twa/acc.hh, spot/twa/bddprint.hh, spot/twa/formula2bdd.cc,
spot/twa/twa.hh, spot/twa/twagraph.cc, spot/twa/twagraph.hh,
spot/twaalgos/aiger.cc, spot/twaalgos/aiger.hh,
spot/twaalgos/alternation.hh, spot/twaalgos/cleanacc.cc,
spot/twaalgos/cobuchi.cc, spot/twaalgos/contains.cc,
spot/twaalgos/couvreurnew.cc, spot/twaalgos/cycles.hh,
spot/twaalgos/degen.cc, spot/twaalgos/degen.hh,
spot/twaalgos/dot.hh, spot/twaalgos/dtbasat.cc,
spot/twaalgos/dtwasat.cc, spot/twaalgos/dtwasat.hh,
spot/twaalgos/dualize.cc, spot/twaalgos/emptiness.hh,
spot/twaalgos/emptiness_stats.hh, spot/twaalgos/game.cc,
spot/twaalgos/genem.hh, spot/twaalgos/hoa.hh,
spot/twaalgos/langmap.hh, spot/twaalgos/ltl2tgba_fm.hh,
spot/twaalgos/magic.cc, spot/twaalgos/magic.hh,
spot/twaalgos/mask.hh, spot/twaalgos/mealy_machine.cc,
spot/twaalgos/mealy_machine.hh,
spot/twaalgos/minimize.hh, spot/twaalgos/parity.cc,
spot/twaalgos/parity.hh, spot/twaalgos/postproc.cc,
spot/twaalgos/product.hh, spot/twaalgos/reachiter.hh,
spot/twaalgos/relabel.cc, spot/twaalgos/remfin.cc,
spot/twaalgos/remfin.hh, spot/twaalgos/sccfilter.cc,
spot/twaalgos/sccinfo.hh, spot/twaalgos/se05.cc,
spot/twaalgos/se05.hh, spot/twaalgos/simulation.hh,
spot/twaalgos/split.hh, spot/twaalgos/stats.hh,
spot/twaalgos/synthesis.cc, spot/twaalgos/synthesis.hh,
spot/twaalgos/tau03.hh, spot/twaalgos/tau03opt.hh,
spot/twaalgos/toparity.hh, spot/twaalgos/totgba.hh,
spot/twaalgos/translate.hh, spot/twaalgos/word.cc,
spot/twaalgos/word.hh, spot/twaalgos/zlktree.cc,
spot/twaalgos/zlktree.hh, spot/twacube/cube.hh,
spot/twacube/twacube.hh, tests/core/cube.cc,
tests/core/ltlsynt.test, tests/core/parity.cc,
tests/core/safra.cc, tests/core/twagraph.cc: here
225 lines
9.5 KiB
C++
225 lines
9.5 KiB
C++
// -*- coding: utf-8 -*-
|
|
// Copyright (C) by the Spot authors, see the AUTHORS file for details.
|
|
//
|
|
// 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/misc/common.hh>
|
|
#include <spot/twa/fwd.hh>
|
|
#include <spot/twaalgos/powerset.hh>
|
|
#include <vector>
|
|
#include <utility>
|
|
|
|
namespace spot
|
|
{
|
|
/// \brief Automata constructed by product() contain a property
|
|
/// named "product-states" with this type
|
|
typedef std::vector<std::pair<unsigned, unsigned>> product_states;
|
|
|
|
/// \ingroup twa_algorithms
|
|
/// \brief Intersect two automata using a synchronous product
|
|
///
|
|
/// The resulting automaton will accept the intersection of both
|
|
/// languages and have an acceptance condition that is the
|
|
/// conjunction of the acceptance conditions of the two input
|
|
/// automata.
|
|
///
|
|
/// As an optimization, in case one of the left or right automaton
|
|
/// is weak, the acceptance condition of the result is made simpler:
|
|
/// it usually is the acceptance condition of the other argument,
|
|
/// therefore avoiding the need to introduce new accepting sets.
|
|
/// Similarly, the product of two co-Büchi automata will be a
|
|
/// co-Büchi automaton.
|
|
///
|
|
/// The algorithm also defines a named property called
|
|
/// "product-states" with type spot::product_states. This stores
|
|
/// the pair of original state numbers associated to each state of
|
|
/// the product.
|
|
///
|
|
/// If an \a aborter is given, the function will return nullptr
|
|
/// whenever the resulting product would be too large.
|
|
SPOT_API
|
|
twa_graph_ptr product(const const_twa_graph_ptr& left,
|
|
const const_twa_graph_ptr& right,
|
|
const output_aborter* aborter = nullptr);
|
|
|
|
/// \ingroup twa_algorithms
|
|
/// \brief Intersect two automata using a synchronous product
|
|
///
|
|
/// This variant allows changing the initial state of both automata
|
|
/// in case you want to start the product at a different place.
|
|
///
|
|
/// The resulting automaton will accept the intersection of the
|
|
/// languages recognized by each input automaton (with its initial
|
|
/// state changed) and have an acceptance condition that is the
|
|
/// conjunction of the acceptance conditions of the two input
|
|
/// automata.
|
|
///
|
|
/// As an optimization, in case one of the left or right automaton
|
|
/// is weak, the acceptance condition of the result is made simpler:
|
|
/// it usually is the acceptance condition of the other argument,
|
|
/// therefore avoiding the need to introduce new accepting sets.
|
|
/// Similarly, the product of two co-Büchi automata will be a
|
|
/// co-Büchi automaton.
|
|
///
|
|
/// The algorithm also defines a named property called
|
|
/// "product-states" with type spot::product_states. This stores
|
|
/// the pair of original state numbers associated to each state of
|
|
/// the product.
|
|
///
|
|
/// If an \a aborter is given, the function will return nullptr
|
|
/// whenever the resulting product would be too large.
|
|
SPOT_API
|
|
twa_graph_ptr product(const const_twa_graph_ptr& left,
|
|
const const_twa_graph_ptr& right,
|
|
unsigned left_state,
|
|
unsigned right_state,
|
|
const output_aborter* aborter = nullptr);
|
|
|
|
/// \ingroup twa_algorithms
|
|
/// \brief Sum two automata using a synchronous product
|
|
///
|
|
/// The resulting automaton will accept the union of both
|
|
/// languages and have an acceptance condition that is the
|
|
/// disjunction of the acceptance conditions of the two input
|
|
/// automata.
|
|
///
|
|
/// As an optimization, in case one of the left or right automaton
|
|
/// is weak, the acceptance condition of the result is made simpler:
|
|
/// it usually is the acceptance condition of the other argument,
|
|
/// therefore avoiding the need to introduce new accepting sets.
|
|
/// Similarly, the product_pr of two Büchi automata will be a
|
|
/// Büchi automaton.
|
|
///
|
|
///
|
|
/// The algorithm also defines a named property called
|
|
/// "product-states" with type spot::product_states. This stores
|
|
/// the pair of original state numbers associated to each state of
|
|
/// the product.
|
|
SPOT_API
|
|
twa_graph_ptr product_or(const const_twa_graph_ptr& left,
|
|
const const_twa_graph_ptr& right);
|
|
|
|
/// \ingroup twa_algorithms
|
|
/// \brief Sum two automata using a synchronous product
|
|
///
|
|
/// This variant allows changing the initial state of both automata
|
|
/// in case you want to start the product at a different place.
|
|
///
|
|
/// The resulting automaton will accept the sum of the languages
|
|
/// recognized by each input automaton (with its initial state
|
|
/// changed) and have an acceptance condition that is the
|
|
/// disjunction of the acceptance conditions of the two input
|
|
/// automata.
|
|
///
|
|
/// As an optimization, in case one of the left or right automaton
|
|
/// is weak, the acceptance condition of the result is made simpler:
|
|
/// it usually is the acceptance condition of the other argument,
|
|
/// therefore avoiding the need to introduce new accepting sets.
|
|
/// Similarly, the product_pr of two Büchi automata will be a
|
|
/// Büchi automaton.
|
|
///
|
|
/// The algorithm also defines a named property called
|
|
/// "product-states" with type spot::product_states. This stores
|
|
/// the pair of original state numbers associated to each state of
|
|
/// the product.
|
|
SPOT_API
|
|
twa_graph_ptr product_or(const const_twa_graph_ptr& left,
|
|
const const_twa_graph_ptr& right,
|
|
unsigned left_state,
|
|
unsigned right_state);
|
|
|
|
/// \ingroup twa_algorithms
|
|
/// \brief XOR two deterministic automata using a synchronous product
|
|
///
|
|
/// The two operands must be deterministic.
|
|
///
|
|
/// The resulting automaton will accept the symmetric difference of
|
|
/// both languages and have an acceptance condition that is the xor
|
|
/// of the acceptance conditions of the two input automata. In case
|
|
/// both operands are weak, the acceptance condition of the result
|
|
/// is made simpler.
|
|
///
|
|
/// The algorithm also defines a named property called
|
|
/// "product-states" with type spot::product_states. This stores
|
|
/// the pair of original state numbers associated to each state of
|
|
/// the product.
|
|
SPOT_API
|
|
twa_graph_ptr product_xor(const const_twa_graph_ptr& left,
|
|
const const_twa_graph_ptr& right);
|
|
|
|
/// \ingroup twa_algorithms
|
|
/// \brief XNOR two automata using a synchronous product
|
|
///
|
|
/// The two operands must be deterministic.
|
|
///
|
|
/// The resulting automaton will accept words that are either in
|
|
/// both input languages, or not in both languages. (The XNOR gate
|
|
/// it the logical complement of XOR. XNOR is also known as logical
|
|
/// equivalence.) The output will have an acceptance condition that
|
|
/// is the XNOR of the acceptance conditions of the two input
|
|
/// automata. In case both the operands are weak, the acceptance
|
|
/// condition of the result is made simpler.
|
|
///
|
|
/// The algorithm also defines a named property called
|
|
/// "product-states" with type spot::product_states. This stores
|
|
/// the pair of original state numbers associated to each state of
|
|
/// the product.
|
|
SPOT_API
|
|
twa_graph_ptr product_xnor(const const_twa_graph_ptr& left,
|
|
const const_twa_graph_ptr& right);
|
|
|
|
/// \ingroup twa_algorithms
|
|
/// \brief Build the product of an automaton with a suspendable
|
|
/// automaton.
|
|
///
|
|
/// The language of this product is the intersection of the
|
|
/// languages of both input automata.
|
|
///
|
|
/// This function *assumes* that \a right_susp is a suspendable
|
|
/// automaton, i.e., its language L satisfies L = Σ*.L.
|
|
/// Therefore the product between the two automata need only be done
|
|
/// with the accepting SCCs of left.
|
|
///
|
|
/// If \a left is a weak automaton, the acceptance condition of the
|
|
/// output will be that of \a right_susp. Otherwise the acceptance
|
|
/// condition is the conjunction of both acceptances.
|
|
SPOT_API
|
|
twa_graph_ptr product_susp(const const_twa_graph_ptr& left,
|
|
const const_twa_graph_ptr& right_susp);
|
|
|
|
/// \ingroup twa_algorithms
|
|
/// \brief Build the "or" product of an automaton with a suspendable
|
|
/// automaton.
|
|
///
|
|
/// The language of this product is the union of the languages of
|
|
/// both input automata.
|
|
///
|
|
/// This function *assumes* that \a right_susp is a suspendable
|
|
/// automaton, i.e., its language L satisfies L = Σ*.L.
|
|
/// Therefore, after left has been completed (this will be done by
|
|
/// product_or_susp) the product between the two automata need only
|
|
/// be done with the SCCs of left that contains some rejecting cycles.
|
|
///
|
|
/// The current implementation is currently suboptimal as instead of
|
|
/// looking for SCC with rejecting cycles, it simply loop for
|
|
/// non-trivial SCC, (or in the case of weak automata, with
|
|
/// non-trivial and rejecting SCCs).
|
|
SPOT_API
|
|
twa_graph_ptr product_or_susp(const const_twa_graph_ptr& left,
|
|
const const_twa_graph_ptr& right_susp);
|
|
}
|