Skip to content

Commit ec02c5d

Browse files
committed
Fixed merge conflicts I missed.
1 parent 4f3a7f1 commit ec02c5d

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

axelrod/strategies/axelrod_second.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1851,7 +1851,6 @@ def __init__(self) -> None:
18511851

18521852
super().__init__(transitions=transitions, initial_state=0,
18531853
initial_action=C)
1854-
<<<<<<< HEAD
18551854

18561855

18571856
class Mikkelson(FSMPlayer):
@@ -1916,5 +1915,3 @@ def strategy(self, opponent: Player) -> Action:
19161915
if opponent.defections / turn >= 0.15:
19171916
return D
19181917
return C
1919-
=======
1920-
>>>>>>> 5ff131c1fb742deb01bb20cbda791c5d0f7346a1

axelrod/tests/strategies/test_axelrod_second.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,6 @@ def test_strategy(self):
11891189
actions = [(C, C)] * 5 + [(D, C)] + [(C, C)] * 4
11901190
actions += [(C, D)] + [(D, C), (D, C), (C, C), (C, C)] + [(C, C)]
11911191
self.versus_test(OddBall, expected_actions=actions)
1192-
<<<<<<< HEAD
11931192

11941193

11951194
class TestMikkelson(TestPlayer):
@@ -1244,5 +1243,3 @@ def test_strategy(self):
12441243
actions += [(C, D)] * 2
12451244
self.versus_test(Change_of_Heart, expected_actions=actions, attrs={"credit": -2})
12461245
# Still Cooperate, because Defect rate is low
1247-
=======
1248-
>>>>>>> 5ff131c1fb742deb01bb20cbda791c5d0f7346a1

0 commit comments

Comments
 (0)