Include file:
#include "mcrl2/bes/join.h"
add your file description here.
mcrl2::bes::
join_and
(FwdIt first, FwdIt last)¶Returns and applied to the sequence of boolean expressions [first, last)
Parameters:
Returns: And applied to the sequence of boolean expressions [first, last)
mcrl2::bes::
join_or
(FwdIt first, FwdIt last)¶Returns or applied to the sequence of boolean expressions [first, last)
Parameters:
Returns: Or applied to the sequence of boolean expressions [first, last)
mcrl2::bes::
split_and
(const boolean_expression &expr)¶Splits a conjunction into a sequence of operands Given a boolean 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.
Parameters:
Returns: A sequence of operands
mcrl2::bes::
split_or
(const boolean_expression &expr)¶Splits a disjunction into a sequence of operands Given a boolean 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.
Parameters:
Returns: A sequence of operands