Skip to content
Snippets Groups Projects
Commit 6231d36a authored by Michael Leuschel's avatar Michael Leuschel
Browse files

support for GAME_ DEFINITIONS

parent 8dc55564
Branches
No related tags found
No related merge requests found
Checking pipeline status
...@@ -56,7 +56,8 @@ public class BDefinitionsFinder extends AbstractASTVisitor implements ASTConstan ...@@ -56,7 +56,8 @@ public class BDefinitionsFinder extends AbstractASTVisitor implements ASTConstan
if (defName.equals("GOAL") || defName.startsWith("ANIMATION_") || defName.startsWith("CUSTOM_GRAPH_") if (defName.equals("GOAL") || defName.startsWith("ANIMATION_") || defName.startsWith("CUSTOM_GRAPH_")
|| defName.startsWith("ASSERT_CTL") || defName.startsWith("ASSERT_LTL") || defName.startsWith("ASSERT_CTL") || defName.startsWith("ASSERT_LTL")
|| defName.startsWith("SET_PREF_") || defName.startsWith("HEURISTIC_FUNCTION") || defName.startsWith("SET_PREF_") || defName.startsWith("HEURISTIC_FUNCTION")
|| defName.startsWith("VISB_JSON_FILE") || defName.equals("VISB_JSON_FILE")
|| defName.startsWith("GAME_") // GAME_OVER, GAME_PLAYER, GAME_MCTS_RUNS
|| defName.startsWith("SCOPE") || defName.startsWith("scope_")) { || defName.startsWith("SCOPE") || 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