Merge pull request #2677 from joakim-hove/actionx-enable-gconsump

Enable keywords as ACTIONX keywords
This commit is contained in:
Joakim Hove
2021-09-13 11:03:42 +02:00
committed by GitHub

View File

@@ -39,9 +39,9 @@ bool ActionX::valid_keyword(const std::string& keyword) {
static std::unordered_set<std::string> actionx_allowed_list = {
"COMPLUMP",
"EXIT",
"GCONINJE", "GCONPROD", "GLIFTOPT",
"GCONINJE", "GCONPROD", "GCONSUMP", "GLIFTOPT", "GRUPNET", "GRUPTARG", "GRUPTREE", "GSATINJE", "GSATPROD",
"UDQ",
"WELSPECS","WELOPEN", "WELPI", "WPIMULT"
"WCONINJE", "WCONPROD", "WEFAC", "WELSPECS","WELOPEN", "WELPI", "WGRUPCON", "WPIMULT", "TEST"
};
return (actionx_allowed_list.find(keyword) != actionx_allowed_list.end());
}