mCRL2
Loading...
Searching...
No Matches
normalize_sorts.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//
11
12#ifndef MCRL2_LPS_NORMALIZE_SORTS_H
13#define MCRL2_LPS_NORMALIZE_SORTS_H
14
16#include "mcrl2/lps/builder.h"
17
18namespace mcrl2
19{
20
21namespace lps
22{
23
24template <typename T>
26 const data::sort_specification& sortspec,
27 typename std::enable_if< !std::is_base_of< atermpp::aterm, T >::value >::type* = nullptr
28 )
29{
30 core::make_update_apply_builder<lps::sort_expression_builder>(data::detail::normalize_sorts_function(sortspec)).update(x);
31}
32
33template <typename T>
34T normalize_sorts(const T& x,
35 const data::sort_specification& sortspec,
36 typename std::enable_if< std::is_base_of< atermpp::aterm, T >::value >::type* = 0
37 )
38{
39 T result;
40 core::make_update_apply_builder<lps::sort_expression_builder>(data::detail::normalize_sorts_function(sortspec)).apply(result, x);
41 return result;
42}
43
44} // namespace lps
45
46} // namespace mcrl2
47
48#endif // MCRL2_LPS_NORMALIZE_SORTS_H
add your file description here.
add your file description here.
lps::multi_action normalize_sorts(const multi_action &x, const data::sort_specification &sortspec)
Definition lps.cpp:38
A class that takes a linear process specification and checks all tau-summands of that LPS for conflue...
Definition indexed_set.h:72