]> mj.ucw.cz Git - leo.git/blob - lab-evolution.h
Labelling: Bugfixes in get_closure
[leo.git] / lab-evolution.h
1 #ifndef _LEO_LABELLER_EVOLUTION_H
2 #define _LEO_LABELLER_EVOLUTION_H
3
4 struct individual
5 {
6   struct placement *placements;
7   struct map_part **map;
8   int penalty;
9 };
10
11 void evolution_conf(void);
12 void evolution_init(void);
13
14 void evolve(void);
15
16 void dump_individual(struct individual *individual);
17
18 #endif