X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lab-evolution.c;h=8f91446c8caaf08635f95ae64eb5e75bc482f602;hb=refs%2Fheads%2Flabelling;hp=197862495d85feae26767a8578b2da4825a4f028;hpb=c343d14479295d517ae64ccee5a7e83d3ce0fc42;p=leo.git diff --git a/lab-evolution.c b/lab-evolution.c index 1978624..8f91446 100644 --- a/lab-evolution.c +++ b/lab-evolution.c @@ -78,6 +78,8 @@ static int conf_pop_size = 200, conf_fit_size = 1, conf_term_cond = TERM_COND_IT static double conf_penalty_bound = 100, conf_stagnation_bound = 10; static int conf_iteration_limit = 200; +static double conf_rank_distance_w = 1, conf_rank_overlap_w = 1, conf_rank_omittment_w = 1; + static int breed_pop_size; static int breed_rbest_size; @@ -113,6 +115,9 @@ static struct cf_section evolution_cf = { CF_DOUBLE("MutateRegenBound", &conf_mutate_regen_bound), CF_DOUBLE("MutateChvarBound", &conf_mutate_chvar_bound), CF_DOUBLE("ElitePopSize", &conf_elite_pop_size), + CF_DOUBLE("DistanceWeight", &conf_rank_distance_w), + CF_DOUBLE("OverlapWeight", &conf_rank_overlap_w), + CF_DOUBLE("OmittmentWeight", &conf_rank_omittment_w), CF_END } }; @@ -452,7 +457,7 @@ static struct individual **perform_crossover(struct individual *parent1, struct { DEBUG(dbg_breeding, VERBOSITY_PLACEMENT, "Creating symbol closure for placement %u\n", i); - struct placement **clos_symbols = get_closure(&(parent1->placements[i])); + struct placement **clos_symbols = get_closure(&(parent1->placements[i]), parent2); int x = randint(0, 2); if (x == 0) @@ -577,15 +582,15 @@ static void rank_population(void) DEBUG(dbg_rank, VERBOSITY_INDIVIDUAL, "Individual %d\n", i); population1[i]->penalty = 0; - penalty = individual_omittment(population1[i]); + penalty = conf_rank_omittment_w * individual_omittment(population1[i]); DEBUG(dbg_rank, VERBOSITY_INDIVIDUAL, "Increasing penalty by %d for omittment\n", penalty); population1[i]->penalty += penalty; - penalty = individual_overlap(population1[i]); + penalty = conf_rank_overlap_w * individual_overlap(population1[i]); DEBUG(dbg_rank, VERBOSITY_INDIVIDUAL, "Increasing penalty by %d for overlap\n", penalty); population1[i]->penalty += penalty; - penalty = individual_distances(population1[i]); + penalty = conf_rank_distance_w * individual_distances(population1[i]); DEBUG(dbg_rank, VERBOSITY_INDIVIDUAL, "Increasing penalty by %d for distances\n", penalty); population1[i]->penalty += penalty; }