Marc-Alexandre Côté

Results 35 issues of Marc-Alexandre Côté

Applying https://github.com/curiousdannii/parchment/pull/61/files#diff-e4a4476dbe1d400e7155a903822b966eL456

Ref: https://github.com/pyparsing/pyparsing/issues/319 Minimal example: ```python import pydot pydot.graph_from_dot_data("graph G { b1 [label=]; }") ``` ``` graph G { b1 [label=]; } ^ Expected '{', found 'G' (at char 6), (line:1,...

This PR improves support for the games in Jericho. Here are the main modifications/improvements of this PR. - [x] Updating the objects count that was off from some games. Having...

Here's a list of the supported games for which we have a walkthrough. > python tools/test_games.py roms/* ``` roms/905.z5 PASS roms/acorncourt.z5 PASS roms/advent.z5 PASS roms/adventureland.z5 PASS roms/afflicted.z8 PASS roms/anchor.z8 FAIL...

I'm wondering how much work would it be to add Windows support to Jericho? For instance, we would need to de/allocate the frotz library according to the current OS (see...

This PR allows Events to be combined using boolean expressions (e.g. and/or). This is needed to make more complex quests. This PR closes #218.

Currently, TextWorld only supports Inform7's `thing`s but it would be better if it was also supporting other types like number and text. For instance, it would allow us to create...

enhancement

With the new and better chaining that supports nonlinear quests, there might not be a use for the special check `self._is_navigation(nav_parent.action)` when checking for action dependencies. That check was originally...

At the moment, [`compile_game`](https://github.com/Microsoft/TextWorld/blob/master/textworld/generator/__init__.py#L201) is not thread-safe. This is problematic when games are generated on-the-fly during batch training. For instance, see http://github.com/xingdi-eric-yuan/TextWorld-Coin-Collector/issues/3.

enhancement

A couple of highlights: - Can now define multiple alternatives for a given alias. For instance, ``` reachable(x) = in(x, I); reachable(x) = at(x, r) & at(P, r); ``` -...