mtg-genetic-deckbuilding

Generating and improving Magic: The Gathering decks using a genetic algorithm
git clone https://kevincorvisier.fr/git/mtg-genetic-deckbuilding.git
Log | Files | Refs | LICENSE

population.properties (533B)


      1 # Percentage of a new generation copied from the previous generation's best individuals
      2 population.elitism-rate=0.2
      3 
      4 # Percentage of a new generation created from the card pool
      5 population.new-rate=0.2
      6 
      7 # Maximum population size
      8 population.maximum-size=300
      9 
     10 # How should the population be initialized, possible value: RANDOM, DISK
     11 population.initialization.type=RANDOM
     12 
     13 # For population.initialization.type=DISK, the directory the individuals will be loaded from
     14 population.initialization.disk.directories=example1/initial-population