|
| std::multiset< data_expression > | split_or (const data_expression &expr) |
| | Splits a disjunction into a sequence of operands Given a data expression of the form p1 || p2 || .... || pn, this will yield a set of the form { p1, p2, ..., pn }, assuming that pi does not have a || as main function symbol.
|
| |
| std::multiset< data_expression > | split_and (const data_expression &expr) |
| | Splits a conjunction into a sequence of operands Given a data expression of the form p1 && p2 && .... && pn, this will yield a set of the form { p1, p2, ..., pn }, assuming that pi does not have a && as main function symbol.
|
| |
| template<class T > |
| void | apply (T &result, const application &x) |
| |
| void | apply (T &result, const data::variable &x) |
| |
| void | apply (T &result, const data::function_symbol &x) |
| |
| void | apply (T &result, const data::application &x) |
| |
| void | apply (T &result, const data::where_clause &x) |
| |
| void | apply (T &result, const data::machine_number &x) |
| |
| void | apply (T &result, const data::untyped_identifier &x) |
| |
| void | apply (T &result, const data::assignment &x) |
| |
| void | apply (T &result, const data::untyped_identifier_assignment &x) |
| |
| void | apply (T &result, const data::forall &x) |
| |
| void | apply (T &result, const data::exists &x) |
| |
| void | apply (T &result, const data::lambda &x) |
| |
| void | apply (T &result, const data::set_comprehension &x) |
| |
| void | apply (T &result, const data::bag_comprehension &x) |
| |
| void | apply (T &result, const data::untyped_set_or_bag_comprehension &x) |
| |
| void | apply (T &result, const data::data_equation &x) |
| |
| void | apply (T &result, const data::untyped_data_parameter &x) |
| |
| void | apply (T &result, const data::data_expression &x) |
| |
| void | apply (T &result, const data::assignment_expression &x) |
| |
| void | apply (T &result, const data::abstraction &x) |
| |
template<typename Derived>
struct mcrl2::data::detail::normalize_and_or_builder< Derived >
Definition at line 27 of file test_rewriters.h.