diff --git a/axelrod/strategies/frequency_analyzer.py b/axelrod/strategies/frequency_analyzer.py index 1003e9e88..57b77b2f1 100644 --- a/axelrod/strategies/frequency_analyzer.py +++ b/axelrod/strategies/frequency_analyzer.py @@ -59,7 +59,7 @@ def __init__(self) -> None: The probability to cooperate """ super().__init__() - self.minimum_cooperation_ratio = 0.8 + self.minimum_cooperation_ratio = 0.15 self.frequency_table = dict() self.last_sequence = '' self.current_sequence = '' @@ -88,8 +88,6 @@ def strategy(self, opponent: Player) -> Action: return C return D except: - if not self.history: - return C # React to the opponent's last move if opponent.history[-1] == D: return D