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
commit 8b5475b98b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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