mCRL2
Loading...
Searching...
No Matches
parity_game_generator.h
Go to the documentation of this file.
1// Author(s): Wieger Wesselink
2// Copyright: see the accompanying file COPYING or copy at
3// https://github.com/mCRL2org/mCRL2/blob/master/COPYING
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8//
9/// \file mcrl2/pbes/parity_game_generator.h
10/// \brief A class for generating a parity game from a pbes.
11
12#ifndef MCRL2_PBES_PARITY_GAME_GENERATOR_H
13#define MCRL2_PBES_PARITY_GAME_GENERATOR_H
14
15#include "mcrl2/pbes/algorithms.h"
16#include "mcrl2/pbes/detail/bes_equation_limit.h"
17#include "mcrl2/pbes/join.h"
18#include "mcrl2/pbes/rewriters/enumerate_quantifiers_rewriter.h"
19#include <iomanip>
20
21
22
23namespace mcrl2::pbes_system
24{
25
26/// \brief Class for generating a BES from a PBES. This BES can be interpreted as
27/// a graph corresponding to a parity game problem. The proposition variables
28/// of the BES correspond to the vertices of the graph.
29/// An interface to the graph is provided in which the vertices correspond to
30/// integer values. The values are in the range [0, 1, ..., n], i.e. there are
31/// no holes in the sequence.
32/// Each vertex is labeled with a priority value, which is the
33/// block nesting depth of the proposition variable in the BES.
35{
36 protected:
37 /// \brief Substitution function type used by the PBES rewriter.
39
40 /// \brief Mark whether initialization has been initialized.
41 /// Needed to properly cope with virtual inheritance!
42 bool m_initialized = false;
43
44 /// \brief The PBES that is being solved.
46
47 /// \brief Data rewriter.
49
50 /// \brief PBES rewriter.
52
53 /// \brief Maps propositional variables to corresponding PBES equations.
54 std::map<core::identifier_string, std::vector<pbes_equation>::const_iterator > m_pbes_equation_index;
55
56 /// \brief Maps propositional variables to corresponding priorities.
58
59 /// \brief Maps PBES closed expressions to corresponding BES variables.
61
62 /// \brief Contains intermediate results of the BES that is being generated.
63 /// m_bes[i] represents a BES equation corresponding to BES variable i.
64 /// m_bes[i].first is the right hand side of the BES equation
65 /// m_bes[i].second is the block nesting depth of the corresponding PBES variable
67
68 /// \brief Determines what kind of BES equations are generated for true and false.
70
71 /// \brief True if it is a min-parity game.
73
74 /// \brief The maximum priority value of the game.
76
77 /// \brief Adds a BES equation for a given PBES expression, if it not already exists.
78 /// \param t A PBES expression
79 /// \param priority A positive integer
80 /// \return The index of a BES equation corresponding to the given PBES expression.
81 /// If no equation exists for the expression, a new one is added.
83 {
84 std::size_t result;
85
86 mCRL2log(log::trace) << "Adding equation for " << t << std::endl;
87
88 // TODO: can this insertion be done more efficiently?
89 auto i = m_pbes_expression_index.find(t);
90 if (i != m_pbes_expression_index.end())
91 {
92 result = i->second;
93 }
94 else
95 {
96 std::size_t p = m_pbes_expression_index.size();
97 m_pbes_expression_index[t] = p;
99 {
100 priority = m_priorities[atermpp::down_cast<propositional_variable_instantiation>(t).name()];
101 }
102 m_bes.emplace_back(t, priority);
103 detail::check_bes_equation_limit(m_bes.size());
104 mCRL2log(log::status) << print_equation_count(m_bes.size());
105 result = p;
106 }
107
108 return result;
109 }
110
111 /// \brief Generates a substitution function for the pbesinst rewriter.
112 /// \param v A sequence of data variables
113 /// \param e A sequence of data expressions
114 /// \param sigma The result.
115 void make_substitution(const data::variable_list& v, const data::data_expression_list& e, substitution_function& sigma) const
116 {
117 assert(v.size() == e.size());
118 data::variable_list::iterator i = v.begin();
119 data::data_expression_list::iterator j = e.begin();
120 for (; i != v.end(); ++i, ++j)
121 {
122 sigma[*i] = *j;
123 }
124 }
125
127 {
128 // expand the right hand side if needed
130 {
131 const auto& psi1 = atermpp::down_cast<propositional_variable_instantiation>(psi);
132 const pbes_equation& pbes_eqn = *m_pbes_equation_index[psi1.name()];
133 substitution_function sigma;
134 make_substitution(pbes_eqn.variable().parameters(), psi1.parameters(), sigma);
135 mCRL2log(log::trace) << "Expanding right hand side " << pbes_eqn.formula() << " into " << std::flush;
136 pbes_expression result = R(pbes_eqn.formula(), sigma);
137 R.clear_identifier_generator();
138 mCRL2log(log::trace) << result << std::endl;
139 return result;
140 }
141 return psi;
142 }
143
144 /// \brief Compute equation index map.
146 {
147
148 for (std::vector<pbes_equation>::const_iterator i = m_pbes.equations().begin(); i != m_pbes.equations().end(); ++i)
149 {
150 m_pbes_equation_index[i->variable().name()] = i;
151 }
152 }
153
154 /// \brief Compute priorities of PBES propositional variables.
155 void compute_priorities(const std::vector<pbes_equation>& equations)
156 {
158 std::size_t priority = 0;
159 for (const auto& equation: equations)
160 {
161 if (equation.symbol() == sigma)
162 {
163 m_priorities[equation.variable().name()] = priority;
164 }
165 else
166 {
167 sigma = equation.symbol();
168 m_priorities[equation.variable().name()] = ++priority;
169 }
170 }
171
172 m_max_priority = (priority % 2 == 0 ? priority : priority + 1);
173
174 // If it is a max-priority game, adjust the priorities
176 {
177 // Choose an even upperbound max_priority
178 if (m_max_priority == 0)
179 {
180 m_max_priority = 2;
181 }
182 for (auto& i: m_priorities)
183 {
184 i.second = m_max_priority - i.second;
185 }
186 // Add BES equations for true and false with priorities 0 and 1.
187 add_bes_equation(true_(), m_max_priority);
188 add_bes_equation(false_(), m_max_priority - 1);
189 }
190 else
191 {
192 // Add BES equations for true and false with priorities 0 and 1.
193 add_bes_equation(true_(), 0);
194 add_bes_equation(false_(), 1);
195 }
196 }
197
198 // prints the BES equation with left hand side 'index' and right hand side 'rhs'
199 virtual
201 {
202 std::ostringstream out;
203 const std::pair<pbes_expression, std::size_t>& eqn = m_bes[index];
204 const std::size_t priority = eqn.second;
205 out << (priority % 2 == 1 ? "mu Y" : "nu Y") << index << " = ";
206 std::string op = (get_operation(index) == PGAME_AND ? " && " : " || ");
207 for (auto i = rhs.begin(); i != rhs.end(); ++i)
208 {
209 out << (i == rhs.begin() ? "" : op) << "Y" << *i;
210 }
211 out << " (priority = " << priority << ")" << std::endl;
212 return out.str();
213 }
214
215 /// \brief Prints a log message for every step-th equation
217 {
218 if (size > 0 && (size % step == 0 || (size < 1000 && size % 100 == 0)))
219 {
220 std::ostringstream out;
221 out << "Generated " << size << " BES equations" << std::endl;
222 return out.str();
223 }
224 return "";
225 }
226
227 virtual
229 {
230 if (m_initialized)
231 {
232 return;
233 }
234 else
235 {
236 // Nothing to be done for an empty PBES.
237 if (m_pbes.equations().empty())
238 {
239 return;
240 }
241
242 // Normalize the pbes, since the parity game generator currently doesn't handle negation and implication.
244
246 compute_priorities(m_pbes.equations());
247
248 // Add a BES equation for the initial state.
250 add_bes_equation(phi, m_priorities[phi.name()]);
251
252 m_initialized = true;
253 }
254 }
255
256 public:
257 /// \brief The operation type of the vertices.
259
260 /// \brief Constructor.
261 /// \param p A PBES
262 /// \param true_false_dependencies If true, nodes are generated for the values <tt>true</tt> and <tt>false</tt>.
263 /// \param is_min_parity If true a min-parity game is produced, otherwise a max-parity game
264 /// \param rewrite_strategy Strategy to use for the data rewriter
266 bool true_false_dependencies = false,
267 bool is_min_parity = true,
268 data::rewriter::strategy rewrite_strategy = data::jitty)
269 :
270
271 m_pbes(p),
272 datar(p.data(),
276 false),
278 R(datar, p.data()),
279 m_true_false_dependencies(true_false_dependencies),
280 m_is_min_parity_game(is_min_parity)
281 {
283 }
284
285 virtual ~parity_game_generator() = default;
286
287 /// \brief Returns the (rewritten) initial state.
288 /// \return the initial state rewritten by R
290 {
291 return atermpp::down_cast<propositional_variable_instantiation>(R(m_pbes.initial_state()));
292 }
293
294 /// \brief Returns the vertex type.
295 /// \param index A positive integer
296 /// \return PGAME_AND if the corresponding BES equation is a conjunction,
297 /// PGAME_OR if it is a disjunction.
298 virtual
299 operation_type get_operation(std::size_t index)
300 {
302
303 assert(index < m_bes.size());
304 const pbes_expression& phi = m_bes[index].first;
306 }
307
308 /// \brief Returns the vertex type.
309 /// \param phi A PBES expression
310 /// \return PGAME_AND if the expression is a conjunction,
311 /// PGAME_OR if it is a disjunction.
312 virtual
314 {
315 if (is_and(phi))
316 {
317 return PGAME_AND;
318 }
319 else if (is_or(phi))
320 {
321 return PGAME_OR;
322 }
324 {
325 return PGAME_OR;
326 }
327 else if (is_true(phi))
328 {
329 return PGAME_AND;
330 }
331 else if (is_false(phi))
332 {
333 return PGAME_OR;
334 }
335 else if (is_forall(phi))
336 {
337 return PGAME_AND;
338 }
339 else if (is_exists(phi))
340 {
341 return PGAME_OR;
342 }
343 else if (is_data(phi))
344 {
345 return PGAME_OR;
346 }
347 throw(std::runtime_error("Error in parity_game_generator: unexpected operation " + pbes_system::pp(phi)));
348 }
349
350 /// \brief Returns the priority of a vertex.
351 /// The priority of the first equation is 0 if it is a maximal fixpoint,
352 /// and 1 if it is a minimal fixpoint.
353 /// \param index A positive integer
354 /// \return The block nesting depth of the variable in the BES.
355 virtual
357 {
359
360 assert(index < m_bes.size());
361 return m_bes[index].second;
362 }
363
364 /// \brief Returns the vertices for which a solution is requested.
365 /// By default a set containing the values 0, 1 and 2 is returned, corresponding
366 /// to the expressions true, false and the initial state of the PBES.
367 /// \return A set of indices corresponding to proposition variables of the generated BES.
368 virtual
370 {
372
373 std::set<std::size_t> result;
374 if (!m_pbes.equations().empty())
375 {
376 result.insert(0); // equation 0 corresponds with the value true
377 result.insert(1); // equation 1 corresponds with the value false
378 result.insert(2); // equation 2 corresponds with the initial state
379 }
380 return result;
381 }
382
383 /// \brief Returns the successors of a vertex in the graph.
384 /// \param index A positive integer
385 /// \return The indices of the proposition variables that appear in the
386 /// right hand side of the BES equation of the given index.
387 virtual
389 {
391
392 assert(index < m_bes.size());
393
394 std::set<std::size_t> result;
395
396 std::pair<pbes_expression, std::size_t>& eqn = m_bes[index];
397 pbes_expression& psi = eqn.first;
398 const std::size_t priority = eqn.second;
399
400 mCRL2log(log::debug) << std::endl << "Generating equation for expression " << psi << std::endl;
401
402 // expand the right hand side if needed
403 psi = expand_rhs(psi);
404
405 // top_flatten
407 {
408 result.insert(add_bes_equation(psi, m_priorities[atermpp::down_cast<propositional_variable_instantiation>(psi).name()]));
409 }
410 else if (is_and(psi))
411 {
412 for (const pbes_expression& term: split_and(psi))
413 {
414 auto prio = is_or(term) ? (m_is_min_parity_game ? m_max_priority : 0) : priority;
415 result.insert(add_bes_equation(term, prio));
416 }
417 }
418 else if (is_or(psi))
419 {
420 for (const pbes_expression& term: split_or(psi))
421 {
422 auto prio = is_and(term) ? (m_is_min_parity_game ? m_max_priority : 0) : priority;
423 result.insert(add_bes_equation(term, prio));
424 }
425 }
426 else if (is_true(psi))
427 {
429 {
430 auto i = m_pbes_expression_index.find(true_());
431 assert(i != m_pbes_expression_index.end());
432 result.insert(i->second);
433 }
434 }
435 else if (is_false(psi))
436 {
438 {
439 auto i = m_pbes_expression_index.find(false_());
440 assert(i != m_pbes_expression_index.end());
441 result.insert(i->second);
442 }
443 }
444 else
445 {
446 std::ostringstream out;
447 out << "Error in parity_game_generator: unexpected expression " << psi << "\n" << atermpp::aterm(psi);
448 throw(std::runtime_error(out.str()));
449 }
450 mCRL2log(log::debug) << print_bes_equation(index, result);
451 return result;
452 }
453
454 /// \brief Prints the mapping from BES variables to the corresponding PBES expressions.
455 virtual
457 {
458 mCRL2log(log::info) << "--- variable mapping ---" << std::endl;
459 std::map<std::size_t, pbes_expression> m;
460 for (auto& i: m_pbes_expression_index)
461 {
462 m[i.second] = i.first;
463 }
464 for (auto& i: m)
465 {
466 mCRL2log(log::info) << std::setw(4) << i.first << " " << i.second << std::endl;
467 }
468 mCRL2log(log::info) << "--- priorities ---" << std::endl;
469 for (auto& i: m_priorities)
470 {
471 mCRL2log(log::info) << core::pp(i.first) << " " << i.second << std::endl;
472 }
473 }
474};
475
476} // namespace mcrl2::pbes_system
477
478
479
480#endif // MCRL2_PBES_PARITY_GAME_GENERATOR_H
A unordered_map class in which aterms can be stored.
Components for generating an arbitrary element of a sort.
representative_generator(const data_specification &specification)
Constructor with data specification as context.
Rewriter that operates on data expressions.
Definition rewriter.h:84
\brief A data variable
Definition variable.h:25
\brief The and operator for pbes expressions
const pbes_expression & left() const
const pbes_expression & right() const
std::set< pbes_expression > get_successors(const pbes_expression &phi)
Returns the successors of a state, which is a instantiated propositional variable....
propositional_variable_instantiation get_initial_state() override
Returns the initial state, rewritten and simplified.
virtual std::string print_successors(const std::set< pbes_expression > &successors)
Prints the set of successors states.
pbes_greybox_interface(pbes &p, bool true_false_dependencies=false, bool is_min_parity=true, data::rewriter::strategy rewrite_strategy=data::jitty)
Constructor.
pbes_system::enumerate_quantifiers_rewriter pbes_rewriter
pbes_equation get_pbes_equation(const core::identifier_string &s)
Returns the equation for variable s.
pbes_expression rewrite_and_simplify_expression(const pbes_expression &e, const bool=true)
Rewrites and simplifies an expression.
std::set< pbes_expression > get_successors(const pbes_expression &phi, const std::string &var, const pbes_expression &expr)
Returns the successors of a state, which is a instantiated propositional variable,...
virtual pbes_expression expand_group(const pbes_expression &psi, const pbes_expression &expr)
Expands a formula expr for a instantiated state variable psi, which means substituting the variables ...
virtual bool visit_inner_bounded_exists(const pbes_expression &e)
Visits a bounded existential quantifier expression within a disjunctive expression.
Definition ppg_visitor.h:88
virtual ~ppg_visitor()=default
Destructor.
virtual bool visit_inner_implies(const pbes_expression &e)
Visits a disjunctive expression within an inner universal quantifier expression.
virtual bool visit_or(const pbes_expression &e)
Visits a disjunctive expression.
static std::string print_brief(const pbes_expression &e)
Returns a string representation of the type of the root node of the expression.
Definition ppg_visitor.h:38
virtual bool visit_and(const pbes_expression &e)
Visits a conjunctive expression.
virtual bool visit_propositional_variable(const pbes_expression &e)
Visits a propositional variable expression.
Definition ppg_visitor.h:56
virtual bool visit_inner_and(const pbes_expression &e)
Visits a conjunctive expression within an inner existential quantifier expression.
Definition ppg_visitor.h:68
virtual bool visit_ppg_expression(const pbes_expression &e)
Visits a PPG expression.
virtual bool visit_inner_bounded_forall(const pbes_expression &e)
Visits a bounded universal quantifier expression within a conjunctive expression.
virtual bool visit_simple_expression(const pbes_expression &e)
Visits a simple expression. An expression is simple if it does not contain propositional variables.
Definition ppg_visitor.h:47
\brief The existential quantification operator for pbes expressions
const data::variable_list & variables() const
const pbes_expression & body() const
static ltsmin_state false_state()
Returns the state representing false.
ltsmin_state get_state(const propositional_variable_instantiation &expr) const
Returns a PBES_State object for expr.
std::vector< ltsmin_state > get_successors(const ltsmin_state &state, int group)
Computes successor states for a state as defined in transition group group. Serves as a wrapper aroun...
std::string data_to_string(const data::data_expression &e)
Returns a string representation for the data expression e.
int get_index(int type_no, const std::string &s)
Returns the index of value in the local store for the data type with number type_no....
std::vector< std::string > localmap_int2string
ltsmin_state get_initial_state() const
Returns the initial state.
static ltsmin_state true_state()
Returns the state representing true.
void to_state_vector(const ltsmin_state &dst_state, int *dst, const ltsmin_state &src_state, int *const &src)
Transforms a PBES state to a state vector, represented by an array of integers.
std::string get_value(int type_no, int index)
Returns the value at position index in the local store for the data type with number type_no....
int get_value_index(int type_no, const data_expression &value)
Returns the index of value in the local store for the data type with number type_no....
explorer(const std::string &filename, const std::string &rewrite_strategy, bool reset_flag, bool always_split_flag)
Constructor.
std::map< std::string, int > localmap_string2int
void next_state_long(int *const &src, int group, callback &cb)
Iterates over the successors of a state for a certain transition group and invokes a callback functio...
explorer(const pbes &p_, const std::string &rewrite_strategy, bool reset_flag, bool always_split_flag)
Constructor.
ltsmin_state from_state_vector(int *const &src)
Transforms a state vector src into a PBES_State object object containing the variable and parameter v...
int get_string_index(const std::string &s)
Returns the index of s in the local store for string values. This store is reserved for the string re...
const std::string & get_string_value(int index)
Returns the string at position index in the local store for string values. An exception is thrown if ...
std::vector< ltsmin_state > get_successors(const ltsmin_state &state)
Computes successor states for a state. Serves as a wrapper around the get_successors function of the ...
data::data_expression string_to_data(const std::string &s)
Returns a data expression for the string representation s.
lts_info * get_info() const
Returns the PBES_Info object.
const data_expression & get_data_value(int type_no, int index)
Returns the value at position index in the local store for the data type with number type_no....
void next_state_all(int *const &src, callback &cb)
Iterates over the successors of a state and invokes a callback function for each successor state.
detail::pbes_greybox_interface * pgg
the PBES greybox interface
static fixpoint_symbol nu()
Returns the nu symbol.
fixpoint_symbol & operator=(fixpoint_symbol &&) noexcept=default
static fixpoint_symbol mu()
Returns the mu symbol.
\brief The universal quantification operator for pbes expressions
const pbes_expression & body() const
const data::variable_list & variables() const
\brief The implication operator for pbes expressions
const pbes_expression & left() const
const pbes_expression & right() const
bool is_write_dependent_propvar(int group)
Determines if group is write dependent on the propositional variable. Returns true if propositional v...
std::map< std::string, int > variable_priority
static std::vector< std::string > get_param_sequence(const data::variable_list &params)
Converts a variable_sequence_type into a sequence of parameter signatures.
bool is_read_dependent_parameter(int group, int part)
Determines if group is read dependent on part part of the state vector. Returns true if the parameter...
std::vector< int > get_param_indices(const data::variable_list &params)
Converts a variable_sequence_type into a sequence of indices of parameter signatures in the list of p...
std::vector< std::string > transition_variable_name
bool is_pass_through_state(const propositional_variable_instantiation &propvar)
Determines if the propositional variable instantiation is one that only copies parameters from the cu...
const std::map< std::string, fixpoint_symbol > & get_variable_symbols() const
Returns the map from variable names to the fixpoint operator of the equation for the variable.
static std::map< variable, std::string > variable_signatures
std::map< std::string, fixpoint_symbol > variable_symbol
const std::map< std::string, data::variable_list > & get_variable_parameters() const
Returns the map from variable names to the sequence of parameters for the variable.
const std::map< std::string, propositional_variable > & get_variables() const
Returns the map from variable names to the variable object for the variable.
int get_index(const std::string &signature)
Returns the index for a parameter signature in the list of parameter signatures for the system.
const lts_type & get_lts_type() const
Returns the LTS Type.
std::map< std::string, int > param_index
bool get_reset_option() const
Returns if the reset option is set.
std::set< std::string > copied(const pbes_expression &expr, const std::set< std::string > &L)
Computes the free variables which are copied/passed through (to a recursive variable) in an expressio...
const std::vector< pbes_expression > & get_transition_expressions() const
Returns the map from transition group number to the expression of the transition group.
std::set< std::string > copied(const pbes_expression &expr)
Computes the free variables which are copied/passed through (to a recursive variable) in an expressio...
std::vector< data_expression > param_default_values
detail::pbes_greybox_interface * pgg
bool is_read_dependent_propvar(int group)
Determines if group is read dependent on the propositional variable. Returns true,...
std::vector< pbes_expression > transition_expression
const std::vector< operation_type > & get_transition_types() const
Returns the map from transition group number to the type of the right hand side of the equation to wh...
std::set< std::string > used(const pbes_expression &expr, const std::set< std::string > &L)
Computes the free variables actually used, not only passed through, in an expression.
std::set< std::string > used(const pbes_expression &expr)
Computes the free variables actually used, not only passed through, in an expression.
static std::string get_param_signature(const variable &param)
Returns a signature for parameter param.
const std::map< std::string, operation_type > & get_variable_types() const
Returns the map from variable names to the type of the right hand side of the equation for the variab...
void compute_dependency_matrix()
Computes dependency matrix from PBES.
lts_info(pbes &p, detail::pbes_greybox_interface *pgg, bool reset, bool always_split)
Constructor.
static bool tf(const pbes_expression &phi)
Determines if the term phi contains a branch that directly results in true or false (not a variable).
std::vector< pbes_expression > split_expression_and_substitute_variables(const pbes_expression &e, int current_priority, operation_type current_type, std::set< std::string > vars_stack)
Splits the expression into parts (disjuncts or conjuncts) and recursively tries to substitute the pro...
std::map< std::string, propositional_variable > variables
int get_number_of_groups() const
Returns the number of transition groups.
static std::set< std::string > get_param_set(const data::variable_list &params)
Converts a variable_sequence_type into a set of parameter signatures.
std::map< int, int > get_param_index_positions(const data::variable_list &params)
Converts a variable_sequence_type into a map from indices of parameter signatures (in the list of par...
static std::set< std::string > occ(const pbes_expression &expr)
Computes the propositional variables used in an expression.
std::map< std::string, operation_type > variable_type
int count_variables(const pbes_expression &e)
Counts the number of propositional variables in an expression.
void compute_lts_type()
Computes LTS Type from PBES.
std::vector< operation_type > transition_type
std::set< std::string > changed(const pbes_expression &phi, const std::set< std::string > &L)
Computes the set of parameters changed in the expression.
std::string state_to_string(const ltsmin_state &state)
Returns a string representation for state state.
const std::map< std::string, int > & get_variable_priorities() const
Returns the map from variable names to the priority of the equation for the variable.
std::map< std::string, data::variable_list > variable_parameters
const data_expression & get_default_value(int index)
Returns a default value for the sort of a parameter signature.
const std::vector< std::string > & get_transition_variable_names() const
Returns the map from transition group number to the variable name of the equation to which the transi...
std::set< std::string > reset(const pbes_expression &phi, const std::set< std::string > &d)
Computes the set of parameters reset in the expression.
static std::string get_param_signature(const std::string &paramname, const std::string &paramtype)
Returns a signature using name and type of a parameter.
static std::set< std::string > free(const pbes_expression &expr)
Computes the free variables read in an expression.
std::vector< pbes_expression > transition_expression_plain
bool is_write_dependent_parameter(int group, int part)
Determines if group is read dependent on part part of the state vector. Returns true if the parameter...
std::map< std::string, pbes_expression > variable_expression
std::set< std::string > changed(const pbes_expression &phi)
Computes the set of parameters changed in the expression.
void compute_transition_groups()
Computes transition groups from PBES.
const std::vector< std::string > & get_edge_label_types() const
Returns the sequence of edge label types.
std::size_t get_number_of_state_types() const
Returns the number of state types.
const std::vector< std::string > & get_edge_labels() const
Returns the sequence of edge labels.
int get_state_type_no(int part) const
Returns the state type index for the state part part.
std::vector< std::string > state_type_list
std::vector< std::string > state_label_types
std::vector< std::string > state_names
std::vector< int > state_type_no
void add_state(const std::string &name, const std::string &type)
Adds a state part of type type with name name.
void add_state_label(const std::string &name, const std::string &type)
Adds a state label of type type with name name.
lts_type(int state_length)
Contructor.
std::string get_state_type_name(int type_no) const
Returns the name of the state type with number type_no.
int get_state_length() const
Returns the state length.
std::map< std::string, int > state_type_index
std::vector< std::string > edge_label_names
const std::vector< std::string > & get_state_label_types() const
Returns the sequence of state label types.
std::vector< std::string > edge_label_types
std::vector< std::string > state_types
std::size_t get_number_of_edge_labels() const
Returns the number of edge labels.
std::vector< std::string > state_label_names
const std::vector< std::string > & get_state_types() const
Returns the sequence of state part types.
void add_edge_label(const std::string &name, const std::string &type)
Adds an edge label of type type with name name.
const std::vector< std::string > & get_state_labels() const
Returns the sequence of state labels.
const std::vector< std::string > & get_state_names() const
Returns the sequence of state part names.
std::size_t get_number_of_state_labels() const
Returns the number of state labels.
void add_parameter_value(const data_expression &)
Adds a parameter value to the list of parameter values.
pbes_expression to_pbes_expression() const
Returns a PBES expression representing the state.
std::vector< data_expression > param_values
std::string state_to_string() const
Returns a string representation of the state.
bool operator<(const ltsmin_state &other) const
Compares two PBES_State objects. Uses lexicographical ordering on priority, type, variable and parame...
ltsmin_state(const std::string &varname)
Constructor.
bool operator==(const ltsmin_state &other) const
Checks if two PBES_State objects are equal.
ltsmin_state(const std::string &varname, const pbes_expression &e)
Constructor.
std::string get_variable() const
Returns a string representation of the propositional variable of the state.
const std::vector< data_expression > & get_parameter_values() const
Returns the list of parameter values.
\brief The not operator for pbes expressions
const pbes_expression & operand() const
\brief The or operator for pbes expressions
const pbes_expression & left() const
const pbes_expression & right() const
Class for generating a BES from a PBES. This BES can be interpreted as a graph corresponding to a par...
void compute_priorities(const std::vector< pbes_equation > &equations)
Compute priorities of PBES propositional variables.
virtual operation_type get_expression_operation(const pbes_expression &phi)
Returns the vertex type.
parity_game_generator(pbes &p, bool true_false_dependencies=false, bool is_min_parity=true, data::rewriter::strategy rewrite_strategy=data::jitty)
Constructor.
virtual void print_variable_mapping()
Prints the mapping from BES variables to the corresponding PBES expressions.
std::map< core::identifier_string, std::size_t > m_priorities
Maps propositional variables to corresponding priorities.
void compute_equation_index_map()
Compute equation index map.
pbes_expression expand_rhs(const pbes_expression &psi)
virtual operation_type get_operation(std::size_t index)
Returns the vertex type.
bool m_true_false_dependencies
Determines what kind of BES equations are generated for true and false.
virtual propositional_variable_instantiation get_initial_state()
Returns the (rewritten) initial state.
std::string print_equation_count(std::size_t size, std::size_t step=1000) const
Prints a log message for every step-th equation.
std::map< pbes_expression, std::size_t > m_pbes_expression_index
Maps PBES closed expressions to corresponding BES variables.
std::size_t m_max_priority
The maximum priority value of the game.
pbes_system::enumerate_quantifiers_rewriter R
PBES rewriter.
void make_substitution(const data::variable_list &v, const data::data_expression_list &e, substitution_function &sigma) const
Generates a substitution function for the pbesinst rewriter.
pbes & m_pbes
The PBES that is being solved.
virtual std::size_t get_priority(std::size_t index)
Returns the priority of a vertex. The priority of the first equation is 0 if it is a maximal fixpoint...
virtual std::set< std::size_t > get_initial_values()
Returns the vertices for which a solution is requested. By default a set containing the values 0,...
virtual std::string print_bes_equation(std::size_t index, const std::set< std::size_t > &rhs)
operation_type
The operation type of the vertices.
bool m_is_min_parity_game
True if it is a min-parity game.
std::size_t add_bes_equation(pbes_expression t, std::size_t priority)
Adds a BES equation for a given PBES expression, if it not already exists.
bool m_initialized
Mark whether initialization has been initialized. Needed to properly cope with virtual inheritance!
virtual std::set< std::size_t > get_dependencies(std::size_t index)
Returns the successors of a vertex in the graph.
const pbes_expression & formula() const
Returns the predicate formula on the right hand side of the equation.
const fixpoint_symbol & symbol() const
Returns the fixpoint symbol of the equation.
const propositional_variable & variable() const
Returns the pbes variable of the equation.
pbes_expression & operator=(pbes_expression &&) noexcept=default
pbes_expression & operator=(const pbes_expression &) noexcept=default
parameterized boolean equation system
Definition pbes.h:54
propositional_variable_instantiation & initial_state()
Returns the initial state.
Definition pbes.h:195
\brief A propositional variable instantiation
const data::data_expression_list & parameters() const
\brief A propositional variable declaration
const core::identifier_string & name() const
propositional_variable(const core::identifier_string &name, const data::variable_list &parameters)
\brief Constructor Z12.
#define mCRL2log(LEVEL)
mCRL2log(LEVEL) provides the stream used to log.
Definition logger.h:393
atermpp::aterm remove_index(const atermpp::aterm &x)
Definition io.h:50
bool is_data_expression(const atermpp::aterm &x)
Test for a data_expression expression.
std::ostream & operator<<(std::ostream &out, const no_substitution &)
The namespace for accessor functions on pbes expressions.
const pbes_expression & arg(const pbes_expression &t)
Returns the pbes expression argument of expressions of type not, exists and forall.
const pbes_expression & left(const pbes_expression &t)
Returns the left hand side of an expression of type and, or or imp.
const pbes_expression & right(const pbes_expression &t)
Returns the right hand side of an expression of type and, or or imp.
void instantiate_global_variables(pbes &p)
Attempts to eliminate the free variables of a PBES, by substituting a constant value for them....
Definition pbes.cpp:64
void normalize(pbes &x)
The function normalize brings (embedded) pbes expressions into positive normal form,...
static void inc_indent()
Increases the current indent level.
bool is_counter_example_equation(const pbes_equation &equation)
Guesses if the PBES equation is a counter example equation.
static std::regex negative("Zneg_(\\d+)_.*")
bool is_counter_example_positive(const core::identifier_string &name)
Returns true iff the name is Zpos, name must be a counter example name.
apply_data_rewriter_with_pbes_substitution_builder< Builder, DataRewriter, MutableSubstitution, PbesSubstitution > make_apply_data_rewriter_with_pbes_substitution_builder(const DataRewriter &R, MutableSubstitution &sigma, const PbesSubstitution &sigma_pbes)
mcrl2::pbes_system::pbes remove_counterexample_info(const pbes_system::pbes &pbes, bool remove_Lplus=true, bool remove_Lminus=true, bool remove_Lequations=true)
Removes all equations and expressions related to counter examples from the input PBES.
void data_rewrite(data::data_expression &result, const data::data_expression &x, const DataRewriter &R, SubstitutionFunction &sigma)
bool is_counter_example_instantiation(const propositional_variable_instantiation &inst)
Guesses if the PBES variable instantiation is for counter example equation.
void data_rewrite(data::data_expression &result, const data::data_expression &x, const DataRewriter &R, data::no_substitution &)
bool has_counter_example_information(const pbes &pbesspec)
Guesses if a pbes has counter example information.
static void indent()
Indents according to the current indent level.
static std::regex positive("Zpos_(\\d+)_.*")
static void dec_indent()
Decreases the current indent level.
bool is_counter_example_variable(const propositional_variable &X)
static std::regex positive_or_negative("Z(neg|pos)_(\\d+)_.*")
static int indent_count
The current indent level. Used for debug output.
apply_rewriter_builder< Builder, DataRewriter, SubstitutionFunction > make_apply_rewriter_builder(const DataRewriter &datar, SubstitutionFunction &sigma)
bool is_counter_example_name(const core::identifier_string &name)
apply_data_rewriter_with_pbes_substitution_builder< Builder, DataRewriter, MutableSubstitution, no_substitution > make_apply_data_rewriter_with_pbes_substitution_builder(const DataRewriter &R, MutableSubstitution &sigma)
MapContainer::mapped_type map_at(const MapContainer &m, typename MapContainer::key_type key)
The main namespace for the PBES library.
bool is_pbes_file_format(const utilities::file_format &format)
Definition io.h:26
bool is_data(const pbes_expression &t)
Returns true if the term t is a data expression.
void load_pbes(pbes &pbes, std::istream &stream, utilities::file_format format, const std::string &)
Load a PBES from file.
Definition io.cpp:83
void save_pbes(const pbes &pbes, const std::string &filename, utilities::file_format format, bool welltypedness_check)
save_pbes Saves a PBES to a file.
Definition io.cpp:114
const pbes_expression & true_()
bool is_not(const atermpp::aterm &x)
const utilities::file_format & pbes_format_internal_bes()
Definition io.h:43
void load_pbes(pbes &pbes, const std::string &filename, utilities::file_format format)
Load pbes from file.
Definition io.cpp:149
const utilities::file_format & pbes_format_pgsolver()
Definition io.h:45
bool is_exists(const atermpp::aterm &x)
utilities::file_format guess_format(const std::string &filename)
Definition io.h:47
bool is_or(const atermpp::aterm &x)
bool is_non_simple_conjunct(const pbes_expression &t)
Test for a conjunction.
bool is_simple_expression(const T &x, bool allow_counter_example_propvar)
Determines if an expression is a simple expression. An expression is simple if it is free of proposit...
bool is_forall(const atermpp::aterm &x)
const std::vector< utilities::file_format > & pbes_file_formats()
Definition io.cpp:27
void save_bes_pgsolver(const pbes &bes, std::ostream &stream, bool maxpg)
Definition pgsolver.cpp:141
bool is_pbes_or(const pbes_expression &t)
Returns true if the term t is an or expression.
bool is_false(const pbes_expression &t)
Test for the value false.
std::vector< pbes_expression > split_disjuncts(const pbes_expression &expr, bool split_simple_expr=false)
Splits a disjunction into a sequence of operands. Given a pbes expression of the form p1 || p2 || ....
bool is_pbes_and(const pbes_expression &t)
Returns true if the term t is an and expression.
void save_pbes(const pbes &pbes, std::ostream &stream, utilities::file_format format)
Save a PBES in the format specified.
Definition io.cpp:50
std::vector< pbes_expression > split_conjuncts(const pbes_expression &expr, bool split_simple_expr=false)
Splits a conjunction into a sequence of operands Given a pbes expression of the form p1 && p2 && ....
const utilities::file_format & pbes_format_internal()
Definition io.h:39
bool is_propositional_variable_instantiation(const atermpp::aterm &x)
const utilities::file_format & pbes_format_text()
Definition io.h:41
bool is_and(const atermpp::aterm &x)
std::string print_brief(const T &x)
Returns a string representation of the root node of a PBES.
bool is_non_simple_disjunct(const pbes_expression &t)
Test for a disjunction.
bool is_imp(const atermpp::aterm &x)
bool is_true(const pbes_expression &t)
Test for the value true.
const pbes_expression & false_()
An empty struct that is used to denote the absence of a substitution. Used for rewriters.
const variable & operator()(const variable &v) const
static constexpr bool is_identity_substitution
A rewriter that applies a data rewriter to data expressions in a term.
pbes_expression operator()(const pbes_expression &x, SubstitutionFunction &sigma) const
pbes_expression operator()(const pbes_expression &x) const
data_rewriter(const DataRewriter &R_)
void apply(T &result, const data::data_expression &x)
add_data_rewriter(const DataRewriter &R_, SubstitutionFunction &sigma_)
void apply(T &result, const propositional_variable_instantiation &x)
void apply(T &result, const forall &x)
void apply(T &result, const exists &x)
void apply(T &result, const or_ &x)
void apply(T &result, const not_ &x)
void apply(T &result, const and_ &x)
apply_data_rewriter_with_pbes_substitution_builder(const DataRewriter &R, MutableSubstitution &sigma)
apply_data_rewriter_with_pbes_substitution_builder(const DataRewriter &R, MutableSubstitution &sigma, const PbesSubstitution &sigma_pbes)
apply_rewriter_builder(const DataRewriter &datar, SubstitutionFunction &sigma)
A visitor class for PBES equations in BQNF. There is a visit_<node> function for each type of node....
bool debug
flag that indicates if debug output should be printed.
virtual bool visit_bqnf_equation(const pbes_equation &eqn)
Visits a BQNF equation.
virtual bool visit_inner_bounded_exists(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a bounded existential quantifier expression within a disjunctive expression.
static std::string print_brief(const pbes_expression &e)
Returns a string representation of the type of the root node of the expression.
virtual bool visit_bounded_forall(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a bounded universal quantifier expression.
virtual bool visit_bounded_quantifier(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a bounded quantifier expression.
virtual bool visit_inner_and(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a conjunctive expression within an inner existential quantifier expression.
virtual bool visit_propositional_variable(const fixpoint_symbol &, const propositional_variable &, const pbes_expression &e)
Visits a propositional variable expression.
static bool is_inner_implies(const pbes_expression &e)
Determines if an expression if of the form phi => psi or of the form phi \/ psi where phi is a simple...
virtual bool visit_simple_expression(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a simple expression. An expression is simple if it does not contain propositional variables.
virtual bool visit_bqnf_expression(const pbes_expression &e)
Visits a BQNF expression. In the current BQNF visitor sigma and var parameters are added for use in b...
virtual bool visit_and(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a conjunctive expression.
virtual bool visit_bqnf_expression(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a BQNF expression.
static bool is_inner_and(const pbes_expression &e)
Determines if an expression if of the form phi /\ psi where phi is a simple expression and psi is an ...
virtual ~bqnf_visitor()=default
Destructor.
virtual bool visit_or(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a disjunctive expression.
virtual bool visit_bqnf_equation_debug(const pbes_equation &eqn)
Visits a BQNF equation in debug mode.
virtual bool visit_bounded_exists(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a bounded existential quantifier expression.
virtual bool visit_inner_bounded_forall(const fixpoint_symbol &sigma, const propositional_variable &var, const pbes_expression &e)
Visits a bounded universal quantifier expression within a conjunctive expression.
data_rewriter_builder(const DataRewriter &R, SubstitutionFunction &sigma)
void apply_substitution(T &result, const propositional_variable_instantiation &x, const SubstitutionType &sigma)
simplify_data_rewriter_builder(const DataRewriter &R, MutableSubstitution &sigma)
void apply_substitution(T &, const propositional_variable_instantiation &, const no_substitution &)
Overload to have a trivial function in case the substitution is no_substitution.
simplify_data_rewriter_builder(const DataRewriter &R, MutableSubstitution &sigma, const PbesSubstitution &sigma_pbes)
void apply(T &result, const propositional_variable_instantiation &x)
void apply(T &result, const propositional_variable_instantiation &x)
subsitute_counterexample(bool replace_Lplus, bool replace_Lminus)
An empty struct that can be used to indicate that there is no substitution that should be applied to ...
Visitor for printing the root node of a PBES.
void apply(const pbes_equation &x)
void apply(const propositional_variable_instantiation &x)
A rewriter that simplifies boolean expressions in a term, and rewrites data expressions using DataRew...
pbes_expression operator()(const pbes_expression &x) const
pbes_expression operator()(const pbes_expression &x, Substitution &sigma, const PbesSubstitution &sigma_pbes) const
void operator()(pbes_expression &result, const pbes_expression &x, Substitution &sigma, const PbesSubstitution &sigma_pbes) const
void operator()(pbes_expression &result, const pbes_expression &x, Substitution &sigma) const
pbes_expression operator()(const pbes_expression &x, Substitution &sigma) const
A rewriter that simplifies boolean expressions in a term.
void operator()(pbes_expression &result, const pbes_expression &x) const
pbes_expression operator()(const pbes_expression &x, const PbesSubstitution &sigma) const
pbes_expression operator()(const pbes_expression &x) const
void operator()(pbes_expression &result, const pbes_expression &x, const PbesSubstitution &sigma) const