forked from clp-research/clembench
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Starting on GameSpec and CLI enhancement; Add GameSpec.unify() method…
…; Add custom game registry with three entries for the wordle variants for testing; Change clemgame.select_game() to return list of GameSpecs; Add unifying GameSpec check to clemgame.select_game(); Change clemcore.run() to iterate over list of GameSpecs; Change cli.py run -i default argument to None; Change GameBenchmark.setup() method to use CLI instances_name if given, but use GameSpec instances value otherwise; Add explicit handling of underspecified GameSpecs; Add handling of benchmark version lists in JSON GameSpec in CLI input - currently not compatible with underspecified GameSpec unification
- Loading branch information
Showing
5 changed files
with
148 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[ | ||
{ | ||
"game_name": "wordle", | ||
"game_path": "../clemgames/wordle", | ||
"description": "Wordle 5-letter word guessing game.", | ||
"main_game": "wordle", | ||
"players": "one", | ||
"image": "none", | ||
"languages": ["en"], | ||
"benchmark": ["2.0"] | ||
}, | ||
{ | ||
"game_name": "wordle_withclue", | ||
"game_path": "../clemgames/wordle", | ||
"description": "Wordle 5-letter word guessing game with clue giver.", | ||
"main_game": "wordle", | ||
"instances": "instances_withclue", | ||
"players": "two", | ||
"image": "none", | ||
"languages": ["en"], | ||
"benchmark": ["2.0"] | ||
}, | ||
{ | ||
"game_name": "wordle_withcritic", | ||
"game_path": "../clemgames/wordle", | ||
"description": "Wordle 5-letter word guessing game with critic.", | ||
"main_game": "wordle", | ||
"instances": "instances_withcritic", | ||
"players": "two", | ||
"image": "none", | ||
"languages": ["en"], | ||
"benchmark": ["2.0"] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters