Hi,
The function get_instance(self, num: int) in the ExampleManager class assumes an int argument to load specific instance files. As some domains in the examples have instance files including chars, like instance1c.rddl it is not possible to use the function above. Changing the argument type to str will fix the issue.
Hi, The function
get_instance(self, num: int)
in theExampleManager
class assumes anint
argument to load specific instance files. As some domains in the examples have instance files including chars, likeinstance1c.rddl
it is not possible to use the function above. Changing the argument type tostr
will fix the issue.