12#ifndef MCRL2_DATA_DETAIL_FIND_H
13#define MCRL2_DATA_DETAIL_FIND_H
26std::set<core::identifier_string>
variable_names(
const std::set<data::variable>& variables)
28 std::set<core::identifier_string> result;
31 result.insert(v.name());
41 std::set<std::string> result;
44 result.insert(std::string(v.name()));
52std::set<std::string>
variable_name_strings(
const std::set<data::variable>& variables1,
const std::set<data::variable>& variables2)
54 std::set<std::string> result;
57 result.insert(std::string(v.name()));
61 result.insert(std::string(v.name()));
std::set< std::string > variable_name_strings(const std::set< data::variable > &variables)
Returns the names of a set of data variables as a set of strings.
std::set< core::identifier_string > variable_names(const std::set< data::variable > &variables)
Returns the names of a set of data variables.
A class that takes a linear process specification and checks all tau-summands of that LPS for conflue...