We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b7d9b6 commit a163e39Copy full SHA for a163e39
docs/tutorials/further_topics/evolvable_players.rst
@@ -23,6 +23,7 @@ This is in contrast to the transitional mutation that selects one of the other p
23
generating a new player variant. To use this mutation style set `mutation_method=atomic` in the initialisation
24
of the Moran process:
25
26
+ >>> import axelrod as axl
27
>>> C = axl.Action.C
28
>>> players = [axl.EvolvableFSMPlayer(num_states=2, initial_state=1, initial_action=C) for _ in range(5)]
29
>>> mp = axl.MoranProcess(players, turns=10, mutation_method="atomic")
0 commit comments