X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=labeller.c;h=5348737b10899e4ebb3a23aa441a3dd570966f13;hb=de98805f4b165f7c56e794b0a3066112f65351d4;hp=84811ab630892958a9fb3363956d652ee1394216;hpb=613001e0149c8d7a8ed09e90a17e3adbadd721a4;p=leo.git diff --git a/labeller.c b/labeller.c index 84811ab..5348737 100644 --- a/labeller.c +++ b/labeller.c @@ -51,6 +51,9 @@ int dbg_movement = 0; int dbg_init = 0; int dbg_overlaps = 0; int dbg_rank = 0; +int dbg_evolution = 0; +int dbg_mutation = 0; +int dbg_breeding = 0; int page_width_int; int page_height_int; @@ -73,16 +76,20 @@ int conf_breed_pop_size_perc = 20; int conf_breed_perc = 50; // Percentage of new pop created by breeding bool conf_mutate_children = 1; -int conf_mutate_children_prob = 0.3; +double conf_mutate_children_prob = 0.3; -int conf_mutate_rbest_perc = 60; -int conf_mutate_pop_size_perc = 20; +double conf_mutate_rbest = 1; +double conf_mutate_pop_size = 0.9; -int conf_mutate_move_bound = 0.2; -int conf_mutate_regen_bound = 0.1; -int conf_mutate_chvar_bound = 0.1; +double conf_mutate_move_bound = 1.0; +double conf_mutate_regen_bound = 0.0; +double conf_mutate_chvar_bound = 0.0; -int conf_elite_perc = 5; +int mutate_pop_size; +int mutate_rbest_size; + +double conf_elite_pop_size = 0.1; +int elite_pop_size; double conf_max_section_length = 100; double conf_max_section_overlay = 10; @@ -94,9 +101,10 @@ int pop2_ind; int conf_part_size = 50; int move_min = 0; -int move_max = 1; +int move_max = 5; int num_requests = 0; +int num_placements = 0; int conf_map_part_width = 5; int conf_map_part_height = 5; @@ -144,6 +152,7 @@ void dump_longlines(void); void dump_linelabel_requests(void); void dump_individual(struct individual *individual); void print_label(struct symbol *sym); +void dump_penalties(struct individual **population); double gen_movement(void); double gen_movement_uniform(void); @@ -169,14 +178,14 @@ struct map_part **get_parts(struct placement *symbol, struct individual *individ int randint(int min, int max); -struct placement **get_closure(struct placement *placement, struct individual *parent1, struct individual *parent2); -void copy_symbols(struct placement **closure, struct individual *parent, struct individual *child); +struct placement **get_closure(struct placement *placement); +void copy_symbols(struct placement **closure, struct individual *parent, struct individual *child, bool **processed_ptr); void move_symbol(struct placement *p); void move_symbol_point(struct placement *p); void move_symbol_segment(struct placement *p); struct placement **get_overlapping(struct placement *p); -void filter(struct placement **list, bool *pred); +struct placement **filter(struct placement **list, bool **pred_ptr); int flip(int a, int b); double randdouble(void); @@ -244,6 +253,8 @@ void labeller_init(void) void make_bitmap(struct variant *v, struct symbol *sym) { + v->offset_x = v->offset_y = 0; + switch (sym->type) { case SYMBOLIZER_POINT: @@ -317,20 +328,14 @@ void labeller_add_point(struct symbol *sym, struct osm_object *object, z_index_t struct osm_node *n = (struct osm_node *) object; // FIXME: Compiler warning r->x = n->x; r->y = n->y; + make_bitmap(v, sym); switch (sym->type) { case SYMBOLIZER_ICON: - make_bitmap_icon(v, (struct sym_icon *) sym); + // FIXME: Really? r->x = ((struct sym_icon *)sym)->sir.x; r->y = ((struct sym_icon *)sym)->sir.y; break; - case SYMBOLIZER_POINT: - make_bitmap_point(v, (struct sym_point *) sym); - break; - case SYMBOLIZER_TEXT: ; - struct sym_text *st = (struct sym_text *) sym; - struct osm_node *n = (struct osm_node *) object; - make_bitmap_label(v, st); default: // FIXME return; @@ -382,21 +387,7 @@ void labeller_add_arealabel(struct symbol *sym, struct osm_object *o, z_index_t GARY_INIT(r->request.variants, 0); struct variant *v = GARY_PUSH(r->request.variants); - switch (sym->type) - { - case SYMBOLIZER_ICON: - if (dbg_requests) - printf("DEBUG: Icon label\n"); - make_bitmap_icon(v, (struct sym_icon *) sym); - break; - case SYMBOLIZER_TEXT: - if (dbg_requests) - printf("DEBUG: Text label\n"); - make_bitmap_label(v, (struct sym_text *) sym); - default: - // FIXME - ; - } + make_bitmap(v, sym); } void make_graph(void) @@ -830,8 +821,7 @@ void make_segments(void) rs->x2 = e->n2->o->x; rs->y2 = e->n2->o->y; - // FIXME: Set text rotation - rs->angle = atan2(rs->x2 - rs->x1, rs->y2 - rs->y1); + rs->slope = (rs->y2 - rs->y1) / (rs->x2 - rs->x1); rs->zindex = e->zindex; cur_length += e->length; @@ -1033,7 +1023,14 @@ if (dbg_plan) ASSERT(s->type != SYMBOLIZER_INVALID); } } +} +void dump_penalties(struct individual **population) +{ + for (int i=0; ipenalty); + } } void labeller_label(void) @@ -1048,20 +1045,62 @@ printf("Having %u point requests, %u line requests and %u area requests\n", GARY GARY_INIT(population1, conf_pop_size); GARY_INIT(population2, conf_pop_size); make_population(); + rank_population(); + qsort(population1, conf_pop_size, sizeof(struct individual *), cmp_individual); + + if (dbg_evolution) + dump_penalties(population1); + + + breed_pop_size = conf_breed_pop_size * conf_pop_size; + breed_rbest_size = conf_breed_rbest * conf_pop_size; + if (dbg_evolution) + { + printf("Breeding parameters:\n"); + printf(" %d individuals are created\n", breed_pop_size); + printf(" %d best individuals in old population are considered\n", breed_rbest_size); + } + + mutate_pop_size = conf_mutate_pop_size * conf_pop_size; + mutate_rbest_size = conf_mutate_rbest * conf_pop_size; + if (dbg_evolution) + { + printf("Mutation parameters:\n"); + printf(" %d individuals are created\n", mutate_pop_size); + printf(" %d best individuals in old population are considered\n", mutate_rbest_size); + } - printf("Dealing with %d requests\n", num_requests); + elite_pop_size = conf_elite_pop_size * conf_pop_size; + if (dbg_evolution) + { + printf("Elitism parameters:\n"); + printf(" %d best individuals are copied\n", elite_pop_size); + } -/* while (! shall_terminate()) { iteration++; + if (dbg_evolution) + printf("*** Iteration %d ***\n", iteration); + + breed(); + mutate(); + elite(); struct individual **swp = population1; population1 = population2; population2 = swp; pop2_ind = 0; + + if (dbg_evolution) + dump_penalties(population1); + + rank_population(); + qsort(population1, conf_pop_size, sizeof(struct individual *), cmp_individual); + + if (dbg_evolution) + dump_penalties(population1); } -*/ plan_individual(population1[0]); @@ -1078,6 +1117,7 @@ void make_population(void) { for (int i=0; iplacements)); for (uns i=0; iplacements); i++) { - printf("%dth placement out of %d\n", i, num_requests); - if (! parent1->placements[i].processed) + if (! processed[parent1->placements[i].ind]) { - struct placement **clos_symbols = get_closure(&(parent1->placements[i]), parent1, parent2); + if (dbg_breeding) + printf("Creating symbol closure for placement %u\n", i); + + struct placement **clos_symbols = get_closure(&(parent1->placements[i])); int x = randint(1, 2); if (x == 1) { - copy_symbols(clos_symbols, parent1, child1); - copy_symbols(clos_symbols, parent2, child2); + if (dbg_breeding) + printf("Copying parent->child 1->1 and 2->2\n"); + copy_symbols(clos_symbols, parent1, child1, &processed); + copy_symbols(clos_symbols, parent2, child2, &processed); } else { - copy_symbols(clos_symbols, parent2, child1); - copy_symbols(clos_symbols, parent1, child2); + if (dbg_breeding) + printf("Copying parent->child 2->1 and 1->2\n"); + copy_symbols(clos_symbols, parent2, child1, &processed); + copy_symbols(clos_symbols, parent1, child2, &processed); } - printf("Symbols copied; %lld\n", GARY_SIZE(clos_symbols)); + GARY_FREE(clos_symbols); } + } - if (conf_mutate_children) - { - if (randint(1, 1000) < conf_mutate_children_prob * 1000) perform_mutation(child1); - if (randint(1, 1000) < conf_mutate_children_prob * 1000) perform_mutation(child2); - } + GARY_FREE(processed); + + if (conf_mutate_children) + { + if (randint(1, 1000) < conf_mutate_children_prob * 1000) perform_mutation(child1); + if (randint(1, 1000) < conf_mutate_children_prob * 1000) perform_mutation(child2); } buffer[0] = child1; @@ -1216,12 +1250,16 @@ struct individual **perform_crossover(struct individual *parent1, struct individ void mutate(void) { - int i = 0; - int conf_mutate_pop_size = conf_mutate_pop_size_perc * conf_pop_size; - while (i < conf_mutate_rbest_perc * conf_pop_size) + for (int i=0; i < mutate_pop_size; i++) { - int ind = randint(1, conf_mutate_pop_size); - copy_individual(population2[pop2_ind], population1[ind]); + if (dbg_mutation) + printf("%d\n", i); + int ind = randint(1, mutate_rbest_size); + if (dbg_mutation) + printf("Mutating %d-th individual of original population\n", ind); + copy_individual(population1[ind], population2[pop2_ind]); + if (dbg_mutation) + printf("Individual %d in pop2 inited from individual %d in pop1\n", pop2_ind, ind); perform_mutation(population2[pop2_ind]); pop2_ind++; } @@ -1231,11 +1269,13 @@ void perform_mutation(struct individual *individual) { for (uns i=0; iplacements); i++) { - int x = randint(1, 1000); - int acc = 0; + double x = randdouble(); + double acc = 0; if (x <= acc + conf_mutate_move_bound) { + if (dbg_mutation) + printf("Mutation: Moving symbol in placement %u\n", i); move_symbol(&(individual->placements[i])); continue; } @@ -1250,9 +1290,20 @@ void perform_mutation(struct individual *individual) if (x <= acc + conf_mutate_chvar_bound) { - if (0) // if num_variants > 1 + struct placement *p = &(individual->placements[i]); + switch (p->request->type) { - // FIXME: assign new variant + case REQUEST_POINT: + case REQUEST_SEGMENT: + case REQUEST_AREA: + // Does nothing when there are 0 variants... does it mind? + p->variant_used = randint(0, GARY_SIZE(p->request->variants) - 1); + break; + case REQUEST_SECTION: + p->variant_used = randint(0, GARY_SIZE(((struct request_section *) p->request)->segments)-1); + break; + default: + ; } } } @@ -1260,9 +1311,9 @@ void perform_mutation(struct individual *individual) void elite(void) { - for (int i=0; ix) / conf_map_part_width; - int x_max = min2(page_width_int, (p->x + v.width + conf_map_part_width - 1)) / conf_map_part_width; + // CHECK ME: Is rounding needed? + int x_max = min2(page_width_int, (p->x + v.width)) / conf_map_part_width; int y_min = max2(0, p->y) / conf_map_part_height; - int y_max = min2(page_height_int, (p->y + v.height + conf_map_part_height - 1)) / conf_map_part_height; + // CHECK ME: Is rounding needed? + int y_max = min2(page_height_int, (p->y + v.height)) / conf_map_part_height; if (dbg_map_parts) printf("Cells between [%d; %d] and [%d; %d] generated\n", x_min, y_min, x_max, y_max); @@ -1431,7 +1484,8 @@ void update_map_parts(struct placement *p) while (ml) { struct map_placement *mp = ml->mp; - mp->prev = mp->next; + + mp->prev->next = mp->next; if (mp->next) mp->next->prev = mp->prev; free(mp); @@ -1440,6 +1494,7 @@ void update_map_parts(struct placement *p) ml = ml->next; free(tmp); } + p->map_links = NULL; struct map_part **parts = get_map_parts(p); if (parts == NULL) return; @@ -1450,6 +1505,7 @@ void update_map_parts(struct placement *p) mp->placement = p; mp->next = parts[i]->placement->next; + mp->prev = parts[i]->placement; parts[i]->placement->next = mp; if (mp->next) mp->next->prev = mp; @@ -1490,7 +1546,7 @@ void gen_coords(struct placement *p) double gen_movement(void) { - double m = (random() % 1000000) / 10000; + double m = (random() % 100000) / 10000; m = pow(m, 1.0/3) * flip(1, -1); if (dbg_movement) printf("Movement %.2f\n", m); @@ -1554,12 +1610,12 @@ int randint(int min, int max) return (r * (max - min)); } -struct placement **get_closure(struct placement *placement, struct individual *parent1, struct individual *parent2 UNUSED) +struct placement **get_closure(struct placement *placement) { - printf("Getting closure\n"); struct placement **closure; GARY_INIT(closure, 0); - bool *chosen = malloc(GARY_SIZE(parent1->placements) * sizeof(bool)); + bool *chosen = malloc(GARY_SIZE(placement->individual->placements) * sizeof(bool)); + for (uns i=0; iindividual->placements); i++) { chosen[i] = 0; } chosen[placement->request->ind] = 1; struct placement **p = GARY_PUSH(closure); *p = placement; @@ -1567,13 +1623,28 @@ struct placement **get_closure(struct placement *placement, struct individual *p uns first = 0; while (first < GARY_SIZE(closure)) { - printf("Iterating, first is %d\n", first); + if (dbg_breeding) + printf("Iterating, first is %d of current %u\n", first, GARY_SIZE(closure)); struct placement **overlapping = get_overlapping(placement); - filter(overlapping, chosen); + if (! overlapping) { first++; continue; } + + struct placement **filtered = filter(overlapping, &chosen); + if (dbg_breeding) + printf("There are %u new overlapping symbols\n", GARY_SIZE(filtered)); + GARY_FREE(overlapping); + overlapping = filtered; for (uns j=0; jrequest->ind] = 1; + if (! chosen[overlapping[j]->request->ind]) + { + if (overlaps(*p, overlapping[j])) + { + p = GARY_PUSH(closure); *p = overlapping[j]; + if (dbg_breeding) + printf("Adding placement of request %d (in fact at [%.2f; %.2f] of size %d x %d)\n", overlapping[j]->request->ind, overlapping[j]->x, overlapping[j]->y, overlapping[j]->request->variants[overlapping[j]->variant_used].width, overlapping[j]->request->variants[overlapping[j]->variant_used].height); + chosen[overlapping[j]->request->ind] = 1; + } + } } GARY_FREE(overlapping); first++; @@ -1582,15 +1653,20 @@ struct placement **get_closure(struct placement *placement, struct individual *p return closure; } -void copy_symbols(struct placement **closure, struct individual *parent, struct individual *child) +void copy_symbols(struct placement **closure, struct individual *parent, struct individual *child, bool **processed_ptr) { - //printf("%d\n", child->penalty); - //printf("Closure size: %lld\n", GARY_SIZE(closure)); + bool *processed = *processed_ptr; + if (dbg_breeding) + printf("Will copy %u symbols\n", GARY_SIZE(closure)); + for (uns i=0; irequest->ind; + processed[closure[i]->ind] = 1; + int ind = closure[i]->ind; child->placements[ind] = parent->placements[ind]; child->placements[ind].processed = 0; + child->placements[ind].map_links = NULL; + update_map_parts(&child->placements[ind]); } } @@ -1653,6 +1729,7 @@ void hide_segment_labels(struct individual *individual) void init_placement(struct placement *p, struct individual *individual, struct request *r) { // FIXME + p->ind = num_placements++; p->request = r; p->processed = 0; p->x = p->y = 0; // To prevent valgrind from complaining @@ -1712,16 +1789,51 @@ void init_individual(struct individual *i) printf("Individual inited, has %u map parts\n", GARY_SIZE(i->map)); } -struct placement **get_overlapping(struct placement *p UNUSED) +struct placement **get_overlapping(struct placement *p) { struct placement **buffer; GARY_INIT(buffer, 0); + + struct map_part **parts = get_map_parts(p); + if (! parts) return NULL; + + for (uns i=0; iplacement->next; + while (mp) + { + if (p->variant_used >= 0) + { + struct placement **p = GARY_PUSH(buffer); + *p = mp->placement; + } + mp = mp->next; + } + } + GARY_FREE(parts); + + if (dbg_map_parts) + printf("Returning %u potentially overlapping placements\n", GARY_SIZE(buffer)); + return buffer; } -void filter(struct placement **list UNUSED, bool *pred UNUSED) +struct placement **filter(struct placement **list, bool **pred_ptr) { - // FIXME + bool *pred = *pred_ptr; // As GARY can't be passed directly + struct placement **filtered; + GARY_INIT(filtered, 0); + + for (uns i=0; irequest->ind]) + continue; + + struct placement **p = GARY_PUSH(filtered); + *p = list[i]; + } + + return filtered; } int flip(int a, int b)