Skip to content

Commit

Permalink
Doubled standard max points setting
Browse files Browse the repository at this point in the history
Doubled the standard max points setting, and also updated some documentation to reflect that max genome size is now a 1/4 of max points
  • Loading branch information
julianoks committed Jun 1, 2016
1 parent e291328 commit 41f0f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clojush/pushgp/pushgp.clj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
:population-size 1000 ;; Number of individuals in the population
:max-generations 1001 ;; The maximum number of generations to run GP
:max-point-evaluations 10e100 ;; The limit for the number of point (instruction) evaluations to execute during the run
:max-points 100 ;; Maximum size of push programs and push code, as counted by points in the program. 1/4 this limit is used as the limit for sizes of Plush genomes.
:max-points 200 ;; Maximum size of push programs and push code, as counted by points in the program. 1/4 this limit is used as the limit for sizes of Plush genomes.
:max-genome-size-in-initial-program 50 ;; Maximum size of initial Plush genomes in generation 0. Keep in mind that genome lengths will otherwise be limited by 1/4 of :max-points
:evalpush-limit 150 ;; The number of Push instructions that can be evaluated before stopping evaluation
:evalpush-time-limit 0 ;; The time in nanoseconds that a program can evaluate before stopping, 0 means no time limit
Expand Down

0 comments on commit 41f0f3a

Please sign in to comment.