Skip to content
Snippets Groups Projects
Commit 9c82b06b authored by dohan's avatar dohan
Browse files

translate SCOPE_ definitions

parent 60bc50ac
Branches
Tags
No related merge requests found
...@@ -54,7 +54,7 @@ public class BDefinitionsFinder extends AbstractASTVisitor implements ASTConstan ...@@ -54,7 +54,7 @@ public class BDefinitionsFinder extends AbstractASTVisitor implements ASTConstan
String defName = opDef.getName().toString(); String defName = opDef.getName().toString();
// GOAL, ANIMATION_FUNCTION, ANIMATION_IMGxx, SET_PREF_xxx, // GOAL, ANIMATION_FUNCTION, ANIMATION_IMGxx, SET_PREF_xxx,
if (defName.equals("GOAL") || defName.startsWith("ANIMATION_") || defName.startsWith("CUSTOM_GRAPH_") if (defName.equals("GOAL") || defName.startsWith("ANIMATION_") || defName.startsWith("CUSTOM_GRAPH_")
|| defName.startsWith("SET_PREF_") || defName.startsWith("HEURISTIC_FUNCTION")) { || defName.startsWith("SET_PREF_") || defName.startsWith("HEURISTIC_FUNCTION")|| defName.startsWith("SCOPE_")) {
bDefinitionsSet.add(opDef); bDefinitionsSet.add(opDef);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment