public
Description: Using evolution to make computers draw.
Homepage:
Clone URL: git://github.com/ynd/genetic-drawing.git
100644 35 lines (19 sloc) 1.059 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
* Use JFreeChart to display data about convergence. This will allow me to
compare the results when I make changes.
 
x setStrictProgramCreation to true. This will require I add Null Terminals for
each return type in the program.
 
- Add new Genetic operators. First, new mutations and then new crossovers.
 
- Investigate why I get away with no clone method in my commands.
 
- Switch enconding of color in chromosomes to HSB
 
- Investigate why Roger Alsing's implementation is so much faster.
 
- Copy the parameters of the evolution from roger alsing.
 
- The terminals are all copied from one another. This creates grey colors.
 
- Add a timer to the graphical interface.
 
- Add the console ouput in a tab of the GUI
 
- Add more charts(depth vs generation, etc)
 
- Add something to inspect population
 
--------------------------------------------------------------------------------
 
x Add a mutation operator that randomly disables one polygon
 
- Add a mutation that translates one polygon
 
- Add mutation to rotate polygon
 
- Add mutation that swaps 2 polygons.