Skip to content
Snippets Groups Projects
Commit 60bc50ac authored by dohan's avatar dohan
Browse files

translate HEURISTIC_FUNCTION definition

parent c938b183
No related branches found
No related tags found
No related merge requests found
...@@ -53,8 +53,8 @@ public class BDefinitionsFinder extends AbstractASTVisitor implements ASTConstan ...@@ -53,8 +53,8 @@ public class BDefinitionsFinder extends AbstractASTVisitor implements ASTConstan
for (OpDefNode opDef : specAnalyser.getModuleNode().getOpDefs()) { for (OpDefNode opDef : specAnalyser.getModuleNode().getOpDefs()) {
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_FUNCTION") if (defName.equals("GOAL") || defName.startsWith("ANIMATION_") || defName.startsWith("CUSTOM_GRAPH_")
|| defName.startsWith("ANIMATION_")|| defName.startsWith("CUSTOM_GRAPH_") || defName.startsWith("SET_PREF_")) { || defName.startsWith("SET_PREF_") || defName.startsWith("HEURISTIC_FUNCTION")) {
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