Skip to content

Commit 86efe81

Browse files
committed
Merge pull request #507 from Axelrod-Python/37-results
37 - Prob end and rewrite of the results
2 parents 55628c7 + 402ae74 commit 86efe81

29 files changed

+9619
-1466
lines changed

axelrod/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from .match import Match
1111
from .strategies import *
1212
from .tournament_type import *
13-
from .tournament import Tournament
13+
from .tournament import Tournament, ProbEndTournament
1414
from .tournament_manager import TournamentManager
1515
from .tournament_manager_factory import TournamentManagerFactory
1616
from .result_set import ResultSet

axelrod/cooperation.py

Lines changed: 0 additions & 294 deletions
This file was deleted.

axelrod/eigen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def power_iteration(mat, initial):
4444
yield vec
4545

4646

47-
def principal_eigenvector(mat, maximum_iterations=None, max_error=1e-8):
47+
def principal_eigenvector(mat, maximum_iterations=1000, max_error=1e-3):
4848
"""
4949
Computes the (normalised) principal eigenvector of the given matrix.
5050

0 commit comments

Comments
 (0)