Ejemplo n.º 1
0
 def test_vs_geller(self):
     """Ensures that a recursion error does not occur """
     p1 = axelrod.MindReader()
     p2 = axelrod.Geller()
     p1.strategy(p2)
     p2.strategy(p1)
Ejemplo n.º 2
0
 def test_vs_geller(self):
     """Ensures that a recursion error does not occur """
     p1 = axl.MindReader()
     p2 = axl.Geller()
     match = axl.Match((p1, p2), turns=5, seed=4)
     match.play()
Ejemplo n.º 3
0
 def test_vs_geller(self):
     """Ensures that a recursion error does not occour """
     P1 = axelrod.MindReader()
     P2 = axelrod.Geller()
     P1.strategy(P2)
     P2.strategy(P1)
Ejemplo n.º 4
0
 def test_stochastic(self):
     self.assertTrue(axelrod.Geller().stochastic)