diff --git a/EA/constants.py b/EA/constants.py index 2428123..f9062fc 100644 --- a/EA/constants.py +++ b/EA/constants.py @@ -6,7 +6,7 @@ POPSIZE = 10 DECKSIZE = 40 CROSSOVER_RATE = 0.7 -MUTATION_RATE = 0.2 +MUTATION_RATE = 0.5 NUMBER_OF_GENERATIONS = 200 MATCHES_PER_OPPONENT = '50' # must be string! CARD_POOL = read_card_pool('../AER-pool-2.txt') diff --git a/EA/main.py b/EA/main.py index f811e31..37a3814 100644 --- a/EA/main.py +++ b/EA/main.py @@ -148,4 +148,3 @@ def main(): except Exception as e: print("Unexpected error:\n{}".format(e)) send_mail(['sverrejb@stud.ntnu.no', 'knutfludal@gmail.com'], "The program has crashed:\n{}".format(e)) -