forked from blaa/PyGene
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
61 lines (43 loc) · 1.73 KB
/
CHANGELOG
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Changelog for pygene
July 25-26, 2011
- version 0.2.2a
- Fixed performance issue with calculating fitness. Fitness is now
assumed to be stable for a generated organism.
- prepare_fitness introduced to allow parallel processing
(demo_parallel.py)
- Genome and population parameters can be defined in external ini-like
config file.
- Minor performance/bugs fixes and whitespace cleanup
December 12, 2005
- version 0.2.1
- renamed Organism class to MendelOrganism, to indicate
that it is based on a 'double-helix' eukaryotic model
- created Organism class, which uses only single helix
(single genes, not gene pairs)
December 11, 2005
- version 0.2
- added genetic programming!!
- with working example
- changed mutation behaviour
- previously, child organisms were mutated in-place
- now, .mutate() on organisms returns a mutated copy
- changed crossover behaviour
- previously, crossover mating only returned one child
- now, crossover mating returns 2 children, so no
genetic material is lost
December 9, 2005
- version 0.1.1
- added more primitive Gene subclasses
- replaced typeless 'gene names' list in Organisms
with a .genome dict
- added XML dump capability for genes, organisms and
populations
- added 'incest' feature, where high-fitness parents
can stay in the population and mate with their
children
- added option for spontaneous appearance of new
random organisms
- simplified the creation of random organisms
December 6, 2005
- version 0.1
- first release