Include file:
#include "mcrl2/process/rewrite.h"
add your file description here.
mcrl2::process::
rewrite
(const T &x, Rewriter R, const Substitution &sigma, typename std::enable_if<std::is_base_of<atermpp::aterm, T>::value>::type * = nullptr)¶brief Rewrites all embedded expressions in an object x, and applies a substitution to variables on the fly param x an object containing expressions param R a rewriter param sigma a substitution return the rewrite result
mcrl2::process::
rewrite
(const T &x, Rewriter R, typename std::enable_if<std::is_base_of<atermpp::aterm, T>::value>::type * = nullptr)¶brief Rewrites all embedded expressions in an object x param x an object containing expressions param R a rewriter return the rewrite result
mcrl2::process::
rewrite
(T &x, Rewriter R, const Substitution &sigma, typename std::enable_if<!std::is_base_of<atermpp::aterm, T>::value>::type * = nullptr)¶brief Rewrites all embedded expressions in an object x, and applies a substitution to variables on the fly param x an object containing expressions param R a rewriter param sigma a substitution