Source code for axelrod.strategies.negation

from axelrod.action import Action
from axelrod.player import Player
from axelrod.random_ import random_choice

C, D = Action.C, Action.D


[docs]class Negation(Player): """ A player starts by cooperating or defecting randomly if it's their first move, then simply doing the opposite of the opponents last move thereafter. Names: - Negation: [PD2017]_ """ name = "Negation" classifier = { "memory_depth": 1, "stochastic": True, "makes_use_of": set(), "long_run_time": False, "inspects_source": False, "manipulates_source": False, "manipulates_state": False, }
[docs] def strategy(self, opponent: Player) -> Action: # Random first move if not self.history: return random_choice() # Act opposite of opponent otherwise return opponent.history[-1].flip()