evosynth 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/INSTALL +74 -0
- data/LICENSE +22 -0
- data/README +57 -0
- data/Rakefile +132 -0
- data/TODO +88 -0
- data/docs/FEATURES +111 -0
- data/docs/rdoc/classes/EvoSynth.html +2643 -0
- data/docs/rdoc/classes/EvoSynth/Adjustments.html +119 -0
- data/docs/rdoc/classes/EvoSynth/Adjustments/AdaptiveAdjustment.html +264 -0
- data/docs/rdoc/classes/EvoSynth/Adjustments/PredifinedAdjustment.html +235 -0
- data/docs/rdoc/classes/EvoSynth/ArrayGenome.html +313 -0
- data/docs/rdoc/classes/EvoSynth/BinaryGenome.html +518 -0
- data/docs/rdoc/classes/EvoSynth/Decoder.html +286 -0
- data/docs/rdoc/classes/EvoSynth/Evaluator.html +466 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers.html +469 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/AdaptiveES.html +448 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/BalancedCoevolutionary.html +439 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/DerandomizedES.html +450 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/Evolver.html +125 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/GeneticAlgorithm.html +467 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/Hillclimber.html +343 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch.html +422 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/GreatDelugeAcceptance.html +287 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/HillclimberAcceptance.html +197 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/RecordToRecordTravelAcceptance.html +296 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/SimulatedAnnealingAcceptance.html +286 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/ThresholdAcceptance.html +287 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/MemeticAlgorithm.html +441 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/PopulationHillclimber.html +375 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/ProfileUsingEvolver.html +205 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/RoundRobinCoevolutionary.html +383 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/RunnableEvolver.html +279 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/RunnableEvolver/Goal.html +193 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/SelfAdaptiveES.html +394 -0
- data/docs/rdoc/classes/EvoSynth/Evolvers/SteadyStateGA.html +390 -0
- data/docs/rdoc/classes/EvoSynth/GlobalRecombinations.html +119 -0
- data/docs/rdoc/classes/EvoSynth/GlobalRecombinations/GlobalArithmeticCrossover.html +204 -0
- data/docs/rdoc/classes/EvoSynth/GlobalRecombinations/GlobalUniformCrossover.html +203 -0
- data/docs/rdoc/classes/EvoSynth/Individual.html +561 -0
- data/docs/rdoc/classes/EvoSynth/MaximizingIndividual.html +266 -0
- data/docs/rdoc/classes/EvoSynth/MetaOperators.html +149 -0
- data/docs/rdoc/classes/EvoSynth/MetaOperators/ConditionalCombinedOperator.html +278 -0
- data/docs/rdoc/classes/EvoSynth/MetaOperators/ProportionalCombinedOperator.html +285 -0
- data/docs/rdoc/classes/EvoSynth/MetaOperators/SequentialCombinedOperator.html +290 -0
- data/docs/rdoc/classes/EvoSynth/MinimizingIndividual.html +266 -0
- data/docs/rdoc/classes/EvoSynth/Mutations.html +251 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/BinaryMutation.html +336 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/EfficientBinaryMutation.html +345 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/ExchangeMutation.html +320 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/Functions.html +160 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/GaussMutation.html +311 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/Identity.html +220 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/InversionMutation.html +231 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/MixingMutation.html +233 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/OneGeneFlipping.html +295 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/SelfAdaptiveGaussMutation.html +347 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/ShiftingMutation.html +229 -0
- data/docs/rdoc/classes/EvoSynth/Mutations/UniformRealMutation.html +264 -0
- data/docs/rdoc/classes/EvoSynth/Output.html +212 -0
- data/docs/rdoc/classes/EvoSynth/Output/CSVExporter.html +211 -0
- data/docs/rdoc/classes/EvoSynth/Output/ConsoleWriter.html +194 -0
- data/docs/rdoc/classes/EvoSynth/Output/GnuPlotExporter.html +235 -0
- data/docs/rdoc/classes/EvoSynth/Output/GruffExporter.html +219 -0
- data/docs/rdoc/classes/EvoSynth/Output/Logger.html +345 -0
- data/docs/rdoc/classes/EvoSynth/Population.html +430 -0
- data/docs/rdoc/classes/EvoSynth/Problems.html +159 -0
- data/docs/rdoc/classes/EvoSynth/Problems/BinaryBenchmarkFuntions.html +258 -0
- data/docs/rdoc/classes/EvoSynth/Problems/FloatBenchmarkFuntions.html +406 -0
- data/docs/rdoc/classes/EvoSynth/Problems/GraphColouring.html +265 -0
- data/docs/rdoc/classes/EvoSynth/Problems/TSP.html +327 -0
- data/docs/rdoc/classes/EvoSynth/Profile.html +324 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations.html +251 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations/ArithmeticCrossover.html +286 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations/EdgeRecombination.html +203 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations/Identity.html +192 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations/KPointCrossover.html +286 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations/OnePointCrossover.html +211 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations/OrderedRecombination.html +206 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations/PartiallyMappedCrossover.html +206 -0
- data/docs/rdoc/classes/EvoSynth/Recombinations/UniformCrossover.html +208 -0
- data/docs/rdoc/classes/EvoSynth/Selections.html +174 -0
- data/docs/rdoc/classes/EvoSynth/Selections/FitnessProportionalSelection.html +206 -0
- data/docs/rdoc/classes/EvoSynth/Selections/Identity.html +200 -0
- data/docs/rdoc/classes/EvoSynth/Selections/NStageTournamentSelection.html +273 -0
- data/docs/rdoc/classes/EvoSynth/Selections/RandomSelection.html +192 -0
- data/docs/rdoc/classes/EvoSynth/Selections/RouletteWheelSelection.html +212 -0
- data/docs/rdoc/classes/EvoSynth/Selections/SelectBest.html +206 -0
- data/docs/rdoc/classes/EvoSynth/Selections/TournamentSelection.html +274 -0
- data/docs/rdoc/classes/Examples.html +268 -0
- data/docs/rdoc/classes/Examples/Ants.html +198 -0
- data/docs/rdoc/classes/Examples/Ants/AntMutation.html +381 -0
- data/docs/rdoc/classes/Examples/Ants/Pheromon.html +256 -0
- data/docs/rdoc/classes/Examples/CCGAExample.html +305 -0
- data/docs/rdoc/classes/Examples/CCGAExample/CCGA2BenchmarkEvaluator.html +165 -0
- data/docs/rdoc/classes/Examples/CCGAExample/CCGABenchmarkEvaluator.html +242 -0
- data/docs/rdoc/classes/Examples/CCGAExample/CCGAIndividual.html +181 -0
- data/docs/rdoc/classes/Examples/CMBExample.html +215 -0
- data/docs/rdoc/classes/Examples/CMBExample/CMBEvaluator.html +212 -0
- data/docs/rdoc/classes/Examples/EsExample.html +270 -0
- data/docs/rdoc/classes/Examples/EsExample/BenchmarkEvaluator.html +162 -0
- data/docs/rdoc/classes/Examples/Exporter.html +208 -0
- data/docs/rdoc/classes/Examples/Exporter/ExporterEvaluator.html +196 -0
- data/docs/rdoc/classes/Examples/GraphColouring.html +199 -0
- data/docs/rdoc/classes/Examples/Hacking.html +147 -0
- data/docs/rdoc/classes/Examples/Hacking/HackingEvaluator.html +169 -0
- data/docs/rdoc/classes/Examples/LocalSearch.html +294 -0
- data/docs/rdoc/classes/Examples/LocalSearch/LocalSearchEvaluator.html +198 -0
- data/docs/rdoc/classes/Examples/MaxOnes.html +187 -0
- data/docs/rdoc/classes/Examples/MaxOnes/MaxOnesEvaluator.html +170 -0
- data/docs/rdoc/classes/Examples/Partitionproblem.html +201 -0
- data/docs/rdoc/classes/Examples/Partitionproblem/PartitionEvaluator.html +164 -0
- data/docs/rdoc/classes/Examples/Partitionproblem/PartitionIndividual.html +334 -0
- data/docs/rdoc/classes/Examples/Partitionproblem/PartitionMutation.html +199 -0
- data/docs/rdoc/classes/Examples/Partitionproblem/Testdata.html +294 -0
- data/docs/rdoc/classes/Examples/SPk.html +139 -0
- data/docs/rdoc/classes/Examples/SPk/SPkFitnessEvaluator.html +299 -0
- data/docs/rdoc/classes/Examples/TSP.html +187 -0
- data/docs/rdoc/created.rid +1 -0
- data/docs/rdoc/files/INSTALL.html +253 -0
- data/docs/rdoc/files/LICENSE.html +119 -0
- data/docs/rdoc/files/README.html +235 -0
- data/docs/rdoc/files/docs/FEATURES.html +428 -0
- data/docs/rdoc/files/examples/ants_rb.html +133 -0
- data/docs/rdoc/files/examples/ccga_example_rb.html +129 -0
- data/docs/rdoc/files/examples/cmb_example_rb.html +129 -0
- data/docs/rdoc/files/examples/evolution_strategies_rb.html +129 -0
- data/docs/rdoc/files/examples/exporter_rb.html +129 -0
- data/docs/rdoc/files/examples/graph_colouring_rb.html +129 -0
- data/docs/rdoc/files/examples/hacking_rb.html +129 -0
- data/docs/rdoc/files/examples/local_search_rb.html +129 -0
- data/docs/rdoc/files/examples/max_ones_rb.html +129 -0
- data/docs/rdoc/files/examples/partition_rb.html +131 -0
- data/docs/rdoc/files/examples/spk_rb.html +129 -0
- data/docs/rdoc/files/examples/tsp_rb.html +131 -0
- data/docs/rdoc/files/lib/evosynth/core/array_genome_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/core/binary_genome_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/core/evaluator_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/core/individual_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/core/maximizing_individual_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/core/minimizing_individual_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/core/population_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/core/profile_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/core/randomizer_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/core_rb.html +145 -0
- data/docs/rdoc/files/lib/evosynth/decoder/binary_to_real_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/decoder/gray_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/decoder_rb.html +131 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/basic/genetic_algorithm_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/basic/hillclimber_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/basic/memetic_algorithm_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/basic/population_hillclimber_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/basic/steady_state_ga_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/coevolutionary/balanced_coevolutionary_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/coevolutionary/round_robin_coevolutionary_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/elitism_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/adaptive_es_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/derandomized_es_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/selfadaptive_es_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/evolver_rb.html +131 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_great_deluge_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_hillclimber_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_record_to_record_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_simulated_annealing_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_threshold_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/local_search/local_search_rb.html +137 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/profile_using_evolver_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/evolvers/runnable_evolver_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/evolvers_rb.html +153 -0
- data/docs/rdoc/files/lib/evosynth/operators/adjustments/adaptive_adjustment_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/adjustments/predefined_adjustment_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/adjustments_rb.html +131 -0
- data/docs/rdoc/files/lib/evosynth/operators/global_recombinations/global_arithmetic_crossover_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/global_recombinations/global_uniform_crossover_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/global_recombinations_rb.html +131 -0
- data/docs/rdoc/files/lib/evosynth/operators/meta_operators/conditional_combined_operator_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/meta_operators/proportional_combined_operator_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/meta_operators/sequential_combined_operator_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/meta_operators_rb.html +133 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/binary_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/efficient_binary_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/exchange_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/flip_functions_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/gauss_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/identity_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/inversion_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/mixing_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/one_gene_flipping_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/self_adaptive_gauss_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/shifting_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations/uniform_real_mutation_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/mutations_rb.html +151 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations/arithmetic_crossover_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations/edge_recombination_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations/identity_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations/k_point_crossover_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations/one_point_crossover_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations/ordered_recombination_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations/partially_mapped_crossover_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations/uniform_crossover_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/recombinations_rb.html +143 -0
- data/docs/rdoc/files/lib/evosynth/operators/selections/best_selection_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/selections/fitness_proportional_selection_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/selections/identity_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/selections/n_stage_tournament_selection_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/selections/random_selection_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/selections/roulette_wheel_selection_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/selections/tournament_selection_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/operators/selections_rb.html +141 -0
- data/docs/rdoc/files/lib/evosynth/operators_rb.html +139 -0
- data/docs/rdoc/files/lib/evosynth/output/console_writer_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/output/exporter/csv_exporter_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/output/exporter/gnuplot_exporter_rb.html +131 -0
- data/docs/rdoc/files/lib/evosynth/output/exporter/gruff_exporter_rb.html +131 -0
- data/docs/rdoc/files/lib/evosynth/output/exporter_rb.html +133 -0
- data/docs/rdoc/files/lib/evosynth/output/factory_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/output/logger_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/output_rb.html +135 -0
- data/docs/rdoc/files/lib/evosynth/problems/binary_benchmark_functions_rb.html +119 -0
- data/docs/rdoc/files/lib/evosynth/problems/float_benchmark_functions_rb.html +1630 -0
- data/docs/rdoc/files/lib/evosynth/problems/graph_colouring_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/problems/tsp_rb.html +129 -0
- data/docs/rdoc/files/lib/evosynth/problems_rb.html +135 -0
- data/docs/rdoc/files/lib/evosynth_rb.html +139 -0
- data/docs/rdoc/fr_class_index.html +245 -0
- data/docs/rdoc/fr_file_index.html +233 -0
- data/docs/rdoc/fr_method_index.html +661 -0
- data/docs/rdoc/index.html +21 -0
- data/docs/rdoc/rdoc-style.css +299 -0
- data/examples/ants.rb +237 -0
- data/examples/ccga_example.rb +150 -0
- data/examples/cmb_example.rb +117 -0
- data/examples/evolution_strategies.rb +84 -0
- data/examples/exporter.rb +90 -0
- data/examples/graph_colouring.rb +72 -0
- data/examples/hacking.rb +62 -0
- data/examples/local_search.rb +109 -0
- data/examples/max_ones.rb +83 -0
- data/examples/partition.rb +172 -0
- data/examples/spk.rb +106 -0
- data/examples/tsp.rb +83 -0
- data/lib/evosynth.rb +32 -0
- data/lib/evosynth/core.rb +33 -0
- data/lib/evosynth/core/array_genome.rb +77 -0
- data/lib/evosynth/core/binary_genome.rb +156 -0
- data/lib/evosynth/core/evaluator.rb +109 -0
- data/lib/evosynth/core/individual.rb +92 -0
- data/lib/evosynth/core/maximizing_individual.rb +71 -0
- data/lib/evosynth/core/minimizing_individual.rb +71 -0
- data/lib/evosynth/core/population.rb +120 -0
- data/lib/evosynth/core/profile.rb +110 -0
- data/lib/evosynth/core/randomizer.rb +73 -0
- data/lib/evosynth/decoder.rb +33 -0
- data/lib/evosynth/decoder/binary_to_real.rb +57 -0
- data/lib/evosynth/decoder/gray.rb +54 -0
- data/lib/evosynth/evolvers.rb +41 -0
- data/lib/evosynth/evolvers/basic/genetic_algorithm.rb +92 -0
- data/lib/evosynth/evolvers/basic/hillclimber.rb +64 -0
- data/lib/evosynth/evolvers/basic/memetic_algorithm.rb +111 -0
- data/lib/evosynth/evolvers/basic/population_hillclimber.rb +69 -0
- data/lib/evosynth/evolvers/basic/steady_state_ga.rb +85 -0
- data/lib/evosynth/evolvers/coevolutionary/balanced_coevolutionary.rb +125 -0
- data/lib/evosynth/evolvers/coevolutionary/round_robin_coevolutionary.rb +87 -0
- data/lib/evosynth/evolvers/elitism.rb +108 -0
- data/lib/evosynth/evolvers/evolution_strategies/adaptive_es.rb +104 -0
- data/lib/evosynth/evolvers/evolution_strategies/derandomized_es.rb +120 -0
- data/lib/evosynth/evolvers/evolution_strategies/selfadaptive_es.rb +82 -0
- data/lib/evosynth/evolvers/evolver.rb +43 -0
- data/lib/evosynth/evolvers/local_search/acceptance_great_deluge.rb +60 -0
- data/lib/evosynth/evolvers/local_search/acceptance_hillclimber.rb +47 -0
- data/lib/evosynth/evolvers/local_search/acceptance_record_to_record.rb +69 -0
- data/lib/evosynth/evolvers/local_search/acceptance_simulated_annealing.rb +59 -0
- data/lib/evosynth/evolvers/local_search/acceptance_threshold.rb +60 -0
- data/lib/evosynth/evolvers/local_search/local_search.rb +74 -0
- data/lib/evosynth/evolvers/profile_using_evolver.rb +77 -0
- data/lib/evosynth/evolvers/runnable_evolver.rb +89 -0
- data/lib/evosynth/operators.rb +30 -0
- data/lib/evosynth/operators/adjustments.rb +26 -0
- data/lib/evosynth/operators/adjustments/adaptive_adjustment.rb +55 -0
- data/lib/evosynth/operators/adjustments/predefined_adjustment.rb +46 -0
- data/lib/evosynth/operators/global_recombinations.rb +26 -0
- data/lib/evosynth/operators/global_recombinations/global_arithmetic_crossover.rb +50 -0
- data/lib/evosynth/operators/global_recombinations/global_uniform_crossover.rb +49 -0
- data/lib/evosynth/operators/meta_operators.rb +36 -0
- data/lib/evosynth/operators/meta_operators/conditional_combined_operator.rb +65 -0
- data/lib/evosynth/operators/meta_operators/proportional_combined_operator.rb +84 -0
- data/lib/evosynth/operators/meta_operators/sequential_combined_operator.rb +73 -0
- data/lib/evosynth/operators/mutations.rb +47 -0
- data/lib/evosynth/operators/mutations/binary_mutation.rb +100 -0
- data/lib/evosynth/operators/mutations/efficient_binary_mutation.rb +105 -0
- data/lib/evosynth/operators/mutations/exchange_mutation.rb +107 -0
- data/lib/evosynth/operators/mutations/flip_functions.rb +45 -0
- data/lib/evosynth/operators/mutations/gauss_mutation.rb +65 -0
- data/lib/evosynth/operators/mutations/identity.rb +62 -0
- data/lib/evosynth/operators/mutations/inversion_mutation.rb +73 -0
- data/lib/evosynth/operators/mutations/mixing_mutation.rb +75 -0
- data/lib/evosynth/operators/mutations/one_gene_flipping.rb +89 -0
- data/lib/evosynth/operators/mutations/self_adaptive_gauss_mutation.rb +73 -0
- data/lib/evosynth/operators/mutations/shifting_mutation.rb +88 -0
- data/lib/evosynth/operators/mutations/uniform_real_mutation.rb +59 -0
- data/lib/evosynth/operators/recombinations.rb +48 -0
- data/lib/evosynth/operators/recombinations/arithmetic_crossover.rb +67 -0
- data/lib/evosynth/operators/recombinations/edge_recombination.rb +108 -0
- data/lib/evosynth/operators/recombinations/identity.rb +42 -0
- data/lib/evosynth/operators/recombinations/k_point_crossover.rb +81 -0
- data/lib/evosynth/operators/recombinations/one_point_crossover.rb +56 -0
- data/lib/evosynth/operators/recombinations/ordered_recombination.rb +75 -0
- data/lib/evosynth/operators/recombinations/partially_mapped_crossover.rb +102 -0
- data/lib/evosynth/operators/recombinations/uniform_crossover.rb +54 -0
- data/lib/evosynth/operators/selections.rb +31 -0
- data/lib/evosynth/operators/selections/best_selection.rb +54 -0
- data/lib/evosynth/operators/selections/fitness_proportional_selection.rb +83 -0
- data/lib/evosynth/operators/selections/identity.rb +48 -0
- data/lib/evosynth/operators/selections/n_stage_tournament_selection.rb +84 -0
- data/lib/evosynth/operators/selections/random_selection.rb +44 -0
- data/lib/evosynth/operators/selections/roulette_wheel_selection.rb +54 -0
- data/lib/evosynth/operators/selections/tournament_selection.rb +71 -0
- data/lib/evosynth/output.rb +28 -0
- data/lib/evosynth/output/console_writer.rb +45 -0
- data/lib/evosynth/output/exporter.rb +27 -0
- data/lib/evosynth/output/exporter/csv_exporter.rb +62 -0
- data/lib/evosynth/output/exporter/gnuplot_exporter.rb +81 -0
- data/lib/evosynth/output/exporter/gruff_exporter.rb +70 -0
- data/lib/evosynth/output/factory.rb +38 -0
- data/lib/evosynth/output/logger.rb +83 -0
- data/lib/evosynth/problems.rb +37 -0
- data/lib/evosynth/problems/binary_benchmark_functions.rb +74 -0
- data/lib/evosynth/problems/float_benchmark_functions.rb +99 -0
- data/lib/evosynth/problems/graph_colouring.rb +89 -0
- data/lib/evosynth/problems/tsp.rb +88 -0
- data/test/benchmark/decoder_benchmark.rb +75 -0
- data/test/benchmark/mutation_benchmark.rb +88 -0
- data/test/benchmark/recombination_benchmark.rb +58 -0
- data/test/benchmark/selection_benchmark.rb +52 -0
- data/test/core/tc_array_genome.rb +154 -0
- data/test/core/tc_binary_genome.rb +160 -0
- data/test/core/tc_population.rb +154 -0
- data/test/core/tc_profile.rb +75 -0
- data/test/core/tc_randomizer.rb +165 -0
- data/test/coverage.rb +43 -0
- data/test/decoder/tc_binary_to_real.rb +52 -0
- data/test/decoder/tc_gray.rb +107 -0
- data/test/operators/adjustments/tc_adaptive_adjustment.rb +63 -0
- data/test/operators/adjustments/tc_predefined_adjustment.rb +49 -0
- data/test/operators/global_recombinations/tc_global_arithmetic_crossover.rb +78 -0
- data/test/operators/global_recombinations/tc_global_uniform_crossover.rb +90 -0
- data/test/operators/meta_operators/tc_conditional_combined_operator.rb +66 -0
- data/test/operators/meta_operators/tc_proportional_combined_operator.rb +167 -0
- data/test/operators/meta_operators/tc_sequential_combined_operator.rb +98 -0
- data/test/operators/mutations/tc_binary_mutation.rb +73 -0
- data/test/operators/mutations/tc_efficient_binary_mutation.rb +73 -0
- data/test/operators/mutations/tc_exchange_mutation.rb +127 -0
- data/test/operators/mutations/tc_gauss_mutation.rb +130 -0
- data/test/operators/mutations/tc_identity_mutation.rb +64 -0
- data/test/operators/mutations/tc_inversion_mutation.rb +70 -0
- data/test/operators/mutations/tc_mixing_mutation.rb +73 -0
- data/test/operators/mutations/tc_one_gene_flipping.rb +109 -0
- data/test/operators/mutations/tc_self_adaptive_gauss_mutation.rb +72 -0
- data/test/operators/mutations/tc_shifting_muation.rb +73 -0
- data/test/operators/mutations/tc_uniform_real_mutation.rb +65 -0
- data/test/operators/recombinations/tc_arithmetic_crossover.rb +79 -0
- data/test/operators/recombinations/tc_edge_recombination.rb +76 -0
- data/test/operators/recombinations/tc_identity_recombination.rb +81 -0
- data/test/operators/recombinations/tc_k_point_crossover.rb +81 -0
- data/test/operators/recombinations/tc_one_point_crossover.rb +80 -0
- data/test/operators/recombinations/tc_ordered_recombination.rb +76 -0
- data/test/operators/recombinations/tc_partially_mapped_crossover.rb +91 -0
- data/test/operators/recombinations/tc_uniform_crossover.rb +84 -0
- data/test/operators/selections/tc_best_selection.rb +85 -0
- data/test/operators/selections/tc_fitness_proportional_selection.rb +78 -0
- data/test/operators/selections/tc_identity.rb +91 -0
- data/test/operators/selections/tc_n_stage_tournament.rb +78 -0
- data/test/operators/selections/tc_random_selection.rb +70 -0
- data/test/operators/selections/tc_roulette_wheel_selection.rb +78 -0
- data/test/operators/selections/tc_tournament_selection.rb +83 -0
- data/test/problems/tc_binary_benchmark_functions.rb +126 -0
- data/test/problems/tc_float_benchmark_functions.rb +100 -0
- data/test/test_util/test_helper.rb +128 -0
- data/test/ts_adjustments.rb +26 -0
- data/test/ts_core.rb +29 -0
- data/test/ts_decoder.rb +26 -0
- data/test/ts_global_recombinations.rb +26 -0
- data/test/ts_meta_operators.rb +27 -0
- data/test/ts_mutations.rb +35 -0
- data/test/ts_problems.rb +26 -0
- data/test/ts_recombinations.rb +32 -0
- data/test/ts_selections.rb +31 -0
- data/testdata/README +4 -0
- data/testdata/bays29.tsp +68 -0
- data/testdata/myciel4.col +77 -0
- metadata +552 -0
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
# Copyright (c) 2009, 2010 Yves Adler <yves.adler@googlemail.com>
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person
|
|
4
|
+
# obtaining a copy of this software and associated documentation
|
|
5
|
+
# files (the "Software"), to deal in the Software without
|
|
6
|
+
# restriction, including without limitation the rights to use,
|
|
7
|
+
# copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
# copies of the Software, and to permit persons to whom the
|
|
9
|
+
# Software is furnished to do so, subject to the following
|
|
10
|
+
# conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
17
|
+
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
19
|
+
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
20
|
+
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
21
|
+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
|
+
# OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
require 'shoulda'
|
|
26
|
+
|
|
27
|
+
require 'evosynth'
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class BinaryGenomeTest < Test::Unit::TestCase
|
|
31
|
+
|
|
32
|
+
context "when created without intital value" do
|
|
33
|
+
setup do
|
|
34
|
+
@genome = EvoSynth::BinaryGenome.new
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
should "#changed be true" do
|
|
38
|
+
assert @genome.changed?
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
should "size == 1" do
|
|
42
|
+
assert_equal 1, @genome.size
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
should "genome[0] == 0" do
|
|
46
|
+
assert_equal 0, @genome[0]
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
should "genome[0] == 1, after flip! 0" do
|
|
50
|
+
@genome.flip!(0)
|
|
51
|
+
assert_equal 1, @genome[0]
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
should "clone work as expected" do
|
|
55
|
+
foo = @genome.clone
|
|
56
|
+
@genome.flip!(0)
|
|
57
|
+
assert_equal 1, @genome[0]
|
|
58
|
+
assert_equal 0, foo[0]
|
|
59
|
+
end
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
context "when created with 85" do
|
|
63
|
+
setup do
|
|
64
|
+
@genome = EvoSynth::BinaryGenome.new(87)
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
should "#changed be true" do
|
|
68
|
+
assert @genome.changed?
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
should "genome have the correct bits" do
|
|
72
|
+
assert_equal 1, @genome[0]
|
|
73
|
+
assert_equal 1, @genome[1]
|
|
74
|
+
assert_equal 1, @genome[2]
|
|
75
|
+
assert_equal 0, @genome[3]
|
|
76
|
+
assert_equal 1, @genome[4]
|
|
77
|
+
assert_equal 0, @genome[5]
|
|
78
|
+
assert_equal 1, @genome[6]
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
should "size == 7" do
|
|
82
|
+
assert_equal 7, @genome.size
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
should "to_s == '1010111'" do
|
|
86
|
+
assert_equal '1010111', @genome.to_s
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
should "@genome[1] == 0" do
|
|
90
|
+
assert_equal 1, @genome[1]
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
should "@genome[1,3] == [1,1,0]" do
|
|
94
|
+
assert_equal [1,1,0], @genome[1,3]
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
should "@genome[3,4] == [0,1,0,1]" do
|
|
98
|
+
assert_equal [0,1,0,1], @genome[3,4]
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
should "@genome[1..3] == [1,1,0]" do
|
|
102
|
+
assert_equal [1,1,0], @genome[1..3]
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
should "@genome['foo'] raise a exception" do
|
|
106
|
+
assert_raise(ArgumentError) { @genome['foo'] }
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
should "@genome[1,2,3] raise a exception" do
|
|
110
|
+
assert_raise(ArgumentError) { @genome[1,2,3] }
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
should "to_s == '1000011', after 2 flips at the correct position" do
|
|
114
|
+
@genome.flip!(2)
|
|
115
|
+
@genome.flip!(4)
|
|
116
|
+
assert_equal '1000011', @genome.to_s
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
should "@genome[]= should work" do
|
|
120
|
+
assert_equal 1, @genome[4]
|
|
121
|
+
@genome[4] = 0
|
|
122
|
+
assert_equal 0, @genome[4]
|
|
123
|
+
@genome[4] = 1
|
|
124
|
+
assert_equal 1, @genome[4]
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
should "@genome[0..2]= should work" do
|
|
128
|
+
assert_equal [1,1,1], @genome[0..2]
|
|
129
|
+
@genome[0..2] = 0
|
|
130
|
+
assert_equal [0,0,0], @genome[0..2]
|
|
131
|
+
@genome[0..2] = 1
|
|
132
|
+
assert_equal [1,1,1], @genome[0..2]
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
should "@genome[0..2]= [..] should work" do
|
|
136
|
+
assert_equal [1,1,1], @genome[0..2]
|
|
137
|
+
@genome[0..2] = [0,1,0]
|
|
138
|
+
assert_equal [0,1,0], @genome[0..2]
|
|
139
|
+
@genome[0..2] = [1,1,1]
|
|
140
|
+
assert_equal [1,1,1], @genome[0..2]
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
should "@genome[4..6]= [..] should work" do
|
|
144
|
+
assert_equal [1,0,1], @genome[4..6]
|
|
145
|
+
@genome[4..6] = [0,1,1]
|
|
146
|
+
assert_equal [0,1,1], @genome[4..6]
|
|
147
|
+
@genome[4..6] = [1,0,1]
|
|
148
|
+
assert_equal [1,0,1], @genome[4..6]
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
should "@genome[3,3]= should work" do
|
|
152
|
+
assert_equal [0,1,0], @genome[3,3]
|
|
153
|
+
@genome[3,3] = 0
|
|
154
|
+
assert_equal [0,0,0], @genome[3,3]
|
|
155
|
+
@genome[3,3] = 1
|
|
156
|
+
assert_equal [1,1,1], @genome[3,3]
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
end
|
|
160
|
+
end
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
# Copyright (c) 2009, 2010 Yves Adler <yves.adler@googlemail.com>
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person
|
|
4
|
+
# obtaining a copy of this software and associated documentation
|
|
5
|
+
# files (the "Software"), to deal in the Software without
|
|
6
|
+
# restriction, including without limitation the rights to use,
|
|
7
|
+
# copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
# copies of the Software, and to permit persons to whom the
|
|
9
|
+
# Software is furnished to do so, subject to the following
|
|
10
|
+
# conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
17
|
+
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
19
|
+
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
20
|
+
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
21
|
+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
|
+
# OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
require 'shoulda'
|
|
26
|
+
|
|
27
|
+
require 'evosynth'
|
|
28
|
+
require 'test/test_util/test_helper'
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class PopulationTest < Test::Unit::TestCase
|
|
32
|
+
|
|
33
|
+
context "when initialized without args" do
|
|
34
|
+
setup do
|
|
35
|
+
@population = EvoSynth::Population.new
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
should "be empty" do
|
|
39
|
+
assert @population.empty?
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
should "have a size of 0" do
|
|
43
|
+
assert_equal 0, @population.size
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
context "when it contains maximizingIndividuals" do
|
|
48
|
+
setup do
|
|
49
|
+
@population = EvoSynth::Population.new
|
|
50
|
+
@min = TestMaximizingIndividual.new(1)
|
|
51
|
+
@second = TestMaximizingIndividual.new(299)
|
|
52
|
+
@third = TestMaximizingIndividual.new(298)
|
|
53
|
+
@max = TestMaximizingIndividual.new(300)
|
|
54
|
+
|
|
55
|
+
@population.add(@max)
|
|
56
|
+
@population.add(@min)
|
|
57
|
+
@population.add(@third)
|
|
58
|
+
@population.add(@second)
|
|
59
|
+
|
|
60
|
+
10.times { @population.add(TestMaximizingIndividual.new(EvoSynth.rand(10) + 10)) }
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
should "#best(3) return 3 individuals ordered by fitness (DESC)" do
|
|
64
|
+
expected = []
|
|
65
|
+
expected << @max << @second << @third
|
|
66
|
+
assert_equal expected, @population.best(3)
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
should "#best return maximum in population" do
|
|
70
|
+
assert_equal @max, @population.best
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
should "#worst return minimum in population" do
|
|
74
|
+
assert_equal @min, @population.worst
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
context "when it contains minizingIndividuals" do
|
|
79
|
+
setup do
|
|
80
|
+
@population = EvoSynth::Population.new
|
|
81
|
+
@min = TestMinimizingIndividual.new(1)
|
|
82
|
+
@second = TestMinimizingIndividual.new(2)
|
|
83
|
+
@third = TestMinimizingIndividual.new(3)
|
|
84
|
+
@max = TestMinimizingIndividual.new(300)
|
|
85
|
+
|
|
86
|
+
@population.add(@min)
|
|
87
|
+
@population.add(@second)
|
|
88
|
+
@population.add(@third)
|
|
89
|
+
@population.add(@max)
|
|
90
|
+
|
|
91
|
+
10.times { @population.add(TestMinimizingIndividual.new(EvoSynth.rand(10) + 10)) }
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
should "#best(3) return 3 individuals ordered by fitness (ASC)" do
|
|
95
|
+
expected = []
|
|
96
|
+
expected << @min << @second << @third
|
|
97
|
+
assert_equal expected, @population.best(3)
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
should "#best returns minimum in population" do
|
|
101
|
+
assert_equal @min, @population.best
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
should "#worst returns maximum in population" do
|
|
105
|
+
assert_equal @max, @population.worst
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
should "[]= and [] work" do
|
|
110
|
+
population = EvoSynth::Population.new(2) { 0 }
|
|
111
|
+
population[0] = "foo"
|
|
112
|
+
population[1] = "bar"
|
|
113
|
+
assert_equal 2, population.size
|
|
114
|
+
assert_equal "foo", population[0]
|
|
115
|
+
assert_equal "bar", population[1]
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
should "provide a working map! implementation" do
|
|
119
|
+
pop = EvoSynth::Population.new
|
|
120
|
+
pop.add(TestMinimizingIndividual.new(1))
|
|
121
|
+
pop.map! { |i| i.fitness = 2; i}
|
|
122
|
+
assert_equal 2, pop[0].fitness
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
should "provide a working remove implementation" do
|
|
126
|
+
pop = EvoSynth::Population.new
|
|
127
|
+
inividual_one = TestMinimizingIndividual.new(1)
|
|
128
|
+
inividual_two = TestMinimizingIndividual.new(2)
|
|
129
|
+
pop.add(inividual_one)
|
|
130
|
+
pop.add(inividual_two)
|
|
131
|
+
assert_equal 2, pop.size
|
|
132
|
+
assert_equal inividual_one, pop[0]
|
|
133
|
+
assert_equal inividual_two, pop[1]
|
|
134
|
+
|
|
135
|
+
pop.remove(inividual_one)
|
|
136
|
+
assert_equal inividual_two, pop[0]
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
should "all individuals should be 0 when created with {0}" do
|
|
140
|
+
population = EvoSynth::Population.new(1) { 0 }
|
|
141
|
+
population.each { |individual| assert_equal 0, individual }
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
should "it's size should be 100 when we want it to be 100" do
|
|
145
|
+
population = EvoSynth::Population.new(100)
|
|
146
|
+
assert_equal 100, population.size
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
should "when initialized without block it should only contain nil" do
|
|
150
|
+
population = EvoSynth::Population.new(1)
|
|
151
|
+
assert_nil population[0]
|
|
152
|
+
end
|
|
153
|
+
|
|
154
|
+
end
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Copyright (c) 2009, 2010 Yves Adler <yves.adler@googlemail.com>
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person
|
|
4
|
+
# obtaining a copy of this software and associated documentation
|
|
5
|
+
# files (the "Software"), to deal in the Software without
|
|
6
|
+
# restriction, including without limitation the rights to use,
|
|
7
|
+
# copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
# copies of the Software, and to permit persons to whom the
|
|
9
|
+
# Software is furnished to do so, subject to the following
|
|
10
|
+
# conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
17
|
+
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
19
|
+
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
20
|
+
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
21
|
+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
|
+
# OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
require 'shoulda'
|
|
26
|
+
|
|
27
|
+
require 'evosynth'
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class ProfileTest < Test::Unit::TestCase
|
|
31
|
+
|
|
32
|
+
context "when initialized with a symbol" do
|
|
33
|
+
|
|
34
|
+
should "work as expected with simple stuff" do
|
|
35
|
+
profile = EvoSynth::Profile.new
|
|
36
|
+
assert_raise(ArgumentError) { (profile.foo) }
|
|
37
|
+
assert_raise(ArgumentError) { (profile.bar) }
|
|
38
|
+
profile.foo= "foo"
|
|
39
|
+
profile.bar= "bar"
|
|
40
|
+
assert_equal("foo", profile.foo)
|
|
41
|
+
assert_equal("bar", profile.bar)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
should "work as expected with more complex stuff" do
|
|
45
|
+
profile = EvoSynth::Profile.new
|
|
46
|
+
assert_raise(ArgumentError) { (profile.foo) }
|
|
47
|
+
assert_raise(ArgumentError) { (profile.bar) }
|
|
48
|
+
profile.foo= [1,2,3,4,5]
|
|
49
|
+
struct = Struct.new(:foo,:bar,:baz)
|
|
50
|
+
profile.bar= struct
|
|
51
|
+
assert_equal([1,2,3,4,5], profile.foo)
|
|
52
|
+
assert_equal(struct, profile.bar)
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
should "work with defaults" do
|
|
56
|
+
profile = EvoSynth::Profile.new(:foo, :bar => "bar", :baz => "baz")
|
|
57
|
+
assert_nil(profile.foo)
|
|
58
|
+
assert_equal("bar", profile.bar)
|
|
59
|
+
assert_equal("baz", profile.baz)
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
should "be able to delete keys" do
|
|
63
|
+
profile = EvoSynth::Profile.new(:foo, :bar => "bar", :baz => "baz")
|
|
64
|
+
assert_nil(profile.foo)
|
|
65
|
+
assert_equal("bar", profile.bar)
|
|
66
|
+
assert_equal("baz", profile.baz)
|
|
67
|
+
profile.delete(:foo)
|
|
68
|
+
assert_raise(ArgumentError) { (profile.foo) }
|
|
69
|
+
profile.delete(:bar)
|
|
70
|
+
assert_raise(ArgumentError) { (profile.bar) }
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
end
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
# Copyright (c) 2009, 2010 Yves Adler <yves.adler@googlemail.com>
|
|
2
|
+
#
|
|
3
|
+
# Permission is hereby granted, free of charge, to any person
|
|
4
|
+
# obtaining a copy of this software and associated documentation
|
|
5
|
+
# files (the "Software"), to deal in the Software without
|
|
6
|
+
# restriction, including without limitation the rights to use,
|
|
7
|
+
# copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
# copies of the Software, and to permit persons to whom the
|
|
9
|
+
# Software is furnished to do so, subject to the following
|
|
10
|
+
# conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
17
|
+
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
19
|
+
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
20
|
+
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
21
|
+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
|
+
# OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
require 'shoulda'
|
|
26
|
+
require 'gnuplot'
|
|
27
|
+
|
|
28
|
+
require 'evosynth'
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class BenchmarkFunctionsTest < Test::Unit::TestCase
|
|
32
|
+
|
|
33
|
+
RUNS = 50000
|
|
34
|
+
DELTA = 0.05
|
|
35
|
+
|
|
36
|
+
def assert_point(xs, value, expected, point, scale)
|
|
37
|
+
offset = point * scale
|
|
38
|
+
v1 = xs[value+(offset)].nil? ? 0 : xs[value+(offset)]
|
|
39
|
+
v2 = xs[value+(offset+0.01)].nil? ? 0 : xs[value+(offset+0.01)]
|
|
40
|
+
v3 = xs[value+(offset-0.01)].nil? ? 0 : xs[value+(offset-0.01)]
|
|
41
|
+
at_point = ((v1 * 100.0 / RUNS) + (v2 * 100.0 / RUNS) + (v3 * 100.0 / RUNS)) / 3
|
|
42
|
+
assert_in_delta(expected/scale, at_point, DELTA)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def assert_result(xs, value = 0.0, scale = 1.0)
|
|
46
|
+
assert_point(xs, value, 0.4, 0.0, scale)
|
|
47
|
+
assert_point(xs, value, 0.24, -1.0, scale)
|
|
48
|
+
assert_point(xs, value, 0.24, 1.0, scale)
|
|
49
|
+
assert_point(xs, value, 0.054, 2.0, scale)
|
|
50
|
+
assert_point(xs, value, 0.054, -2.0, scale)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
context "the EvoSynth.normal_rand function" do
|
|
54
|
+
|
|
55
|
+
should "should be correct with default values" do
|
|
56
|
+
xs = {}
|
|
57
|
+
RUNS.times do |i|
|
|
58
|
+
result = EvoSynth.nrand
|
|
59
|
+
rounded = (result * 100).round.to_f/100
|
|
60
|
+
xs[rounded] = 0 unless xs.has_key?(rounded)
|
|
61
|
+
xs[rounded] += 1
|
|
62
|
+
end
|
|
63
|
+
assert_result(xs, 0.0, 1.0)
|
|
64
|
+
|
|
65
|
+
xs_sorted = xs.sort
|
|
66
|
+
x, y = [],[]
|
|
67
|
+
xs_sorted.each { |v| x << v[0]; y << v[1] * 100.0 / RUNS }
|
|
68
|
+
|
|
69
|
+
# Gnuplot.open do |gp|
|
|
70
|
+
# Gnuplot::Plot.new( gp ) do |plot|
|
|
71
|
+
#
|
|
72
|
+
# plot.title "normal distributed random numbers"
|
|
73
|
+
# plot.xrange "[-5:5]"
|
|
74
|
+
#
|
|
75
|
+
# plot.data << Gnuplot::DataSet.new( [x, y] ) do |ds|
|
|
76
|
+
# ds.with = "lines"
|
|
77
|
+
# end
|
|
78
|
+
# end
|
|
79
|
+
# end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
should "should be correct with mu = 2.0 values" do
|
|
84
|
+
xs = {}
|
|
85
|
+
RUNS.times do |i|
|
|
86
|
+
result = EvoSynth.nrand(2.0)
|
|
87
|
+
rounded = (result * 100).round.to_f/100
|
|
88
|
+
xs[rounded] = 0 unless xs.has_key?(rounded)
|
|
89
|
+
xs[rounded] += 1
|
|
90
|
+
end
|
|
91
|
+
assert_result(xs, 2.0, 1.0)
|
|
92
|
+
|
|
93
|
+
xs_sorted = xs.sort
|
|
94
|
+
x, y = [],[]
|
|
95
|
+
xs_sorted.each { |v| x << v[0]; y << v[1] * 100.0 / RUNS }
|
|
96
|
+
|
|
97
|
+
# Gnuplot.open do |gp|
|
|
98
|
+
# Gnuplot::Plot.new( gp ) do |plot|
|
|
99
|
+
#
|
|
100
|
+
# plot.title "normal distributed random numbers"
|
|
101
|
+
# plot.xrange "[-5:5]"
|
|
102
|
+
#
|
|
103
|
+
# plot.data << Gnuplot::DataSet.new( [x, y] ) do |ds|
|
|
104
|
+
# ds.with = "lines"
|
|
105
|
+
# end
|
|
106
|
+
# end
|
|
107
|
+
# end
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
should "should be correct with mu = -13.0 values" do
|
|
111
|
+
xs = {}
|
|
112
|
+
RUNS.times do |i|
|
|
113
|
+
result = EvoSynth.nrand(-13.0)
|
|
114
|
+
rounded = (result * 100).round.to_f/100
|
|
115
|
+
xs[rounded] = 0 unless xs.has_key?(rounded)
|
|
116
|
+
xs[rounded] += 1
|
|
117
|
+
end
|
|
118
|
+
assert_result(xs, -13.0, 1.0)
|
|
119
|
+
|
|
120
|
+
xs_sorted = xs.sort
|
|
121
|
+
x, y = [],[]
|
|
122
|
+
xs_sorted.each { |v| x << v[0]; y << v[1] * 100.0 / RUNS }
|
|
123
|
+
|
|
124
|
+
# Gnuplot.open do |gp|
|
|
125
|
+
# Gnuplot::Plot.new( gp ) do |plot|
|
|
126
|
+
#
|
|
127
|
+
# plot.title "normal distributed random numbers"
|
|
128
|
+
# plot.xrange "[-5:5]"
|
|
129
|
+
#
|
|
130
|
+
# plot.data << Gnuplot::DataSet.new( [x, y] ) do |ds|
|
|
131
|
+
# ds.with = "lines"
|
|
132
|
+
# end
|
|
133
|
+
# end
|
|
134
|
+
# end
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
should "should be correct with mu = -13.0 and sigma = 2.0values" do
|
|
138
|
+
xs = {}
|
|
139
|
+
RUNS.times do |i|
|
|
140
|
+
result = EvoSynth.nrand(0.0, 2.0)
|
|
141
|
+
rounded = (result * 100).round.to_f/100
|
|
142
|
+
xs[rounded] = 0 unless xs.has_key?(rounded)
|
|
143
|
+
xs[rounded] += 1
|
|
144
|
+
end
|
|
145
|
+
# assert_result(xs, -13.0, 2.0)
|
|
146
|
+
|
|
147
|
+
xs_sorted = xs.sort
|
|
148
|
+
x, y = [],[]
|
|
149
|
+
xs_sorted.each { |v| x << v[0]; y << v[1] * 100.0 / RUNS }
|
|
150
|
+
|
|
151
|
+
# Gnuplot.open do |gp|
|
|
152
|
+
# Gnuplot::Plot.new( gp ) do |plot|
|
|
153
|
+
#
|
|
154
|
+
# plot.title "normal distributed random numbers"
|
|
155
|
+
# plot.xrange "[-5:5]"
|
|
156
|
+
#
|
|
157
|
+
# plot.data << Gnuplot::DataSet.new( [x, y] ) do |ds|
|
|
158
|
+
# ds.with = "lines"
|
|
159
|
+
# end
|
|
160
|
+
# end
|
|
161
|
+
# end
|
|
162
|
+
end
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
end
|