rsCTL PVs: process_name.entity_name.

This commit is contained in:
Artur Meski
2018-04-14 22:10:56 +01:00
parent d8398085aa
commit 30b62c88c6
3 changed files with 13 additions and 7 deletions

View File

@@ -74,14 +74,16 @@ class BoolContexts
Oper oper;
BoolContexts *arg[2];
std::string name;
std::string proc_name;
bool tf;
public:
BoolContexts(std::string varName)
BoolContexts(std::string procName, std::string varName)
{
oper = BCTX_PV;
name = varName;
proc_name = procName;
arg[0] = nullptr;
arg[1] = nullptr;
}
@@ -167,9 +169,10 @@ class FormRSCTL
* @param varName variable name used mostly for printing the variable.
* @param varBDD the BDD describing the set where the variable holds.
*/
FormRSCTL(std::string varName)
FormRSCTL(std::string procName, std::string varName)
{
oper = RSCTL_PV;
proc_name = procName;
entity_name = varName;
arg[0] = nullptr;
arg[1] = nullptr;