From 9a03874bdf943e3b337afe73ee58b3e9b1001f7c Mon Sep 17 00:00:00 2001
From: Lennart Eichhorn <lennart@madmanfred.com>
Date: Sun, 31 May 2020 17:13:55 +0200
Subject: [PATCH] Added a description for each visualizer to the config.

---
 src/main/resources/genetic.properties | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/genetic.properties b/src/main/resources/genetic.properties
index 27f864e..060915b 100644
--- a/src/main/resources/genetic.properties
+++ b/src/main/resources/genetic.properties
@@ -42,8 +42,13 @@
 
 
 ### Output settings
-    # Type(s) of visualization to enable, separated with comma [console / image / video]
-        visualizerType = log
+    # Type(s) of visualization to enable, separated with comma [console / image / video / log / generation]
+    # console = Print best candidate of each generation to stdout
+    # image = Save best candidate of each generation as image
+    # video = Generate a video from the created images. Requires image
+    # log = Generate tab seperated file with a bit of information about each generation
+    # generation = print a short overview about each generation to stdout
+        visualizerType = log,generation
     # Name of the job, filenames will be based on this name. If left empty a timestamp is used
         jobName = example1
     # Directory for the image sequence
-- 
GitLab