Alex Driedger

Results 13 issues of Alex Driedger

Currently, the most natural way to deep copy is to create a state object and then instantiate a new instance from the state. Eg. `new_player = Player.from_state(orig_player.state)`. This creates a...

I've created an `Arena` for testing AIs and using the random agents is a great way to find bugs. It should be as easy as installing and running. Let me...

The compress / decompress methods provide good ways to check for equality. However, in situations where the objects do not need to be compressed (eg. unit tests), equality methods are...