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.
Files changed (390) hide show
  1. data/INSTALL +74 -0
  2. data/LICENSE +22 -0
  3. data/README +57 -0
  4. data/Rakefile +132 -0
  5. data/TODO +88 -0
  6. data/docs/FEATURES +111 -0
  7. data/docs/rdoc/classes/EvoSynth.html +2643 -0
  8. data/docs/rdoc/classes/EvoSynth/Adjustments.html +119 -0
  9. data/docs/rdoc/classes/EvoSynth/Adjustments/AdaptiveAdjustment.html +264 -0
  10. data/docs/rdoc/classes/EvoSynth/Adjustments/PredifinedAdjustment.html +235 -0
  11. data/docs/rdoc/classes/EvoSynth/ArrayGenome.html +313 -0
  12. data/docs/rdoc/classes/EvoSynth/BinaryGenome.html +518 -0
  13. data/docs/rdoc/classes/EvoSynth/Decoder.html +286 -0
  14. data/docs/rdoc/classes/EvoSynth/Evaluator.html +466 -0
  15. data/docs/rdoc/classes/EvoSynth/Evolvers.html +469 -0
  16. data/docs/rdoc/classes/EvoSynth/Evolvers/AdaptiveES.html +448 -0
  17. data/docs/rdoc/classes/EvoSynth/Evolvers/BalancedCoevolutionary.html +439 -0
  18. data/docs/rdoc/classes/EvoSynth/Evolvers/DerandomizedES.html +450 -0
  19. data/docs/rdoc/classes/EvoSynth/Evolvers/Evolver.html +125 -0
  20. data/docs/rdoc/classes/EvoSynth/Evolvers/GeneticAlgorithm.html +467 -0
  21. data/docs/rdoc/classes/EvoSynth/Evolvers/Hillclimber.html +343 -0
  22. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch.html +422 -0
  23. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/GreatDelugeAcceptance.html +287 -0
  24. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/HillclimberAcceptance.html +197 -0
  25. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/RecordToRecordTravelAcceptance.html +296 -0
  26. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/SimulatedAnnealingAcceptance.html +286 -0
  27. data/docs/rdoc/classes/EvoSynth/Evolvers/LocalSearch/ThresholdAcceptance.html +287 -0
  28. data/docs/rdoc/classes/EvoSynth/Evolvers/MemeticAlgorithm.html +441 -0
  29. data/docs/rdoc/classes/EvoSynth/Evolvers/PopulationHillclimber.html +375 -0
  30. data/docs/rdoc/classes/EvoSynth/Evolvers/ProfileUsingEvolver.html +205 -0
  31. data/docs/rdoc/classes/EvoSynth/Evolvers/RoundRobinCoevolutionary.html +383 -0
  32. data/docs/rdoc/classes/EvoSynth/Evolvers/RunnableEvolver.html +279 -0
  33. data/docs/rdoc/classes/EvoSynth/Evolvers/RunnableEvolver/Goal.html +193 -0
  34. data/docs/rdoc/classes/EvoSynth/Evolvers/SelfAdaptiveES.html +394 -0
  35. data/docs/rdoc/classes/EvoSynth/Evolvers/SteadyStateGA.html +390 -0
  36. data/docs/rdoc/classes/EvoSynth/GlobalRecombinations.html +119 -0
  37. data/docs/rdoc/classes/EvoSynth/GlobalRecombinations/GlobalArithmeticCrossover.html +204 -0
  38. data/docs/rdoc/classes/EvoSynth/GlobalRecombinations/GlobalUniformCrossover.html +203 -0
  39. data/docs/rdoc/classes/EvoSynth/Individual.html +561 -0
  40. data/docs/rdoc/classes/EvoSynth/MaximizingIndividual.html +266 -0
  41. data/docs/rdoc/classes/EvoSynth/MetaOperators.html +149 -0
  42. data/docs/rdoc/classes/EvoSynth/MetaOperators/ConditionalCombinedOperator.html +278 -0
  43. data/docs/rdoc/classes/EvoSynth/MetaOperators/ProportionalCombinedOperator.html +285 -0
  44. data/docs/rdoc/classes/EvoSynth/MetaOperators/SequentialCombinedOperator.html +290 -0
  45. data/docs/rdoc/classes/EvoSynth/MinimizingIndividual.html +266 -0
  46. data/docs/rdoc/classes/EvoSynth/Mutations.html +251 -0
  47. data/docs/rdoc/classes/EvoSynth/Mutations/BinaryMutation.html +336 -0
  48. data/docs/rdoc/classes/EvoSynth/Mutations/EfficientBinaryMutation.html +345 -0
  49. data/docs/rdoc/classes/EvoSynth/Mutations/ExchangeMutation.html +320 -0
  50. data/docs/rdoc/classes/EvoSynth/Mutations/Functions.html +160 -0
  51. data/docs/rdoc/classes/EvoSynth/Mutations/GaussMutation.html +311 -0
  52. data/docs/rdoc/classes/EvoSynth/Mutations/Identity.html +220 -0
  53. data/docs/rdoc/classes/EvoSynth/Mutations/InversionMutation.html +231 -0
  54. data/docs/rdoc/classes/EvoSynth/Mutations/MixingMutation.html +233 -0
  55. data/docs/rdoc/classes/EvoSynth/Mutations/OneGeneFlipping.html +295 -0
  56. data/docs/rdoc/classes/EvoSynth/Mutations/SelfAdaptiveGaussMutation.html +347 -0
  57. data/docs/rdoc/classes/EvoSynth/Mutations/ShiftingMutation.html +229 -0
  58. data/docs/rdoc/classes/EvoSynth/Mutations/UniformRealMutation.html +264 -0
  59. data/docs/rdoc/classes/EvoSynth/Output.html +212 -0
  60. data/docs/rdoc/classes/EvoSynth/Output/CSVExporter.html +211 -0
  61. data/docs/rdoc/classes/EvoSynth/Output/ConsoleWriter.html +194 -0
  62. data/docs/rdoc/classes/EvoSynth/Output/GnuPlotExporter.html +235 -0
  63. data/docs/rdoc/classes/EvoSynth/Output/GruffExporter.html +219 -0
  64. data/docs/rdoc/classes/EvoSynth/Output/Logger.html +345 -0
  65. data/docs/rdoc/classes/EvoSynth/Population.html +430 -0
  66. data/docs/rdoc/classes/EvoSynth/Problems.html +159 -0
  67. data/docs/rdoc/classes/EvoSynth/Problems/BinaryBenchmarkFuntions.html +258 -0
  68. data/docs/rdoc/classes/EvoSynth/Problems/FloatBenchmarkFuntions.html +406 -0
  69. data/docs/rdoc/classes/EvoSynth/Problems/GraphColouring.html +265 -0
  70. data/docs/rdoc/classes/EvoSynth/Problems/TSP.html +327 -0
  71. data/docs/rdoc/classes/EvoSynth/Profile.html +324 -0
  72. data/docs/rdoc/classes/EvoSynth/Recombinations.html +251 -0
  73. data/docs/rdoc/classes/EvoSynth/Recombinations/ArithmeticCrossover.html +286 -0
  74. data/docs/rdoc/classes/EvoSynth/Recombinations/EdgeRecombination.html +203 -0
  75. data/docs/rdoc/classes/EvoSynth/Recombinations/Identity.html +192 -0
  76. data/docs/rdoc/classes/EvoSynth/Recombinations/KPointCrossover.html +286 -0
  77. data/docs/rdoc/classes/EvoSynth/Recombinations/OnePointCrossover.html +211 -0
  78. data/docs/rdoc/classes/EvoSynth/Recombinations/OrderedRecombination.html +206 -0
  79. data/docs/rdoc/classes/EvoSynth/Recombinations/PartiallyMappedCrossover.html +206 -0
  80. data/docs/rdoc/classes/EvoSynth/Recombinations/UniformCrossover.html +208 -0
  81. data/docs/rdoc/classes/EvoSynth/Selections.html +174 -0
  82. data/docs/rdoc/classes/EvoSynth/Selections/FitnessProportionalSelection.html +206 -0
  83. data/docs/rdoc/classes/EvoSynth/Selections/Identity.html +200 -0
  84. data/docs/rdoc/classes/EvoSynth/Selections/NStageTournamentSelection.html +273 -0
  85. data/docs/rdoc/classes/EvoSynth/Selections/RandomSelection.html +192 -0
  86. data/docs/rdoc/classes/EvoSynth/Selections/RouletteWheelSelection.html +212 -0
  87. data/docs/rdoc/classes/EvoSynth/Selections/SelectBest.html +206 -0
  88. data/docs/rdoc/classes/EvoSynth/Selections/TournamentSelection.html +274 -0
  89. data/docs/rdoc/classes/Examples.html +268 -0
  90. data/docs/rdoc/classes/Examples/Ants.html +198 -0
  91. data/docs/rdoc/classes/Examples/Ants/AntMutation.html +381 -0
  92. data/docs/rdoc/classes/Examples/Ants/Pheromon.html +256 -0
  93. data/docs/rdoc/classes/Examples/CCGAExample.html +305 -0
  94. data/docs/rdoc/classes/Examples/CCGAExample/CCGA2BenchmarkEvaluator.html +165 -0
  95. data/docs/rdoc/classes/Examples/CCGAExample/CCGABenchmarkEvaluator.html +242 -0
  96. data/docs/rdoc/classes/Examples/CCGAExample/CCGAIndividual.html +181 -0
  97. data/docs/rdoc/classes/Examples/CMBExample.html +215 -0
  98. data/docs/rdoc/classes/Examples/CMBExample/CMBEvaluator.html +212 -0
  99. data/docs/rdoc/classes/Examples/EsExample.html +270 -0
  100. data/docs/rdoc/classes/Examples/EsExample/BenchmarkEvaluator.html +162 -0
  101. data/docs/rdoc/classes/Examples/Exporter.html +208 -0
  102. data/docs/rdoc/classes/Examples/Exporter/ExporterEvaluator.html +196 -0
  103. data/docs/rdoc/classes/Examples/GraphColouring.html +199 -0
  104. data/docs/rdoc/classes/Examples/Hacking.html +147 -0
  105. data/docs/rdoc/classes/Examples/Hacking/HackingEvaluator.html +169 -0
  106. data/docs/rdoc/classes/Examples/LocalSearch.html +294 -0
  107. data/docs/rdoc/classes/Examples/LocalSearch/LocalSearchEvaluator.html +198 -0
  108. data/docs/rdoc/classes/Examples/MaxOnes.html +187 -0
  109. data/docs/rdoc/classes/Examples/MaxOnes/MaxOnesEvaluator.html +170 -0
  110. data/docs/rdoc/classes/Examples/Partitionproblem.html +201 -0
  111. data/docs/rdoc/classes/Examples/Partitionproblem/PartitionEvaluator.html +164 -0
  112. data/docs/rdoc/classes/Examples/Partitionproblem/PartitionIndividual.html +334 -0
  113. data/docs/rdoc/classes/Examples/Partitionproblem/PartitionMutation.html +199 -0
  114. data/docs/rdoc/classes/Examples/Partitionproblem/Testdata.html +294 -0
  115. data/docs/rdoc/classes/Examples/SPk.html +139 -0
  116. data/docs/rdoc/classes/Examples/SPk/SPkFitnessEvaluator.html +299 -0
  117. data/docs/rdoc/classes/Examples/TSP.html +187 -0
  118. data/docs/rdoc/created.rid +1 -0
  119. data/docs/rdoc/files/INSTALL.html +253 -0
  120. data/docs/rdoc/files/LICENSE.html +119 -0
  121. data/docs/rdoc/files/README.html +235 -0
  122. data/docs/rdoc/files/docs/FEATURES.html +428 -0
  123. data/docs/rdoc/files/examples/ants_rb.html +133 -0
  124. data/docs/rdoc/files/examples/ccga_example_rb.html +129 -0
  125. data/docs/rdoc/files/examples/cmb_example_rb.html +129 -0
  126. data/docs/rdoc/files/examples/evolution_strategies_rb.html +129 -0
  127. data/docs/rdoc/files/examples/exporter_rb.html +129 -0
  128. data/docs/rdoc/files/examples/graph_colouring_rb.html +129 -0
  129. data/docs/rdoc/files/examples/hacking_rb.html +129 -0
  130. data/docs/rdoc/files/examples/local_search_rb.html +129 -0
  131. data/docs/rdoc/files/examples/max_ones_rb.html +129 -0
  132. data/docs/rdoc/files/examples/partition_rb.html +131 -0
  133. data/docs/rdoc/files/examples/spk_rb.html +129 -0
  134. data/docs/rdoc/files/examples/tsp_rb.html +131 -0
  135. data/docs/rdoc/files/lib/evosynth/core/array_genome_rb.html +119 -0
  136. data/docs/rdoc/files/lib/evosynth/core/binary_genome_rb.html +119 -0
  137. data/docs/rdoc/files/lib/evosynth/core/evaluator_rb.html +129 -0
  138. data/docs/rdoc/files/lib/evosynth/core/individual_rb.html +119 -0
  139. data/docs/rdoc/files/lib/evosynth/core/maximizing_individual_rb.html +119 -0
  140. data/docs/rdoc/files/lib/evosynth/core/minimizing_individual_rb.html +119 -0
  141. data/docs/rdoc/files/lib/evosynth/core/population_rb.html +119 -0
  142. data/docs/rdoc/files/lib/evosynth/core/profile_rb.html +119 -0
  143. data/docs/rdoc/files/lib/evosynth/core/randomizer_rb.html +119 -0
  144. data/docs/rdoc/files/lib/evosynth/core_rb.html +145 -0
  145. data/docs/rdoc/files/lib/evosynth/decoder/binary_to_real_rb.html +119 -0
  146. data/docs/rdoc/files/lib/evosynth/decoder/gray_rb.html +119 -0
  147. data/docs/rdoc/files/lib/evosynth/decoder_rb.html +131 -0
  148. data/docs/rdoc/files/lib/evosynth/evolvers/basic/genetic_algorithm_rb.html +119 -0
  149. data/docs/rdoc/files/lib/evosynth/evolvers/basic/hillclimber_rb.html +119 -0
  150. data/docs/rdoc/files/lib/evosynth/evolvers/basic/memetic_algorithm_rb.html +119 -0
  151. data/docs/rdoc/files/lib/evosynth/evolvers/basic/population_hillclimber_rb.html +119 -0
  152. data/docs/rdoc/files/lib/evosynth/evolvers/basic/steady_state_ga_rb.html +119 -0
  153. data/docs/rdoc/files/lib/evosynth/evolvers/coevolutionary/balanced_coevolutionary_rb.html +119 -0
  154. data/docs/rdoc/files/lib/evosynth/evolvers/coevolutionary/round_robin_coevolutionary_rb.html +119 -0
  155. data/docs/rdoc/files/lib/evosynth/evolvers/elitism_rb.html +119 -0
  156. data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/adaptive_es_rb.html +129 -0
  157. data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/derandomized_es_rb.html +129 -0
  158. data/docs/rdoc/files/lib/evosynth/evolvers/evolution_strategies/selfadaptive_es_rb.html +119 -0
  159. data/docs/rdoc/files/lib/evosynth/evolvers/evolver_rb.html +131 -0
  160. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_great_deluge_rb.html +119 -0
  161. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_hillclimber_rb.html +119 -0
  162. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_record_to_record_rb.html +119 -0
  163. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_simulated_annealing_rb.html +119 -0
  164. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/acceptance_threshold_rb.html +119 -0
  165. data/docs/rdoc/files/lib/evosynth/evolvers/local_search/local_search_rb.html +137 -0
  166. data/docs/rdoc/files/lib/evosynth/evolvers/profile_using_evolver_rb.html +119 -0
  167. data/docs/rdoc/files/lib/evosynth/evolvers/runnable_evolver_rb.html +129 -0
  168. data/docs/rdoc/files/lib/evosynth/evolvers_rb.html +153 -0
  169. data/docs/rdoc/files/lib/evosynth/operators/adjustments/adaptive_adjustment_rb.html +119 -0
  170. data/docs/rdoc/files/lib/evosynth/operators/adjustments/predefined_adjustment_rb.html +119 -0
  171. data/docs/rdoc/files/lib/evosynth/operators/adjustments_rb.html +131 -0
  172. data/docs/rdoc/files/lib/evosynth/operators/global_recombinations/global_arithmetic_crossover_rb.html +119 -0
  173. data/docs/rdoc/files/lib/evosynth/operators/global_recombinations/global_uniform_crossover_rb.html +119 -0
  174. data/docs/rdoc/files/lib/evosynth/operators/global_recombinations_rb.html +131 -0
  175. data/docs/rdoc/files/lib/evosynth/operators/meta_operators/conditional_combined_operator_rb.html +119 -0
  176. data/docs/rdoc/files/lib/evosynth/operators/meta_operators/proportional_combined_operator_rb.html +119 -0
  177. data/docs/rdoc/files/lib/evosynth/operators/meta_operators/sequential_combined_operator_rb.html +119 -0
  178. data/docs/rdoc/files/lib/evosynth/operators/meta_operators_rb.html +133 -0
  179. data/docs/rdoc/files/lib/evosynth/operators/mutations/binary_mutation_rb.html +119 -0
  180. data/docs/rdoc/files/lib/evosynth/operators/mutations/efficient_binary_mutation_rb.html +119 -0
  181. data/docs/rdoc/files/lib/evosynth/operators/mutations/exchange_mutation_rb.html +119 -0
  182. data/docs/rdoc/files/lib/evosynth/operators/mutations/flip_functions_rb.html +119 -0
  183. data/docs/rdoc/files/lib/evosynth/operators/mutations/gauss_mutation_rb.html +119 -0
  184. data/docs/rdoc/files/lib/evosynth/operators/mutations/identity_rb.html +119 -0
  185. data/docs/rdoc/files/lib/evosynth/operators/mutations/inversion_mutation_rb.html +119 -0
  186. data/docs/rdoc/files/lib/evosynth/operators/mutations/mixing_mutation_rb.html +119 -0
  187. data/docs/rdoc/files/lib/evosynth/operators/mutations/one_gene_flipping_rb.html +119 -0
  188. data/docs/rdoc/files/lib/evosynth/operators/mutations/self_adaptive_gauss_mutation_rb.html +119 -0
  189. data/docs/rdoc/files/lib/evosynth/operators/mutations/shifting_mutation_rb.html +119 -0
  190. data/docs/rdoc/files/lib/evosynth/operators/mutations/uniform_real_mutation_rb.html +119 -0
  191. data/docs/rdoc/files/lib/evosynth/operators/mutations_rb.html +151 -0
  192. data/docs/rdoc/files/lib/evosynth/operators/recombinations/arithmetic_crossover_rb.html +119 -0
  193. data/docs/rdoc/files/lib/evosynth/operators/recombinations/edge_recombination_rb.html +129 -0
  194. data/docs/rdoc/files/lib/evosynth/operators/recombinations/identity_rb.html +119 -0
  195. data/docs/rdoc/files/lib/evosynth/operators/recombinations/k_point_crossover_rb.html +119 -0
  196. data/docs/rdoc/files/lib/evosynth/operators/recombinations/one_point_crossover_rb.html +119 -0
  197. data/docs/rdoc/files/lib/evosynth/operators/recombinations/ordered_recombination_rb.html +129 -0
  198. data/docs/rdoc/files/lib/evosynth/operators/recombinations/partially_mapped_crossover_rb.html +129 -0
  199. data/docs/rdoc/files/lib/evosynth/operators/recombinations/uniform_crossover_rb.html +119 -0
  200. data/docs/rdoc/files/lib/evosynth/operators/recombinations_rb.html +143 -0
  201. data/docs/rdoc/files/lib/evosynth/operators/selections/best_selection_rb.html +119 -0
  202. data/docs/rdoc/files/lib/evosynth/operators/selections/fitness_proportional_selection_rb.html +119 -0
  203. data/docs/rdoc/files/lib/evosynth/operators/selections/identity_rb.html +119 -0
  204. data/docs/rdoc/files/lib/evosynth/operators/selections/n_stage_tournament_selection_rb.html +119 -0
  205. data/docs/rdoc/files/lib/evosynth/operators/selections/random_selection_rb.html +119 -0
  206. data/docs/rdoc/files/lib/evosynth/operators/selections/roulette_wheel_selection_rb.html +119 -0
  207. data/docs/rdoc/files/lib/evosynth/operators/selections/tournament_selection_rb.html +119 -0
  208. data/docs/rdoc/files/lib/evosynth/operators/selections_rb.html +141 -0
  209. data/docs/rdoc/files/lib/evosynth/operators_rb.html +139 -0
  210. data/docs/rdoc/files/lib/evosynth/output/console_writer_rb.html +129 -0
  211. data/docs/rdoc/files/lib/evosynth/output/exporter/csv_exporter_rb.html +129 -0
  212. data/docs/rdoc/files/lib/evosynth/output/exporter/gnuplot_exporter_rb.html +131 -0
  213. data/docs/rdoc/files/lib/evosynth/output/exporter/gruff_exporter_rb.html +131 -0
  214. data/docs/rdoc/files/lib/evosynth/output/exporter_rb.html +133 -0
  215. data/docs/rdoc/files/lib/evosynth/output/factory_rb.html +129 -0
  216. data/docs/rdoc/files/lib/evosynth/output/logger_rb.html +119 -0
  217. data/docs/rdoc/files/lib/evosynth/output_rb.html +135 -0
  218. data/docs/rdoc/files/lib/evosynth/problems/binary_benchmark_functions_rb.html +119 -0
  219. data/docs/rdoc/files/lib/evosynth/problems/float_benchmark_functions_rb.html +1630 -0
  220. data/docs/rdoc/files/lib/evosynth/problems/graph_colouring_rb.html +129 -0
  221. data/docs/rdoc/files/lib/evosynth/problems/tsp_rb.html +129 -0
  222. data/docs/rdoc/files/lib/evosynth/problems_rb.html +135 -0
  223. data/docs/rdoc/files/lib/evosynth_rb.html +139 -0
  224. data/docs/rdoc/fr_class_index.html +245 -0
  225. data/docs/rdoc/fr_file_index.html +233 -0
  226. data/docs/rdoc/fr_method_index.html +661 -0
  227. data/docs/rdoc/index.html +21 -0
  228. data/docs/rdoc/rdoc-style.css +299 -0
  229. data/examples/ants.rb +237 -0
  230. data/examples/ccga_example.rb +150 -0
  231. data/examples/cmb_example.rb +117 -0
  232. data/examples/evolution_strategies.rb +84 -0
  233. data/examples/exporter.rb +90 -0
  234. data/examples/graph_colouring.rb +72 -0
  235. data/examples/hacking.rb +62 -0
  236. data/examples/local_search.rb +109 -0
  237. data/examples/max_ones.rb +83 -0
  238. data/examples/partition.rb +172 -0
  239. data/examples/spk.rb +106 -0
  240. data/examples/tsp.rb +83 -0
  241. data/lib/evosynth.rb +32 -0
  242. data/lib/evosynth/core.rb +33 -0
  243. data/lib/evosynth/core/array_genome.rb +77 -0
  244. data/lib/evosynth/core/binary_genome.rb +156 -0
  245. data/lib/evosynth/core/evaluator.rb +109 -0
  246. data/lib/evosynth/core/individual.rb +92 -0
  247. data/lib/evosynth/core/maximizing_individual.rb +71 -0
  248. data/lib/evosynth/core/minimizing_individual.rb +71 -0
  249. data/lib/evosynth/core/population.rb +120 -0
  250. data/lib/evosynth/core/profile.rb +110 -0
  251. data/lib/evosynth/core/randomizer.rb +73 -0
  252. data/lib/evosynth/decoder.rb +33 -0
  253. data/lib/evosynth/decoder/binary_to_real.rb +57 -0
  254. data/lib/evosynth/decoder/gray.rb +54 -0
  255. data/lib/evosynth/evolvers.rb +41 -0
  256. data/lib/evosynth/evolvers/basic/genetic_algorithm.rb +92 -0
  257. data/lib/evosynth/evolvers/basic/hillclimber.rb +64 -0
  258. data/lib/evosynth/evolvers/basic/memetic_algorithm.rb +111 -0
  259. data/lib/evosynth/evolvers/basic/population_hillclimber.rb +69 -0
  260. data/lib/evosynth/evolvers/basic/steady_state_ga.rb +85 -0
  261. data/lib/evosynth/evolvers/coevolutionary/balanced_coevolutionary.rb +125 -0
  262. data/lib/evosynth/evolvers/coevolutionary/round_robin_coevolutionary.rb +87 -0
  263. data/lib/evosynth/evolvers/elitism.rb +108 -0
  264. data/lib/evosynth/evolvers/evolution_strategies/adaptive_es.rb +104 -0
  265. data/lib/evosynth/evolvers/evolution_strategies/derandomized_es.rb +120 -0
  266. data/lib/evosynth/evolvers/evolution_strategies/selfadaptive_es.rb +82 -0
  267. data/lib/evosynth/evolvers/evolver.rb +43 -0
  268. data/lib/evosynth/evolvers/local_search/acceptance_great_deluge.rb +60 -0
  269. data/lib/evosynth/evolvers/local_search/acceptance_hillclimber.rb +47 -0
  270. data/lib/evosynth/evolvers/local_search/acceptance_record_to_record.rb +69 -0
  271. data/lib/evosynth/evolvers/local_search/acceptance_simulated_annealing.rb +59 -0
  272. data/lib/evosynth/evolvers/local_search/acceptance_threshold.rb +60 -0
  273. data/lib/evosynth/evolvers/local_search/local_search.rb +74 -0
  274. data/lib/evosynth/evolvers/profile_using_evolver.rb +77 -0
  275. data/lib/evosynth/evolvers/runnable_evolver.rb +89 -0
  276. data/lib/evosynth/operators.rb +30 -0
  277. data/lib/evosynth/operators/adjustments.rb +26 -0
  278. data/lib/evosynth/operators/adjustments/adaptive_adjustment.rb +55 -0
  279. data/lib/evosynth/operators/adjustments/predefined_adjustment.rb +46 -0
  280. data/lib/evosynth/operators/global_recombinations.rb +26 -0
  281. data/lib/evosynth/operators/global_recombinations/global_arithmetic_crossover.rb +50 -0
  282. data/lib/evosynth/operators/global_recombinations/global_uniform_crossover.rb +49 -0
  283. data/lib/evosynth/operators/meta_operators.rb +36 -0
  284. data/lib/evosynth/operators/meta_operators/conditional_combined_operator.rb +65 -0
  285. data/lib/evosynth/operators/meta_operators/proportional_combined_operator.rb +84 -0
  286. data/lib/evosynth/operators/meta_operators/sequential_combined_operator.rb +73 -0
  287. data/lib/evosynth/operators/mutations.rb +47 -0
  288. data/lib/evosynth/operators/mutations/binary_mutation.rb +100 -0
  289. data/lib/evosynth/operators/mutations/efficient_binary_mutation.rb +105 -0
  290. data/lib/evosynth/operators/mutations/exchange_mutation.rb +107 -0
  291. data/lib/evosynth/operators/mutations/flip_functions.rb +45 -0
  292. data/lib/evosynth/operators/mutations/gauss_mutation.rb +65 -0
  293. data/lib/evosynth/operators/mutations/identity.rb +62 -0
  294. data/lib/evosynth/operators/mutations/inversion_mutation.rb +73 -0
  295. data/lib/evosynth/operators/mutations/mixing_mutation.rb +75 -0
  296. data/lib/evosynth/operators/mutations/one_gene_flipping.rb +89 -0
  297. data/lib/evosynth/operators/mutations/self_adaptive_gauss_mutation.rb +73 -0
  298. data/lib/evosynth/operators/mutations/shifting_mutation.rb +88 -0
  299. data/lib/evosynth/operators/mutations/uniform_real_mutation.rb +59 -0
  300. data/lib/evosynth/operators/recombinations.rb +48 -0
  301. data/lib/evosynth/operators/recombinations/arithmetic_crossover.rb +67 -0
  302. data/lib/evosynth/operators/recombinations/edge_recombination.rb +108 -0
  303. data/lib/evosynth/operators/recombinations/identity.rb +42 -0
  304. data/lib/evosynth/operators/recombinations/k_point_crossover.rb +81 -0
  305. data/lib/evosynth/operators/recombinations/one_point_crossover.rb +56 -0
  306. data/lib/evosynth/operators/recombinations/ordered_recombination.rb +75 -0
  307. data/lib/evosynth/operators/recombinations/partially_mapped_crossover.rb +102 -0
  308. data/lib/evosynth/operators/recombinations/uniform_crossover.rb +54 -0
  309. data/lib/evosynth/operators/selections.rb +31 -0
  310. data/lib/evosynth/operators/selections/best_selection.rb +54 -0
  311. data/lib/evosynth/operators/selections/fitness_proportional_selection.rb +83 -0
  312. data/lib/evosynth/operators/selections/identity.rb +48 -0
  313. data/lib/evosynth/operators/selections/n_stage_tournament_selection.rb +84 -0
  314. data/lib/evosynth/operators/selections/random_selection.rb +44 -0
  315. data/lib/evosynth/operators/selections/roulette_wheel_selection.rb +54 -0
  316. data/lib/evosynth/operators/selections/tournament_selection.rb +71 -0
  317. data/lib/evosynth/output.rb +28 -0
  318. data/lib/evosynth/output/console_writer.rb +45 -0
  319. data/lib/evosynth/output/exporter.rb +27 -0
  320. data/lib/evosynth/output/exporter/csv_exporter.rb +62 -0
  321. data/lib/evosynth/output/exporter/gnuplot_exporter.rb +81 -0
  322. data/lib/evosynth/output/exporter/gruff_exporter.rb +70 -0
  323. data/lib/evosynth/output/factory.rb +38 -0
  324. data/lib/evosynth/output/logger.rb +83 -0
  325. data/lib/evosynth/problems.rb +37 -0
  326. data/lib/evosynth/problems/binary_benchmark_functions.rb +74 -0
  327. data/lib/evosynth/problems/float_benchmark_functions.rb +99 -0
  328. data/lib/evosynth/problems/graph_colouring.rb +89 -0
  329. data/lib/evosynth/problems/tsp.rb +88 -0
  330. data/test/benchmark/decoder_benchmark.rb +75 -0
  331. data/test/benchmark/mutation_benchmark.rb +88 -0
  332. data/test/benchmark/recombination_benchmark.rb +58 -0
  333. data/test/benchmark/selection_benchmark.rb +52 -0
  334. data/test/core/tc_array_genome.rb +154 -0
  335. data/test/core/tc_binary_genome.rb +160 -0
  336. data/test/core/tc_population.rb +154 -0
  337. data/test/core/tc_profile.rb +75 -0
  338. data/test/core/tc_randomizer.rb +165 -0
  339. data/test/coverage.rb +43 -0
  340. data/test/decoder/tc_binary_to_real.rb +52 -0
  341. data/test/decoder/tc_gray.rb +107 -0
  342. data/test/operators/adjustments/tc_adaptive_adjustment.rb +63 -0
  343. data/test/operators/adjustments/tc_predefined_adjustment.rb +49 -0
  344. data/test/operators/global_recombinations/tc_global_arithmetic_crossover.rb +78 -0
  345. data/test/operators/global_recombinations/tc_global_uniform_crossover.rb +90 -0
  346. data/test/operators/meta_operators/tc_conditional_combined_operator.rb +66 -0
  347. data/test/operators/meta_operators/tc_proportional_combined_operator.rb +167 -0
  348. data/test/operators/meta_operators/tc_sequential_combined_operator.rb +98 -0
  349. data/test/operators/mutations/tc_binary_mutation.rb +73 -0
  350. data/test/operators/mutations/tc_efficient_binary_mutation.rb +73 -0
  351. data/test/operators/mutations/tc_exchange_mutation.rb +127 -0
  352. data/test/operators/mutations/tc_gauss_mutation.rb +130 -0
  353. data/test/operators/mutations/tc_identity_mutation.rb +64 -0
  354. data/test/operators/mutations/tc_inversion_mutation.rb +70 -0
  355. data/test/operators/mutations/tc_mixing_mutation.rb +73 -0
  356. data/test/operators/mutations/tc_one_gene_flipping.rb +109 -0
  357. data/test/operators/mutations/tc_self_adaptive_gauss_mutation.rb +72 -0
  358. data/test/operators/mutations/tc_shifting_muation.rb +73 -0
  359. data/test/operators/mutations/tc_uniform_real_mutation.rb +65 -0
  360. data/test/operators/recombinations/tc_arithmetic_crossover.rb +79 -0
  361. data/test/operators/recombinations/tc_edge_recombination.rb +76 -0
  362. data/test/operators/recombinations/tc_identity_recombination.rb +81 -0
  363. data/test/operators/recombinations/tc_k_point_crossover.rb +81 -0
  364. data/test/operators/recombinations/tc_one_point_crossover.rb +80 -0
  365. data/test/operators/recombinations/tc_ordered_recombination.rb +76 -0
  366. data/test/operators/recombinations/tc_partially_mapped_crossover.rb +91 -0
  367. data/test/operators/recombinations/tc_uniform_crossover.rb +84 -0
  368. data/test/operators/selections/tc_best_selection.rb +85 -0
  369. data/test/operators/selections/tc_fitness_proportional_selection.rb +78 -0
  370. data/test/operators/selections/tc_identity.rb +91 -0
  371. data/test/operators/selections/tc_n_stage_tournament.rb +78 -0
  372. data/test/operators/selections/tc_random_selection.rb +70 -0
  373. data/test/operators/selections/tc_roulette_wheel_selection.rb +78 -0
  374. data/test/operators/selections/tc_tournament_selection.rb +83 -0
  375. data/test/problems/tc_binary_benchmark_functions.rb +126 -0
  376. data/test/problems/tc_float_benchmark_functions.rb +100 -0
  377. data/test/test_util/test_helper.rb +128 -0
  378. data/test/ts_adjustments.rb +26 -0
  379. data/test/ts_core.rb +29 -0
  380. data/test/ts_decoder.rb +26 -0
  381. data/test/ts_global_recombinations.rb +26 -0
  382. data/test/ts_meta_operators.rb +27 -0
  383. data/test/ts_mutations.rb +35 -0
  384. data/test/ts_problems.rb +26 -0
  385. data/test/ts_recombinations.rb +32 -0
  386. data/test/ts_selections.rb +31 -0
  387. data/testdata/README +4 -0
  388. data/testdata/bays29.tsp +68 -0
  389. data/testdata/myciel4.col +77 -0
  390. metadata +552 -0
@@ -0,0 +1,2643 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <title>Module: EvoSynth [EvoSynth Documentation]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
+ <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
9
+ <script type="text/javascript">
10
+ // <![CDATA[
11
+
12
+ function popupCode( url ) {
13
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
+ }
15
+
16
+ function toggleCode( id ) {
17
+ if ( document.getElementById )
18
+ elem = document.getElementById( id );
19
+ else if ( document.all )
20
+ elem = eval( "document.all." + id );
21
+ else
22
+ return false;
23
+
24
+ elemStyle = elem.style;
25
+
26
+ if ( elemStyle.display != "block" ) {
27
+ elemStyle.display = "block"
28
+ } else {
29
+ elemStyle.display = "none"
30
+ }
31
+
32
+ return true;
33
+ }
34
+
35
+ // Make codeblocks hidden by default
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
38
+ // ]]>
39
+ </script>
40
+
41
+ </head>
42
+ <body>
43
+
44
+
45
+ <div id="classHeader">
46
+ <table class="header-table">
47
+ <tr class="top-aligned-row">
48
+ <td><strong>Module</strong></td>
49
+ <td class="class-name-in-header">EvoSynth</td>
50
+ </tr>
51
+ <tr class="top-aligned-row">
52
+ <td><strong>In:</strong></td>
53
+ <td>
54
+
55
+
56
+ <a href="../files/lib/evosynth/problems/graph_colouring_rb.html">
57
+
58
+ lib/evosynth/problems/graph_colouring.rb
59
+
60
+ </a>
61
+
62
+
63
+ <br />
64
+
65
+
66
+ <a href="../files/lib/evosynth/problems/float_benchmark_functions_rb.html">
67
+
68
+ lib/evosynth/problems/float_benchmark_functions.rb
69
+
70
+ </a>
71
+
72
+
73
+ <br />
74
+
75
+
76
+ <a href="../files/lib/evosynth/problems/tsp_rb.html">
77
+
78
+ lib/evosynth/problems/tsp.rb
79
+
80
+ </a>
81
+
82
+
83
+ <br />
84
+
85
+
86
+ <a href="../files/lib/evosynth/problems/binary_benchmark_functions_rb.html">
87
+
88
+ lib/evosynth/problems/binary_benchmark_functions.rb
89
+
90
+ </a>
91
+
92
+
93
+ <br />
94
+
95
+
96
+ <a href="../files/lib/evosynth/operators/adjustments/predefined_adjustment_rb.html">
97
+
98
+ lib/evosynth/operators/adjustments/predefined_adjustment.rb
99
+
100
+ </a>
101
+
102
+
103
+ <br />
104
+
105
+
106
+ <a href="../files/lib/evosynth/operators/adjustments/adaptive_adjustment_rb.html">
107
+
108
+ lib/evosynth/operators/adjustments/adaptive_adjustment.rb
109
+
110
+ </a>
111
+
112
+
113
+ <br />
114
+
115
+
116
+ <a href="../files/lib/evosynth/operators/meta_operators_rb.html">
117
+
118
+ lib/evosynth/operators/meta_operators.rb
119
+
120
+ </a>
121
+
122
+
123
+ <br />
124
+
125
+
126
+ <a href="../files/lib/evosynth/operators/global_recombinations/global_arithmetic_crossover_rb.html">
127
+
128
+ lib/evosynth/operators/global_recombinations/global_arithmetic_crossover.rb
129
+
130
+ </a>
131
+
132
+
133
+ <br />
134
+
135
+
136
+ <a href="../files/lib/evosynth/operators/global_recombinations/global_uniform_crossover_rb.html">
137
+
138
+ lib/evosynth/operators/global_recombinations/global_uniform_crossover.rb
139
+
140
+ </a>
141
+
142
+
143
+ <br />
144
+
145
+
146
+ <a href="../files/lib/evosynth/operators/selections/tournament_selection_rb.html">
147
+
148
+ lib/evosynth/operators/selections/tournament_selection.rb
149
+
150
+ </a>
151
+
152
+
153
+ <br />
154
+
155
+
156
+ <a href="../files/lib/evosynth/operators/selections/best_selection_rb.html">
157
+
158
+ lib/evosynth/operators/selections/best_selection.rb
159
+
160
+ </a>
161
+
162
+
163
+ <br />
164
+
165
+
166
+ <a href="../files/lib/evosynth/operators/selections/roulette_wheel_selection_rb.html">
167
+
168
+ lib/evosynth/operators/selections/roulette_wheel_selection.rb
169
+
170
+ </a>
171
+
172
+
173
+ <br />
174
+
175
+
176
+ <a href="../files/lib/evosynth/operators/selections/n_stage_tournament_selection_rb.html">
177
+
178
+ lib/evosynth/operators/selections/n_stage_tournament_selection.rb
179
+
180
+ </a>
181
+
182
+
183
+ <br />
184
+
185
+
186
+ <a href="../files/lib/evosynth/operators/selections/identity_rb.html">
187
+
188
+ lib/evosynth/operators/selections/identity.rb
189
+
190
+ </a>
191
+
192
+
193
+ <br />
194
+
195
+
196
+ <a href="../files/lib/evosynth/operators/selections/fitness_proportional_selection_rb.html">
197
+
198
+ lib/evosynth/operators/selections/fitness_proportional_selection.rb
199
+
200
+ </a>
201
+
202
+
203
+ <br />
204
+
205
+
206
+ <a href="../files/lib/evosynth/operators/selections/random_selection_rb.html">
207
+
208
+ lib/evosynth/operators/selections/random_selection.rb
209
+
210
+ </a>
211
+
212
+
213
+ <br />
214
+
215
+
216
+ <a href="../files/lib/evosynth/operators/mutations/inversion_mutation_rb.html">
217
+
218
+ lib/evosynth/operators/mutations/inversion_mutation.rb
219
+
220
+ </a>
221
+
222
+
223
+ <br />
224
+
225
+
226
+ <a href="../files/lib/evosynth/operators/mutations/exchange_mutation_rb.html">
227
+
228
+ lib/evosynth/operators/mutations/exchange_mutation.rb
229
+
230
+ </a>
231
+
232
+
233
+ <br />
234
+
235
+
236
+ <a href="../files/lib/evosynth/operators/mutations/binary_mutation_rb.html">
237
+
238
+ lib/evosynth/operators/mutations/binary_mutation.rb
239
+
240
+ </a>
241
+
242
+
243
+ <br />
244
+
245
+
246
+ <a href="../files/lib/evosynth/operators/mutations/uniform_real_mutation_rb.html">
247
+
248
+ lib/evosynth/operators/mutations/uniform_real_mutation.rb
249
+
250
+ </a>
251
+
252
+
253
+ <br />
254
+
255
+
256
+ <a href="../files/lib/evosynth/operators/mutations/shifting_mutation_rb.html">
257
+
258
+ lib/evosynth/operators/mutations/shifting_mutation.rb
259
+
260
+ </a>
261
+
262
+
263
+ <br />
264
+
265
+
266
+ <a href="../files/lib/evosynth/operators/mutations/self_adaptive_gauss_mutation_rb.html">
267
+
268
+ lib/evosynth/operators/mutations/self_adaptive_gauss_mutation.rb
269
+
270
+ </a>
271
+
272
+
273
+ <br />
274
+
275
+
276
+ <a href="../files/lib/evosynth/operators/mutations/mixing_mutation_rb.html">
277
+
278
+ lib/evosynth/operators/mutations/mixing_mutation.rb
279
+
280
+ </a>
281
+
282
+
283
+ <br />
284
+
285
+
286
+ <a href="../files/lib/evosynth/operators/mutations/one_gene_flipping_rb.html">
287
+
288
+ lib/evosynth/operators/mutations/one_gene_flipping.rb
289
+
290
+ </a>
291
+
292
+
293
+ <br />
294
+
295
+
296
+ <a href="../files/lib/evosynth/operators/mutations/gauss_mutation_rb.html">
297
+
298
+ lib/evosynth/operators/mutations/gauss_mutation.rb
299
+
300
+ </a>
301
+
302
+
303
+ <br />
304
+
305
+
306
+ <a href="../files/lib/evosynth/operators/mutations/flip_functions_rb.html">
307
+
308
+ lib/evosynth/operators/mutations/flip_functions.rb
309
+
310
+ </a>
311
+
312
+
313
+ <br />
314
+
315
+
316
+ <a href="../files/lib/evosynth/operators/mutations/identity_rb.html">
317
+
318
+ lib/evosynth/operators/mutations/identity.rb
319
+
320
+ </a>
321
+
322
+
323
+ <br />
324
+
325
+
326
+ <a href="../files/lib/evosynth/operators/mutations/efficient_binary_mutation_rb.html">
327
+
328
+ lib/evosynth/operators/mutations/efficient_binary_mutation.rb
329
+
330
+ </a>
331
+
332
+
333
+ <br />
334
+
335
+
336
+ <a href="../files/lib/evosynth/operators/recombinations/partially_mapped_crossover_rb.html">
337
+
338
+ lib/evosynth/operators/recombinations/partially_mapped_crossover.rb
339
+
340
+ </a>
341
+
342
+
343
+ <br />
344
+
345
+
346
+ <a href="../files/lib/evosynth/operators/recombinations/one_point_crossover_rb.html">
347
+
348
+ lib/evosynth/operators/recombinations/one_point_crossover.rb
349
+
350
+ </a>
351
+
352
+
353
+ <br />
354
+
355
+
356
+ <a href="../files/lib/evosynth/operators/recombinations/edge_recombination_rb.html">
357
+
358
+ lib/evosynth/operators/recombinations/edge_recombination.rb
359
+
360
+ </a>
361
+
362
+
363
+ <br />
364
+
365
+
366
+ <a href="../files/lib/evosynth/operators/recombinations/ordered_recombination_rb.html">
367
+
368
+ lib/evosynth/operators/recombinations/ordered_recombination.rb
369
+
370
+ </a>
371
+
372
+
373
+ <br />
374
+
375
+
376
+ <a href="../files/lib/evosynth/operators/recombinations/arithmetic_crossover_rb.html">
377
+
378
+ lib/evosynth/operators/recombinations/arithmetic_crossover.rb
379
+
380
+ </a>
381
+
382
+
383
+ <br />
384
+
385
+
386
+ <a href="../files/lib/evosynth/operators/recombinations/uniform_crossover_rb.html">
387
+
388
+ lib/evosynth/operators/recombinations/uniform_crossover.rb
389
+
390
+ </a>
391
+
392
+
393
+ <br />
394
+
395
+
396
+ <a href="../files/lib/evosynth/operators/recombinations/identity_rb.html">
397
+
398
+ lib/evosynth/operators/recombinations/identity.rb
399
+
400
+ </a>
401
+
402
+
403
+ <br />
404
+
405
+
406
+ <a href="../files/lib/evosynth/operators/recombinations/k_point_crossover_rb.html">
407
+
408
+ lib/evosynth/operators/recombinations/k_point_crossover.rb
409
+
410
+ </a>
411
+
412
+
413
+ <br />
414
+
415
+
416
+ <a href="../files/lib/evosynth/operators/meta_operators/conditional_combined_operator_rb.html">
417
+
418
+ lib/evosynth/operators/meta_operators/conditional_combined_operator.rb
419
+
420
+ </a>
421
+
422
+
423
+ <br />
424
+
425
+
426
+ <a href="../files/lib/evosynth/operators/meta_operators/proportional_combined_operator_rb.html">
427
+
428
+ lib/evosynth/operators/meta_operators/proportional_combined_operator.rb
429
+
430
+ </a>
431
+
432
+
433
+ <br />
434
+
435
+
436
+ <a href="../files/lib/evosynth/operators/meta_operators/sequential_combined_operator_rb.html">
437
+
438
+ lib/evosynth/operators/meta_operators/sequential_combined_operator.rb
439
+
440
+ </a>
441
+
442
+
443
+ <br />
444
+
445
+
446
+ <a href="../files/lib/evosynth/operators/mutations_rb.html">
447
+
448
+ lib/evosynth/operators/mutations.rb
449
+
450
+ </a>
451
+
452
+
453
+ <br />
454
+
455
+
456
+ <a href="../files/lib/evosynth/operators/recombinations_rb.html">
457
+
458
+ lib/evosynth/operators/recombinations.rb
459
+
460
+ </a>
461
+
462
+
463
+ <br />
464
+
465
+
466
+ <a href="../files/lib/evosynth/output/logger_rb.html">
467
+
468
+ lib/evosynth/output/logger.rb
469
+
470
+ </a>
471
+
472
+
473
+ <br />
474
+
475
+
476
+ <a href="../files/lib/evosynth/output/console_writer_rb.html">
477
+
478
+ lib/evosynth/output/console_writer.rb
479
+
480
+ </a>
481
+
482
+
483
+ <br />
484
+
485
+
486
+ <a href="../files/lib/evosynth/output/exporter/gnuplot_exporter_rb.html">
487
+
488
+ lib/evosynth/output/exporter/gnuplot_exporter.rb
489
+
490
+ </a>
491
+
492
+
493
+ <br />
494
+
495
+
496
+ <a href="../files/lib/evosynth/output/exporter/gruff_exporter_rb.html">
497
+
498
+ lib/evosynth/output/exporter/gruff_exporter.rb
499
+
500
+ </a>
501
+
502
+
503
+ <br />
504
+
505
+
506
+ <a href="../files/lib/evosynth/output/exporter/csv_exporter_rb.html">
507
+
508
+ lib/evosynth/output/exporter/csv_exporter.rb
509
+
510
+ </a>
511
+
512
+
513
+ <br />
514
+
515
+
516
+ <a href="../files/lib/evosynth/output/factory_rb.html">
517
+
518
+ lib/evosynth/output/factory.rb
519
+
520
+ </a>
521
+
522
+
523
+ <br />
524
+
525
+
526
+ <a href="../files/lib/evosynth/decoder_rb.html">
527
+
528
+ lib/evosynth/decoder.rb
529
+
530
+ </a>
531
+
532
+
533
+ <br />
534
+
535
+
536
+ <a href="../files/lib/evosynth/core/minimizing_individual_rb.html">
537
+
538
+ lib/evosynth/core/minimizing_individual.rb
539
+
540
+ </a>
541
+
542
+
543
+ <br />
544
+
545
+
546
+ <a href="../files/lib/evosynth/core/randomizer_rb.html">
547
+
548
+ lib/evosynth/core/randomizer.rb
549
+
550
+ </a>
551
+
552
+
553
+ <br />
554
+
555
+
556
+ <a href="../files/lib/evosynth/core/profile_rb.html">
557
+
558
+ lib/evosynth/core/profile.rb
559
+
560
+ </a>
561
+
562
+
563
+ <br />
564
+
565
+
566
+ <a href="../files/lib/evosynth/core/evaluator_rb.html">
567
+
568
+ lib/evosynth/core/evaluator.rb
569
+
570
+ </a>
571
+
572
+
573
+ <br />
574
+
575
+
576
+ <a href="../files/lib/evosynth/core/array_genome_rb.html">
577
+
578
+ lib/evosynth/core/array_genome.rb
579
+
580
+ </a>
581
+
582
+
583
+ <br />
584
+
585
+
586
+ <a href="../files/lib/evosynth/core/population_rb.html">
587
+
588
+ lib/evosynth/core/population.rb
589
+
590
+ </a>
591
+
592
+
593
+ <br />
594
+
595
+
596
+ <a href="../files/lib/evosynth/core/maximizing_individual_rb.html">
597
+
598
+ lib/evosynth/core/maximizing_individual.rb
599
+
600
+ </a>
601
+
602
+
603
+ <br />
604
+
605
+
606
+ <a href="../files/lib/evosynth/core/binary_genome_rb.html">
607
+
608
+ lib/evosynth/core/binary_genome.rb
609
+
610
+ </a>
611
+
612
+
613
+ <br />
614
+
615
+
616
+ <a href="../files/lib/evosynth/core/individual_rb.html">
617
+
618
+ lib/evosynth/core/individual.rb
619
+
620
+ </a>
621
+
622
+
623
+ <br />
624
+
625
+
626
+ <a href="../files/lib/evosynth/decoder/binary_to_real_rb.html">
627
+
628
+ lib/evosynth/decoder/binary_to_real.rb
629
+
630
+ </a>
631
+
632
+
633
+ <br />
634
+
635
+
636
+ <a href="../files/lib/evosynth/decoder/gray_rb.html">
637
+
638
+ lib/evosynth/decoder/gray.rb
639
+
640
+ </a>
641
+
642
+
643
+ <br />
644
+
645
+
646
+ <a href="../files/lib/evosynth/problems_rb.html">
647
+
648
+ lib/evosynth/problems.rb
649
+
650
+ </a>
651
+
652
+
653
+ <br />
654
+
655
+
656
+ <a href="../files/lib/evosynth/evolvers/coevolutionary/round_robin_coevolutionary_rb.html">
657
+
658
+ lib/evosynth/evolvers/coevolutionary/round_robin_coevolutionary.rb
659
+
660
+ </a>
661
+
662
+
663
+ <br />
664
+
665
+
666
+ <a href="../files/lib/evosynth/evolvers/coevolutionary/balanced_coevolutionary_rb.html">
667
+
668
+ lib/evosynth/evolvers/coevolutionary/balanced_coevolutionary.rb
669
+
670
+ </a>
671
+
672
+
673
+ <br />
674
+
675
+
676
+ <a href="../files/lib/evosynth/evolvers/local_search/local_search_rb.html">
677
+
678
+ lib/evosynth/evolvers/local_search/local_search.rb
679
+
680
+ </a>
681
+
682
+
683
+ <br />
684
+
685
+
686
+ <a href="../files/lib/evosynth/evolvers/local_search/acceptance_record_to_record_rb.html">
687
+
688
+ lib/evosynth/evolvers/local_search/acceptance_record_to_record.rb
689
+
690
+ </a>
691
+
692
+
693
+ <br />
694
+
695
+
696
+ <a href="../files/lib/evosynth/evolvers/local_search/acceptance_threshold_rb.html">
697
+
698
+ lib/evosynth/evolvers/local_search/acceptance_threshold.rb
699
+
700
+ </a>
701
+
702
+
703
+ <br />
704
+
705
+
706
+ <a href="../files/lib/evosynth/evolvers/local_search/acceptance_hillclimber_rb.html">
707
+
708
+ lib/evosynth/evolvers/local_search/acceptance_hillclimber.rb
709
+
710
+ </a>
711
+
712
+
713
+ <br />
714
+
715
+
716
+ <a href="../files/lib/evosynth/evolvers/local_search/acceptance_great_deluge_rb.html">
717
+
718
+ lib/evosynth/evolvers/local_search/acceptance_great_deluge.rb
719
+
720
+ </a>
721
+
722
+
723
+ <br />
724
+
725
+
726
+ <a href="../files/lib/evosynth/evolvers/local_search/acceptance_simulated_annealing_rb.html">
727
+
728
+ lib/evosynth/evolvers/local_search/acceptance_simulated_annealing.rb
729
+
730
+ </a>
731
+
732
+
733
+ <br />
734
+
735
+
736
+ <a href="../files/lib/evosynth/evolvers/evolution_strategies/derandomized_es_rb.html">
737
+
738
+ lib/evosynth/evolvers/evolution_strategies/derandomized_es.rb
739
+
740
+ </a>
741
+
742
+
743
+ <br />
744
+
745
+
746
+ <a href="../files/lib/evosynth/evolvers/evolution_strategies/adaptive_es_rb.html">
747
+
748
+ lib/evosynth/evolvers/evolution_strategies/adaptive_es.rb
749
+
750
+ </a>
751
+
752
+
753
+ <br />
754
+
755
+
756
+ <a href="../files/lib/evosynth/evolvers/evolution_strategies/selfadaptive_es_rb.html">
757
+
758
+ lib/evosynth/evolvers/evolution_strategies/selfadaptive_es.rb
759
+
760
+ </a>
761
+
762
+
763
+ <br />
764
+
765
+
766
+ <a href="../files/lib/evosynth/evolvers/runnable_evolver_rb.html">
767
+
768
+ lib/evosynth/evolvers/runnable_evolver.rb
769
+
770
+ </a>
771
+
772
+
773
+ <br />
774
+
775
+
776
+ <a href="../files/lib/evosynth/evolvers/evolver_rb.html">
777
+
778
+ lib/evosynth/evolvers/evolver.rb
779
+
780
+ </a>
781
+
782
+
783
+ <br />
784
+
785
+
786
+ <a href="../files/lib/evosynth/evolvers/profile_using_evolver_rb.html">
787
+
788
+ lib/evosynth/evolvers/profile_using_evolver.rb
789
+
790
+ </a>
791
+
792
+
793
+ <br />
794
+
795
+
796
+ <a href="../files/lib/evosynth/evolvers/basic/steady_state_ga_rb.html">
797
+
798
+ lib/evosynth/evolvers/basic/steady_state_ga.rb
799
+
800
+ </a>
801
+
802
+
803
+ <br />
804
+
805
+
806
+ <a href="../files/lib/evosynth/evolvers/basic/memetic_algorithm_rb.html">
807
+
808
+ lib/evosynth/evolvers/basic/memetic_algorithm.rb
809
+
810
+ </a>
811
+
812
+
813
+ <br />
814
+
815
+
816
+ <a href="../files/lib/evosynth/evolvers/basic/population_hillclimber_rb.html">
817
+
818
+ lib/evosynth/evolvers/basic/population_hillclimber.rb
819
+
820
+ </a>
821
+
822
+
823
+ <br />
824
+
825
+
826
+ <a href="../files/lib/evosynth/evolvers/basic/genetic_algorithm_rb.html">
827
+
828
+ lib/evosynth/evolvers/basic/genetic_algorithm.rb
829
+
830
+ </a>
831
+
832
+
833
+ <br />
834
+
835
+
836
+ <a href="../files/lib/evosynth/evolvers/basic/hillclimber_rb.html">
837
+
838
+ lib/evosynth/evolvers/basic/hillclimber.rb
839
+
840
+ </a>
841
+
842
+
843
+ <br />
844
+
845
+
846
+ <a href="../files/lib/evosynth/evolvers/elitism_rb.html">
847
+
848
+ lib/evosynth/evolvers/elitism.rb
849
+
850
+ </a>
851
+
852
+
853
+ <br />
854
+
855
+ </td>
856
+ </tr>
857
+
858
+
859
+ </table>
860
+ </div>
861
+ <!-- banner header -->
862
+
863
+ <div id="bodyContent">
864
+
865
+ <div id="contextContent">
866
+
867
+ <div id="description">
868
+ <pre>
869
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
870
+
871
+ Permission is hereby granted, free of charge, to any person
872
+ obtaining a copy of this software and associated documentation
873
+ files (the &quot;Software&quot;), to deal in the Software without
874
+ restriction, including without limitation the rights to use,
875
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
876
+ copies of the Software, and to permit persons to whom the
877
+ Software is furnished to do so, subject to the following
878
+ conditions:
879
+
880
+ The above copyright notice and this permission notice shall be
881
+ included in all copies or substantial portions of the Software.
882
+
883
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
884
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
885
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
886
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
887
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
888
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
889
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
890
+ OTHER DEALINGS IN THE SOFTWARE.
891
+ </pre>
892
+ <hr size="1"></hr><pre>
893
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
894
+
895
+ Permission is hereby granted, free of charge, to any person
896
+ obtaining a copy of this software and associated documentation
897
+ files (the &quot;Software&quot;), to deal in the Software without
898
+ restriction, including without limitation the rights to use,
899
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
900
+ copies of the Software, and to permit persons to whom the
901
+ Software is furnished to do so, subject to the following
902
+ conditions:
903
+
904
+ The above copyright notice and this permission notice shall be
905
+ included in all copies or substantial portions of the Software.
906
+
907
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
908
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
909
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
910
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
911
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
912
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
913
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
914
+ OTHER DEALINGS IN THE SOFTWARE.
915
+ </pre>
916
+ <hr size="1"></hr><pre>
917
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
918
+
919
+ Permission is hereby granted, free of charge, to any person
920
+ obtaining a copy of this software and associated documentation
921
+ files (the &quot;Software&quot;), to deal in the Software without
922
+ restriction, including without limitation the rights to use,
923
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
924
+ copies of the Software, and to permit persons to whom the
925
+ Software is furnished to do so, subject to the following
926
+ conditions:
927
+
928
+ The above copyright notice and this permission notice shall be
929
+ included in all copies or substantial portions of the Software.
930
+
931
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
932
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
933
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
934
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
935
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
936
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
937
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
938
+ OTHER DEALINGS IN THE SOFTWARE.
939
+ </pre>
940
+ <hr size="1"></hr><pre>
941
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
942
+
943
+ Permission is hereby granted, free of charge, to any person
944
+ obtaining a copy of this software and associated documentation
945
+ files (the &quot;Software&quot;), to deal in the Software without
946
+ restriction, including without limitation the rights to use,
947
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
948
+ copies of the Software, and to permit persons to whom the
949
+ Software is furnished to do so, subject to the following
950
+ conditions:
951
+
952
+ The above copyright notice and this permission notice shall be
953
+ included in all copies or substantial portions of the Software.
954
+
955
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
956
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
957
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
958
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
959
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
960
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
961
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
962
+ OTHER DEALINGS IN THE SOFTWARE.
963
+ </pre>
964
+ <hr size="1"></hr><pre>
965
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
966
+
967
+ Permission is hereby granted, free of charge, to any person
968
+ obtaining a copy of this software and associated documentation
969
+ files (the &quot;Software&quot;), to deal in the Software without
970
+ restriction, including without limitation the rights to use,
971
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
972
+ copies of the Software, and to permit persons to whom the
973
+ Software is furnished to do so, subject to the following
974
+ conditions:
975
+
976
+ The above copyright notice and this permission notice shall be
977
+ included in all copies or substantial portions of the Software.
978
+
979
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
980
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
981
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
982
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
983
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
984
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
985
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
986
+ OTHER DEALINGS IN THE SOFTWARE.
987
+ </pre>
988
+ <hr size="1"></hr><pre>
989
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
990
+
991
+ Permission is hereby granted, free of charge, to any person
992
+ obtaining a copy of this software and associated documentation
993
+ files (the &quot;Software&quot;), to deal in the Software without
994
+ restriction, including without limitation the rights to use,
995
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
996
+ copies of the Software, and to permit persons to whom the
997
+ Software is furnished to do so, subject to the following
998
+ conditions:
999
+
1000
+ The above copyright notice and this permission notice shall be
1001
+ included in all copies or substantial portions of the Software.
1002
+
1003
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1004
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1005
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1006
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1007
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1008
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1009
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1010
+ OTHER DEALINGS IN THE SOFTWARE.
1011
+ </pre>
1012
+ <hr size="1"></hr><pre>
1013
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1014
+
1015
+ Permission is hereby granted, free of charge, to any person
1016
+ obtaining a copy of this software and associated documentation
1017
+ files (the &quot;Software&quot;), to deal in the Software without
1018
+ restriction, including without limitation the rights to use,
1019
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1020
+ copies of the Software, and to permit persons to whom the
1021
+ Software is furnished to do so, subject to the following
1022
+ conditions:
1023
+
1024
+ The above copyright notice and this permission notice shall be
1025
+ included in all copies or substantial portions of the Software.
1026
+
1027
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1028
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1029
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1030
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1031
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1032
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1033
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1034
+ OTHER DEALINGS IN THE SOFTWARE.
1035
+ </pre>
1036
+ <hr size="1"></hr><pre>
1037
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1038
+
1039
+ Permission is hereby granted, free of charge, to any person
1040
+ obtaining a copy of this software and associated documentation
1041
+ files (the &quot;Software&quot;), to deal in the Software without
1042
+ restriction, including without limitation the rights to use,
1043
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1044
+ copies of the Software, and to permit persons to whom the
1045
+ Software is furnished to do so, subject to the following
1046
+ conditions:
1047
+
1048
+ The above copyright notice and this permission notice shall be
1049
+ included in all copies or substantial portions of the Software.
1050
+
1051
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1052
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1053
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1054
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1055
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1056
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1057
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1058
+ OTHER DEALINGS IN THE SOFTWARE.
1059
+ </pre>
1060
+ <hr size="1"></hr><pre>
1061
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1062
+
1063
+ Permission is hereby granted, free of charge, to any person
1064
+ obtaining a copy of this software and associated documentation
1065
+ files (the &quot;Software&quot;), to deal in the Software without
1066
+ restriction, including without limitation the rights to use,
1067
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1068
+ copies of the Software, and to permit persons to whom the
1069
+ Software is furnished to do so, subject to the following
1070
+ conditions:
1071
+
1072
+ The above copyright notice and this permission notice shall be
1073
+ included in all copies or substantial portions of the Software.
1074
+
1075
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1076
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1077
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1078
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1079
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1080
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1081
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1082
+ OTHER DEALINGS IN THE SOFTWARE.
1083
+ </pre>
1084
+ <hr size="1"></hr><pre>
1085
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1086
+
1087
+ Permission is hereby granted, free of charge, to any person
1088
+ obtaining a copy of this software and associated documentation
1089
+ files (the &quot;Software&quot;), to deal in the Software without
1090
+ restriction, including without limitation the rights to use,
1091
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1092
+ copies of the Software, and to permit persons to whom the
1093
+ Software is furnished to do so, subject to the following
1094
+ conditions:
1095
+
1096
+ The above copyright notice and this permission notice shall be
1097
+ included in all copies or substantial portions of the Software.
1098
+
1099
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1100
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1101
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1102
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1103
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1104
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1105
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1106
+ OTHER DEALINGS IN THE SOFTWARE.
1107
+ </pre>
1108
+ <hr size="1"></hr><pre>
1109
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1110
+
1111
+ Permission is hereby granted, free of charge, to any person
1112
+ obtaining a copy of this software and associated documentation
1113
+ files (the &quot;Software&quot;), to deal in the Software without
1114
+ restriction, including without limitation the rights to use,
1115
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1116
+ copies of the Software, and to permit persons to whom the
1117
+ Software is furnished to do so, subject to the following
1118
+ conditions:
1119
+
1120
+ The above copyright notice and this permission notice shall be
1121
+ included in all copies or substantial portions of the Software.
1122
+
1123
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1124
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1125
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1126
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1127
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1128
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1129
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1130
+ OTHER DEALINGS IN THE SOFTWARE.
1131
+ </pre>
1132
+ <hr size="1"></hr><pre>
1133
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1134
+
1135
+ Permission is hereby granted, free of charge, to any person
1136
+ obtaining a copy of this software and associated documentation
1137
+ files (the &quot;Software&quot;), to deal in the Software without
1138
+ restriction, including without limitation the rights to use,
1139
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1140
+ copies of the Software, and to permit persons to whom the
1141
+ Software is furnished to do so, subject to the following
1142
+ conditions:
1143
+
1144
+ The above copyright notice and this permission notice shall be
1145
+ included in all copies or substantial portions of the Software.
1146
+
1147
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1148
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1149
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1150
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1151
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1152
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1153
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1154
+ OTHER DEALINGS IN THE SOFTWARE.
1155
+ </pre>
1156
+ <hr size="1"></hr><pre>
1157
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1158
+
1159
+ Permission is hereby granted, free of charge, to any person
1160
+ obtaining a copy of this software and associated documentation
1161
+ files (the &quot;Software&quot;), to deal in the Software without
1162
+ restriction, including without limitation the rights to use,
1163
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1164
+ copies of the Software, and to permit persons to whom the
1165
+ Software is furnished to do so, subject to the following
1166
+ conditions:
1167
+
1168
+ The above copyright notice and this permission notice shall be
1169
+ included in all copies or substantial portions of the Software.
1170
+
1171
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1172
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1173
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1174
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1175
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1176
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1177
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1178
+ OTHER DEALINGS IN THE SOFTWARE.
1179
+ </pre>
1180
+ <hr size="1"></hr><pre>
1181
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1182
+
1183
+ Permission is hereby granted, free of charge, to any person
1184
+ obtaining a copy of this software and associated documentation
1185
+ files (the &quot;Software&quot;), to deal in the Software without
1186
+ restriction, including without limitation the rights to use,
1187
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1188
+ copies of the Software, and to permit persons to whom the
1189
+ Software is furnished to do so, subject to the following
1190
+ conditions:
1191
+
1192
+ The above copyright notice and this permission notice shall be
1193
+ included in all copies or substantial portions of the Software.
1194
+
1195
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1196
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1197
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1198
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1199
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1200
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1201
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1202
+ OTHER DEALINGS IN THE SOFTWARE.
1203
+ </pre>
1204
+ <hr size="1"></hr><pre>
1205
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1206
+
1207
+ Permission is hereby granted, free of charge, to any person
1208
+ obtaining a copy of this software and associated documentation
1209
+ files (the &quot;Software&quot;), to deal in the Software without
1210
+ restriction, including without limitation the rights to use,
1211
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1212
+ copies of the Software, and to permit persons to whom the
1213
+ Software is furnished to do so, subject to the following
1214
+ conditions:
1215
+
1216
+ The above copyright notice and this permission notice shall be
1217
+ included in all copies or substantial portions of the Software.
1218
+
1219
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1220
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1221
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1222
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1223
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1224
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1225
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1226
+ OTHER DEALINGS IN THE SOFTWARE.
1227
+ </pre>
1228
+ <hr size="1"></hr><pre>
1229
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1230
+
1231
+ Permission is hereby granted, free of charge, to any person
1232
+ obtaining a copy of this software and associated documentation
1233
+ files (the &quot;Software&quot;), to deal in the Software without
1234
+ restriction, including without limitation the rights to use,
1235
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1236
+ copies of the Software, and to permit persons to whom the
1237
+ Software is furnished to do so, subject to the following
1238
+ conditions:
1239
+
1240
+ The above copyright notice and this permission notice shall be
1241
+ included in all copies or substantial portions of the Software.
1242
+
1243
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1244
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1245
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1246
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1247
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1248
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1249
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1250
+ OTHER DEALINGS IN THE SOFTWARE.
1251
+ </pre>
1252
+ <hr size="1"></hr><pre>
1253
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1254
+
1255
+ Permission is hereby granted, free of charge, to any person
1256
+ obtaining a copy of this software and associated documentation
1257
+ files (the &quot;Software&quot;), to deal in the Software without
1258
+ restriction, including without limitation the rights to use,
1259
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1260
+ copies of the Software, and to permit persons to whom the
1261
+ Software is furnished to do so, subject to the following
1262
+ conditions:
1263
+
1264
+ The above copyright notice and this permission notice shall be
1265
+ included in all copies or substantial portions of the Software.
1266
+
1267
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1268
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1269
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1270
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1271
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1272
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1273
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1274
+ OTHER DEALINGS IN THE SOFTWARE.
1275
+ </pre>
1276
+ <hr size="1"></hr><pre>
1277
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1278
+
1279
+ Permission is hereby granted, free of charge, to any person
1280
+ obtaining a copy of this software and associated documentation
1281
+ files (the &quot;Software&quot;), to deal in the Software without
1282
+ restriction, including without limitation the rights to use,
1283
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1284
+ copies of the Software, and to permit persons to whom the
1285
+ Software is furnished to do so, subject to the following
1286
+ conditions:
1287
+
1288
+ The above copyright notice and this permission notice shall be
1289
+ included in all copies or substantial portions of the Software.
1290
+
1291
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1292
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1293
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1294
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1295
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1296
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1297
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1298
+ OTHER DEALINGS IN THE SOFTWARE.
1299
+ </pre>
1300
+ <hr size="1"></hr><pre>
1301
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1302
+
1303
+ Permission is hereby granted, free of charge, to any person
1304
+ obtaining a copy of this software and associated documentation
1305
+ files (the &quot;Software&quot;), to deal in the Software without
1306
+ restriction, including without limitation the rights to use,
1307
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1308
+ copies of the Software, and to permit persons to whom the
1309
+ Software is furnished to do so, subject to the following
1310
+ conditions:
1311
+
1312
+ The above copyright notice and this permission notice shall be
1313
+ included in all copies or substantial portions of the Software.
1314
+
1315
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1316
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1317
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1318
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1319
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1320
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1321
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1322
+ OTHER DEALINGS IN THE SOFTWARE.
1323
+ </pre>
1324
+ <hr size="1"></hr><pre>
1325
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1326
+
1327
+ Permission is hereby granted, free of charge, to any person
1328
+ obtaining a copy of this software and associated documentation
1329
+ files (the &quot;Software&quot;), to deal in the Software without
1330
+ restriction, including without limitation the rights to use,
1331
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1332
+ copies of the Software, and to permit persons to whom the
1333
+ Software is furnished to do so, subject to the following
1334
+ conditions:
1335
+
1336
+ The above copyright notice and this permission notice shall be
1337
+ included in all copies or substantial portions of the Software.
1338
+
1339
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1340
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1341
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1342
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1343
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1344
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1345
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1346
+ OTHER DEALINGS IN THE SOFTWARE.
1347
+ </pre>
1348
+ <hr size="1"></hr><pre>
1349
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1350
+
1351
+ Permission is hereby granted, free of charge, to any person
1352
+ obtaining a copy of this software and associated documentation
1353
+ files (the &quot;Software&quot;), to deal in the Software without
1354
+ restriction, including without limitation the rights to use,
1355
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1356
+ copies of the Software, and to permit persons to whom the
1357
+ Software is furnished to do so, subject to the following
1358
+ conditions:
1359
+
1360
+ The above copyright notice and this permission notice shall be
1361
+ included in all copies or substantial portions of the Software.
1362
+
1363
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1364
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1365
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1366
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1367
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1368
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1369
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1370
+ OTHER DEALINGS IN THE SOFTWARE.
1371
+ </pre>
1372
+ <hr size="1"></hr><pre>
1373
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1374
+
1375
+ Permission is hereby granted, free of charge, to any person
1376
+ obtaining a copy of this software and associated documentation
1377
+ files (the &quot;Software&quot;), to deal in the Software without
1378
+ restriction, including without limitation the rights to use,
1379
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1380
+ copies of the Software, and to permit persons to whom the
1381
+ Software is furnished to do so, subject to the following
1382
+ conditions:
1383
+
1384
+ The above copyright notice and this permission notice shall be
1385
+ included in all copies or substantial portions of the Software.
1386
+
1387
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1388
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1389
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1390
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1391
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1392
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1393
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1394
+ OTHER DEALINGS IN THE SOFTWARE.
1395
+ </pre>
1396
+ <hr size="1"></hr><pre>
1397
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1398
+
1399
+ Permission is hereby granted, free of charge, to any person
1400
+ obtaining a copy of this software and associated documentation
1401
+ files (the &quot;Software&quot;), to deal in the Software without
1402
+ restriction, including without limitation the rights to use,
1403
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1404
+ copies of the Software, and to permit persons to whom the
1405
+ Software is furnished to do so, subject to the following
1406
+ conditions:
1407
+
1408
+ The above copyright notice and this permission notice shall be
1409
+ included in all copies or substantial portions of the Software.
1410
+
1411
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1412
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1413
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1414
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1415
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1416
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1417
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1418
+ OTHER DEALINGS IN THE SOFTWARE.
1419
+ </pre>
1420
+ <hr size="1"></hr><pre>
1421
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1422
+
1423
+ Permission is hereby granted, free of charge, to any person
1424
+ obtaining a copy of this software and associated documentation
1425
+ files (the &quot;Software&quot;), to deal in the Software without
1426
+ restriction, including without limitation the rights to use,
1427
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1428
+ copies of the Software, and to permit persons to whom the
1429
+ Software is furnished to do so, subject to the following
1430
+ conditions:
1431
+
1432
+ The above copyright notice and this permission notice shall be
1433
+ included in all copies or substantial portions of the Software.
1434
+
1435
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1436
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1437
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1438
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1439
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1440
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1441
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1442
+ OTHER DEALINGS IN THE SOFTWARE.
1443
+ </pre>
1444
+ <hr size="1"></hr><pre>
1445
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1446
+
1447
+ Permission is hereby granted, free of charge, to any person
1448
+ obtaining a copy of this software and associated documentation
1449
+ files (the &quot;Software&quot;), to deal in the Software without
1450
+ restriction, including without limitation the rights to use,
1451
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1452
+ copies of the Software, and to permit persons to whom the
1453
+ Software is furnished to do so, subject to the following
1454
+ conditions:
1455
+
1456
+ The above copyright notice and this permission notice shall be
1457
+ included in all copies or substantial portions of the Software.
1458
+
1459
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1460
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1461
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1462
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1463
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1464
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1465
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1466
+ OTHER DEALINGS IN THE SOFTWARE.
1467
+ </pre>
1468
+ <hr size="1"></hr><pre>
1469
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1470
+
1471
+ Permission is hereby granted, free of charge, to any person
1472
+ obtaining a copy of this software and associated documentation
1473
+ files (the &quot;Software&quot;), to deal in the Software without
1474
+ restriction, including without limitation the rights to use,
1475
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1476
+ copies of the Software, and to permit persons to whom the
1477
+ Software is furnished to do so, subject to the following
1478
+ conditions:
1479
+
1480
+ The above copyright notice and this permission notice shall be
1481
+ included in all copies or substantial portions of the Software.
1482
+
1483
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1484
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1485
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1486
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1487
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1488
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1489
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1490
+ OTHER DEALINGS IN THE SOFTWARE.
1491
+ </pre>
1492
+ <hr size="1"></hr><pre>
1493
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1494
+
1495
+ Permission is hereby granted, free of charge, to any person
1496
+ obtaining a copy of this software and associated documentation
1497
+ files (the &quot;Software&quot;), to deal in the Software without
1498
+ restriction, including without limitation the rights to use,
1499
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1500
+ copies of the Software, and to permit persons to whom the
1501
+ Software is furnished to do so, subject to the following
1502
+ conditions:
1503
+
1504
+ The above copyright notice and this permission notice shall be
1505
+ included in all copies or substantial portions of the Software.
1506
+
1507
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1508
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1509
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1510
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1511
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1512
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1513
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1514
+ OTHER DEALINGS IN THE SOFTWARE.
1515
+ </pre>
1516
+ <hr size="1"></hr><pre>
1517
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1518
+
1519
+ Permission is hereby granted, free of charge, to any person
1520
+ obtaining a copy of this software and associated documentation
1521
+ files (the &quot;Software&quot;), to deal in the Software without
1522
+ restriction, including without limitation the rights to use,
1523
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1524
+ copies of the Software, and to permit persons to whom the
1525
+ Software is furnished to do so, subject to the following
1526
+ conditions:
1527
+
1528
+ The above copyright notice and this permission notice shall be
1529
+ included in all copies or substantial portions of the Software.
1530
+
1531
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1532
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1533
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1534
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1535
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1536
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1537
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1538
+ OTHER DEALINGS IN THE SOFTWARE.
1539
+ </pre>
1540
+ <hr size="1"></hr><pre>
1541
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1542
+
1543
+ Permission is hereby granted, free of charge, to any person
1544
+ obtaining a copy of this software and associated documentation
1545
+ files (the &quot;Software&quot;), to deal in the Software without
1546
+ restriction, including without limitation the rights to use,
1547
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1548
+ copies of the Software, and to permit persons to whom the
1549
+ Software is furnished to do so, subject to the following
1550
+ conditions:
1551
+
1552
+ The above copyright notice and this permission notice shall be
1553
+ included in all copies or substantial portions of the Software.
1554
+
1555
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1556
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1557
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1558
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1559
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1560
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1561
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1562
+ OTHER DEALINGS IN THE SOFTWARE.
1563
+ </pre>
1564
+ <hr size="1"></hr><pre>
1565
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1566
+
1567
+ Permission is hereby granted, free of charge, to any person
1568
+ obtaining a copy of this software and associated documentation
1569
+ files (the &quot;Software&quot;), to deal in the Software without
1570
+ restriction, including without limitation the rights to use,
1571
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1572
+ copies of the Software, and to permit persons to whom the
1573
+ Software is furnished to do so, subject to the following
1574
+ conditions:
1575
+
1576
+ The above copyright notice and this permission notice shall be
1577
+ included in all copies or substantial portions of the Software.
1578
+
1579
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1580
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1581
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1582
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1583
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1584
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1585
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1586
+ OTHER DEALINGS IN THE SOFTWARE.
1587
+ </pre>
1588
+ <hr size="1"></hr><pre>
1589
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1590
+
1591
+ Permission is hereby granted, free of charge, to any person
1592
+ obtaining a copy of this software and associated documentation
1593
+ files (the &quot;Software&quot;), to deal in the Software without
1594
+ restriction, including without limitation the rights to use,
1595
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1596
+ copies of the Software, and to permit persons to whom the
1597
+ Software is furnished to do so, subject to the following
1598
+ conditions:
1599
+
1600
+ The above copyright notice and this permission notice shall be
1601
+ included in all copies or substantial portions of the Software.
1602
+
1603
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1604
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1605
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1606
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1607
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1608
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1609
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1610
+ OTHER DEALINGS IN THE SOFTWARE.
1611
+ </pre>
1612
+ <hr size="1"></hr><pre>
1613
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1614
+
1615
+ Permission is hereby granted, free of charge, to any person
1616
+ obtaining a copy of this software and associated documentation
1617
+ files (the &quot;Software&quot;), to deal in the Software without
1618
+ restriction, including without limitation the rights to use,
1619
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1620
+ copies of the Software, and to permit persons to whom the
1621
+ Software is furnished to do so, subject to the following
1622
+ conditions:
1623
+
1624
+ The above copyright notice and this permission notice shall be
1625
+ included in all copies or substantial portions of the Software.
1626
+
1627
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1628
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1629
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1630
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1631
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1632
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1633
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1634
+ OTHER DEALINGS IN THE SOFTWARE.
1635
+ </pre>
1636
+ <hr size="1"></hr><pre>
1637
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1638
+
1639
+ Permission is hereby granted, free of charge, to any person
1640
+ obtaining a copy of this software and associated documentation
1641
+ files (the &quot;Software&quot;), to deal in the Software without
1642
+ restriction, including without limitation the rights to use,
1643
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1644
+ copies of the Software, and to permit persons to whom the
1645
+ Software is furnished to do so, subject to the following
1646
+ conditions:
1647
+
1648
+ The above copyright notice and this permission notice shall be
1649
+ included in all copies or substantial portions of the Software.
1650
+
1651
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1652
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1653
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1654
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1655
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1656
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1657
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1658
+ OTHER DEALINGS IN THE SOFTWARE.
1659
+ </pre>
1660
+ <hr size="1"></hr><pre>
1661
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1662
+
1663
+ Permission is hereby granted, free of charge, to any person
1664
+ obtaining a copy of this software and associated documentation
1665
+ files (the &quot;Software&quot;), to deal in the Software without
1666
+ restriction, including without limitation the rights to use,
1667
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1668
+ copies of the Software, and to permit persons to whom the
1669
+ Software is furnished to do so, subject to the following
1670
+ conditions:
1671
+
1672
+ The above copyright notice and this permission notice shall be
1673
+ included in all copies or substantial portions of the Software.
1674
+
1675
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1676
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1677
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1678
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1679
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1680
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1681
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1682
+ OTHER DEALINGS IN THE SOFTWARE.
1683
+ </pre>
1684
+ <hr size="1"></hr><pre>
1685
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1686
+
1687
+ Permission is hereby granted, free of charge, to any person
1688
+ obtaining a copy of this software and associated documentation
1689
+ files (the &quot;Software&quot;), to deal in the Software without
1690
+ restriction, including without limitation the rights to use,
1691
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1692
+ copies of the Software, and to permit persons to whom the
1693
+ Software is furnished to do so, subject to the following
1694
+ conditions:
1695
+
1696
+ The above copyright notice and this permission notice shall be
1697
+ included in all copies or substantial portions of the Software.
1698
+
1699
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1700
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1701
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1702
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1703
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1704
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1705
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1706
+ OTHER DEALINGS IN THE SOFTWARE.
1707
+ </pre>
1708
+ <hr size="1"></hr><pre>
1709
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1710
+
1711
+ Permission is hereby granted, free of charge, to any person
1712
+ obtaining a copy of this software and associated documentation
1713
+ files (the &quot;Software&quot;), to deal in the Software without
1714
+ restriction, including without limitation the rights to use,
1715
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1716
+ copies of the Software, and to permit persons to whom the
1717
+ Software is furnished to do so, subject to the following
1718
+ conditions:
1719
+
1720
+ The above copyright notice and this permission notice shall be
1721
+ included in all copies or substantial portions of the Software.
1722
+
1723
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1724
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1725
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1726
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1727
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1728
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1729
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1730
+ OTHER DEALINGS IN THE SOFTWARE.
1731
+ </pre>
1732
+ <hr size="1"></hr><pre>
1733
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1734
+
1735
+ Permission is hereby granted, free of charge, to any person
1736
+ obtaining a copy of this software and associated documentation
1737
+ files (the &quot;Software&quot;), to deal in the Software without
1738
+ restriction, including without limitation the rights to use,
1739
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1740
+ copies of the Software, and to permit persons to whom the
1741
+ Software is furnished to do so, subject to the following
1742
+ conditions:
1743
+
1744
+ The above copyright notice and this permission notice shall be
1745
+ included in all copies or substantial portions of the Software.
1746
+
1747
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1748
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1749
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1750
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1751
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1752
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1753
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1754
+ OTHER DEALINGS IN THE SOFTWARE.
1755
+ </pre>
1756
+ <hr size="1"></hr><pre>
1757
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1758
+
1759
+ Permission is hereby granted, free of charge, to any person
1760
+ obtaining a copy of this software and associated documentation
1761
+ files (the &quot;Software&quot;), to deal in the Software without
1762
+ restriction, including without limitation the rights to use,
1763
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1764
+ copies of the Software, and to permit persons to whom the
1765
+ Software is furnished to do so, subject to the following
1766
+ conditions:
1767
+
1768
+ The above copyright notice and this permission notice shall be
1769
+ included in all copies or substantial portions of the Software.
1770
+
1771
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1772
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1773
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1774
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1775
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1776
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1777
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1778
+ OTHER DEALINGS IN THE SOFTWARE.
1779
+ </pre>
1780
+ <hr size="1"></hr><pre>
1781
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1782
+
1783
+ Permission is hereby granted, free of charge, to any person
1784
+ obtaining a copy of this software and associated documentation
1785
+ files (the &quot;Software&quot;), to deal in the Software without
1786
+ restriction, including without limitation the rights to use,
1787
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1788
+ copies of the Software, and to permit persons to whom the
1789
+ Software is furnished to do so, subject to the following
1790
+ conditions:
1791
+
1792
+ The above copyright notice and this permission notice shall be
1793
+ included in all copies or substantial portions of the Software.
1794
+
1795
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1796
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1797
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1798
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1799
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1800
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1801
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1802
+ OTHER DEALINGS IN THE SOFTWARE.
1803
+ </pre>
1804
+ <hr size="1"></hr><pre>
1805
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1806
+
1807
+ Permission is hereby granted, free of charge, to any person
1808
+ obtaining a copy of this software and associated documentation
1809
+ files (the &quot;Software&quot;), to deal in the Software without
1810
+ restriction, including without limitation the rights to use,
1811
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1812
+ copies of the Software, and to permit persons to whom the
1813
+ Software is furnished to do so, subject to the following
1814
+ conditions:
1815
+
1816
+ The above copyright notice and this permission notice shall be
1817
+ included in all copies or substantial portions of the Software.
1818
+
1819
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1820
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1821
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1822
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1823
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1824
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1825
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1826
+ OTHER DEALINGS IN THE SOFTWARE.
1827
+ </pre>
1828
+ <hr size="1"></hr><pre>
1829
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1830
+
1831
+ Permission is hereby granted, free of charge, to any person
1832
+ obtaining a copy of this software and associated documentation
1833
+ files (the &quot;Software&quot;), to deal in the Software without
1834
+ restriction, including without limitation the rights to use,
1835
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1836
+ copies of the Software, and to permit persons to whom the
1837
+ Software is furnished to do so, subject to the following
1838
+ conditions:
1839
+
1840
+ The above copyright notice and this permission notice shall be
1841
+ included in all copies or substantial portions of the Software.
1842
+
1843
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1844
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1845
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1846
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1847
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1848
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1849
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1850
+ OTHER DEALINGS IN THE SOFTWARE.
1851
+ </pre>
1852
+ <hr size="1"></hr><pre>
1853
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1854
+
1855
+ Permission is hereby granted, free of charge, to any person
1856
+ obtaining a copy of this software and associated documentation
1857
+ files (the &quot;Software&quot;), to deal in the Software without
1858
+ restriction, including without limitation the rights to use,
1859
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1860
+ copies of the Software, and to permit persons to whom the
1861
+ Software is furnished to do so, subject to the following
1862
+ conditions:
1863
+
1864
+ The above copyright notice and this permission notice shall be
1865
+ included in all copies or substantial portions of the Software.
1866
+
1867
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1868
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1869
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1870
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1871
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1872
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1873
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1874
+ OTHER DEALINGS IN THE SOFTWARE.
1875
+ </pre>
1876
+ <hr size="1"></hr><pre>
1877
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1878
+
1879
+ Permission is hereby granted, free of charge, to any person
1880
+ obtaining a copy of this software and associated documentation
1881
+ files (the &quot;Software&quot;), to deal in the Software without
1882
+ restriction, including without limitation the rights to use,
1883
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1884
+ copies of the Software, and to permit persons to whom the
1885
+ Software is furnished to do so, subject to the following
1886
+ conditions:
1887
+
1888
+ The above copyright notice and this permission notice shall be
1889
+ included in all copies or substantial portions of the Software.
1890
+
1891
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1892
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1893
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1894
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1895
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1896
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1897
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1898
+ OTHER DEALINGS IN THE SOFTWARE.
1899
+ </pre>
1900
+ <hr size="1"></hr><pre>
1901
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1902
+
1903
+ Permission is hereby granted, free of charge, to any person
1904
+ obtaining a copy of this software and associated documentation
1905
+ files (the &quot;Software&quot;), to deal in the Software without
1906
+ restriction, including without limitation the rights to use,
1907
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1908
+ copies of the Software, and to permit persons to whom the
1909
+ Software is furnished to do so, subject to the following
1910
+ conditions:
1911
+
1912
+ The above copyright notice and this permission notice shall be
1913
+ included in all copies or substantial portions of the Software.
1914
+
1915
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1916
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1917
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1918
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1919
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1920
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1921
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1922
+ OTHER DEALINGS IN THE SOFTWARE.
1923
+ </pre>
1924
+ <hr size="1"></hr><pre>
1925
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1926
+
1927
+ Permission is hereby granted, free of charge, to any person
1928
+ obtaining a copy of this software and associated documentation
1929
+ files (the &quot;Software&quot;), to deal in the Software without
1930
+ restriction, including without limitation the rights to use,
1931
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1932
+ copies of the Software, and to permit persons to whom the
1933
+ Software is furnished to do so, subject to the following
1934
+ conditions:
1935
+
1936
+ The above copyright notice and this permission notice shall be
1937
+ included in all copies or substantial portions of the Software.
1938
+
1939
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1940
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1941
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1942
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1943
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1944
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1945
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1946
+ OTHER DEALINGS IN THE SOFTWARE.
1947
+ </pre>
1948
+ <hr size="1"></hr><pre>
1949
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1950
+
1951
+ Permission is hereby granted, free of charge, to any person
1952
+ obtaining a copy of this software and associated documentation
1953
+ files (the &quot;Software&quot;), to deal in the Software without
1954
+ restriction, including without limitation the rights to use,
1955
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1956
+ copies of the Software, and to permit persons to whom the
1957
+ Software is furnished to do so, subject to the following
1958
+ conditions:
1959
+
1960
+ The above copyright notice and this permission notice shall be
1961
+ included in all copies or substantial portions of the Software.
1962
+
1963
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1964
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1965
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1966
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1967
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1968
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1969
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1970
+ OTHER DEALINGS IN THE SOFTWARE.
1971
+ </pre>
1972
+ <hr size="1"></hr><pre>
1973
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1974
+
1975
+ Permission is hereby granted, free of charge, to any person
1976
+ obtaining a copy of this software and associated documentation
1977
+ files (the &quot;Software&quot;), to deal in the Software without
1978
+ restriction, including without limitation the rights to use,
1979
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
1980
+ copies of the Software, and to permit persons to whom the
1981
+ Software is furnished to do so, subject to the following
1982
+ conditions:
1983
+
1984
+ The above copyright notice and this permission notice shall be
1985
+ included in all copies or substantial portions of the Software.
1986
+
1987
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
1988
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1989
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1990
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1991
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1992
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1993
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
1994
+ OTHER DEALINGS IN THE SOFTWARE.
1995
+ </pre>
1996
+ <hr size="1"></hr><pre>
1997
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
1998
+
1999
+ Permission is hereby granted, free of charge, to any person
2000
+ obtaining a copy of this software and associated documentation
2001
+ files (the &quot;Software&quot;), to deal in the Software without
2002
+ restriction, including without limitation the rights to use,
2003
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2004
+ copies of the Software, and to permit persons to whom the
2005
+ Software is furnished to do so, subject to the following
2006
+ conditions:
2007
+
2008
+ The above copyright notice and this permission notice shall be
2009
+ included in all copies or substantial portions of the Software.
2010
+
2011
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2012
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2013
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2014
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2015
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2016
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2017
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2018
+ OTHER DEALINGS IN THE SOFTWARE.
2019
+ </pre>
2020
+ <hr size="1"></hr><pre>
2021
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2022
+
2023
+ Permission is hereby granted, free of charge, to any person
2024
+ obtaining a copy of this software and associated documentation
2025
+ files (the &quot;Software&quot;), to deal in the Software without
2026
+ restriction, including without limitation the rights to use,
2027
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2028
+ copies of the Software, and to permit persons to whom the
2029
+ Software is furnished to do so, subject to the following
2030
+ conditions:
2031
+
2032
+ The above copyright notice and this permission notice shall be
2033
+ included in all copies or substantial portions of the Software.
2034
+
2035
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2036
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2037
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2038
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2039
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2040
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2041
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2042
+ OTHER DEALINGS IN THE SOFTWARE.
2043
+ </pre>
2044
+ <hr size="1"></hr><pre>
2045
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2046
+
2047
+ Permission is hereby granted, free of charge, to any person
2048
+ obtaining a copy of this software and associated documentation
2049
+ files (the &quot;Software&quot;), to deal in the Software without
2050
+ restriction, including without limitation the rights to use,
2051
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2052
+ copies of the Software, and to permit persons to whom the
2053
+ Software is furnished to do so, subject to the following
2054
+ conditions:
2055
+
2056
+ The above copyright notice and this permission notice shall be
2057
+ included in all copies or substantial portions of the Software.
2058
+
2059
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2060
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2061
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2062
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2063
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2064
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2065
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2066
+ OTHER DEALINGS IN THE SOFTWARE.
2067
+ </pre>
2068
+ <hr size="1"></hr><pre>
2069
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2070
+
2071
+ Permission is hereby granted, free of charge, to any person
2072
+ obtaining a copy of this software and associated documentation
2073
+ files (the &quot;Software&quot;), to deal in the Software without
2074
+ restriction, including without limitation the rights to use,
2075
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2076
+ copies of the Software, and to permit persons to whom the
2077
+ Software is furnished to do so, subject to the following
2078
+ conditions:
2079
+
2080
+ The above copyright notice and this permission notice shall be
2081
+ included in all copies or substantial portions of the Software.
2082
+
2083
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2084
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2085
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2086
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2087
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2088
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2089
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2090
+ OTHER DEALINGS IN THE SOFTWARE.
2091
+ </pre>
2092
+ <hr size="1"></hr><pre>
2093
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2094
+
2095
+ Permission is hereby granted, free of charge, to any person
2096
+ obtaining a copy of this software and associated documentation
2097
+ files (the &quot;Software&quot;), to deal in the Software without
2098
+ restriction, including without limitation the rights to use,
2099
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2100
+ copies of the Software, and to permit persons to whom the
2101
+ Software is furnished to do so, subject to the following
2102
+ conditions:
2103
+
2104
+ The above copyright notice and this permission notice shall be
2105
+ included in all copies or substantial portions of the Software.
2106
+
2107
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2108
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2109
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2110
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2111
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2112
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2113
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2114
+ OTHER DEALINGS IN THE SOFTWARE.
2115
+ </pre>
2116
+ <hr size="1"></hr><pre>
2117
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2118
+
2119
+ Permission is hereby granted, free of charge, to any person
2120
+ obtaining a copy of this software and associated documentation
2121
+ files (the &quot;Software&quot;), to deal in the Software without
2122
+ restriction, including without limitation the rights to use,
2123
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2124
+ copies of the Software, and to permit persons to whom the
2125
+ Software is furnished to do so, subject to the following
2126
+ conditions:
2127
+
2128
+ The above copyright notice and this permission notice shall be
2129
+ included in all copies or substantial portions of the Software.
2130
+
2131
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2132
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2133
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2134
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2135
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2136
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2137
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2138
+ OTHER DEALINGS IN THE SOFTWARE.
2139
+ </pre>
2140
+ <hr size="1"></hr><pre>
2141
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2142
+
2143
+ Permission is hereby granted, free of charge, to any person
2144
+ obtaining a copy of this software and associated documentation
2145
+ files (the &quot;Software&quot;), to deal in the Software without
2146
+ restriction, including without limitation the rights to use,
2147
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2148
+ copies of the Software, and to permit persons to whom the
2149
+ Software is furnished to do so, subject to the following
2150
+ conditions:
2151
+
2152
+ The above copyright notice and this permission notice shall be
2153
+ included in all copies or substantial portions of the Software.
2154
+
2155
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2156
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2157
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2158
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2159
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2160
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2161
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2162
+ OTHER DEALINGS IN THE SOFTWARE.
2163
+ </pre>
2164
+ <hr size="1"></hr><pre>
2165
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2166
+
2167
+ Permission is hereby granted, free of charge, to any person
2168
+ obtaining a copy of this software and associated documentation
2169
+ files (the &quot;Software&quot;), to deal in the Software without
2170
+ restriction, including without limitation the rights to use,
2171
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2172
+ copies of the Software, and to permit persons to whom the
2173
+ Software is furnished to do so, subject to the following
2174
+ conditions:
2175
+
2176
+ The above copyright notice and this permission notice shall be
2177
+ included in all copies or substantial portions of the Software.
2178
+
2179
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2180
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2181
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2182
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2183
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2184
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2185
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2186
+ OTHER DEALINGS IN THE SOFTWARE.
2187
+ </pre>
2188
+ <hr size="1"></hr><pre>
2189
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2190
+
2191
+ Permission is hereby granted, free of charge, to any person
2192
+ obtaining a copy of this software and associated documentation
2193
+ files (the &quot;Software&quot;), to deal in the Software without
2194
+ restriction, including without limitation the rights to use,
2195
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2196
+ copies of the Software, and to permit persons to whom the
2197
+ Software is furnished to do so, subject to the following
2198
+ conditions:
2199
+
2200
+ The above copyright notice and this permission notice shall be
2201
+ included in all copies or substantial portions of the Software.
2202
+
2203
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2204
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2205
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2206
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2207
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2208
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2209
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2210
+ OTHER DEALINGS IN THE SOFTWARE.
2211
+ </pre>
2212
+ <hr size="1"></hr><pre>
2213
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2214
+
2215
+ Permission is hereby granted, free of charge, to any person
2216
+ obtaining a copy of this software and associated documentation
2217
+ files (the &quot;Software&quot;), to deal in the Software without
2218
+ restriction, including without limitation the rights to use,
2219
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2220
+ copies of the Software, and to permit persons to whom the
2221
+ Software is furnished to do so, subject to the following
2222
+ conditions:
2223
+
2224
+ The above copyright notice and this permission notice shall be
2225
+ included in all copies or substantial portions of the Software.
2226
+
2227
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2228
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2229
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2230
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2231
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2232
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2233
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2234
+ OTHER DEALINGS IN THE SOFTWARE.
2235
+ </pre>
2236
+ <hr size="1"></hr><pre>
2237
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2238
+
2239
+ Permission is hereby granted, free of charge, to any person
2240
+ obtaining a copy of this software and associated documentation
2241
+ files (the &quot;Software&quot;), to deal in the Software without
2242
+ restriction, including without limitation the rights to use,
2243
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2244
+ copies of the Software, and to permit persons to whom the
2245
+ Software is furnished to do so, subject to the following
2246
+ conditions:
2247
+
2248
+ The above copyright notice and this permission notice shall be
2249
+ included in all copies or substantial portions of the Software.
2250
+
2251
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2252
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2253
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2254
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2255
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2256
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2257
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2258
+ OTHER DEALINGS IN THE SOFTWARE.
2259
+ </pre>
2260
+ <hr size="1"></hr><pre>
2261
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2262
+
2263
+ Permission is hereby granted, free of charge, to any person
2264
+ obtaining a copy of this software and associated documentation
2265
+ files (the &quot;Software&quot;), to deal in the Software without
2266
+ restriction, including without limitation the rights to use,
2267
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2268
+ copies of the Software, and to permit persons to whom the
2269
+ Software is furnished to do so, subject to the following
2270
+ conditions:
2271
+
2272
+ The above copyright notice and this permission notice shall be
2273
+ included in all copies or substantial portions of the Software.
2274
+
2275
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2276
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2277
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2278
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2279
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2280
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2281
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2282
+ OTHER DEALINGS IN THE SOFTWARE.
2283
+ </pre>
2284
+ <hr size="1"></hr><pre>
2285
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2286
+
2287
+ Permission is hereby granted, free of charge, to any person
2288
+ obtaining a copy of this software and associated documentation
2289
+ files (the &quot;Software&quot;), to deal in the Software without
2290
+ restriction, including without limitation the rights to use,
2291
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2292
+ copies of the Software, and to permit persons to whom the
2293
+ Software is furnished to do so, subject to the following
2294
+ conditions:
2295
+
2296
+ The above copyright notice and this permission notice shall be
2297
+ included in all copies or substantial portions of the Software.
2298
+
2299
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2300
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2301
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2302
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2303
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2304
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2305
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2306
+ OTHER DEALINGS IN THE SOFTWARE.
2307
+ </pre>
2308
+ <hr size="1"></hr><pre>
2309
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2310
+
2311
+ Permission is hereby granted, free of charge, to any person
2312
+ obtaining a copy of this software and associated documentation
2313
+ files (the &quot;Software&quot;), to deal in the Software without
2314
+ restriction, including without limitation the rights to use,
2315
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2316
+ copies of the Software, and to permit persons to whom the
2317
+ Software is furnished to do so, subject to the following
2318
+ conditions:
2319
+
2320
+ The above copyright notice and this permission notice shall be
2321
+ included in all copies or substantial portions of the Software.
2322
+
2323
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2324
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2325
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2326
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2327
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2328
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2329
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2330
+ OTHER DEALINGS IN THE SOFTWARE.
2331
+ </pre>
2332
+ <hr size="1"></hr><pre>
2333
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2334
+
2335
+ Permission is hereby granted, free of charge, to any person
2336
+ obtaining a copy of this software and associated documentation
2337
+ files (the &quot;Software&quot;), to deal in the Software without
2338
+ restriction, including without limitation the rights to use,
2339
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2340
+ copies of the Software, and to permit persons to whom the
2341
+ Software is furnished to do so, subject to the following
2342
+ conditions:
2343
+
2344
+ The above copyright notice and this permission notice shall be
2345
+ included in all copies or substantial portions of the Software.
2346
+
2347
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2348
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2349
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2350
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2351
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2352
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2353
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2354
+ OTHER DEALINGS IN THE SOFTWARE.
2355
+ </pre>
2356
+ <hr size="1"></hr><pre>
2357
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2358
+
2359
+ Permission is hereby granted, free of charge, to any person
2360
+ obtaining a copy of this software and associated documentation
2361
+ files (the &quot;Software&quot;), to deal in the Software without
2362
+ restriction, including without limitation the rights to use,
2363
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2364
+ copies of the Software, and to permit persons to whom the
2365
+ Software is furnished to do so, subject to the following
2366
+ conditions:
2367
+
2368
+ The above copyright notice and this permission notice shall be
2369
+ included in all copies or substantial portions of the Software.
2370
+
2371
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2372
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2373
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2374
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2375
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2376
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2377
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2378
+ OTHER DEALINGS IN THE SOFTWARE.
2379
+ </pre>
2380
+ <hr size="1"></hr><pre>
2381
+ Copyright (c) 2009, 2010 Yves Adler &lt;yves.adler@googlemail.com&gt;
2382
+
2383
+ Permission is hereby granted, free of charge, to any person
2384
+ obtaining a copy of this software and associated documentation
2385
+ files (the &quot;Software&quot;), to deal in the Software without
2386
+ restriction, including without limitation the rights to use,
2387
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
2388
+ copies of the Software, and to permit persons to whom the
2389
+ Software is furnished to do so, subject to the following
2390
+ conditions:
2391
+
2392
+ The above copyright notice and this permission notice shall be
2393
+ included in all copies or substantial portions of the Software.
2394
+
2395
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
2396
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
2397
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2398
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
2399
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2400
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2401
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2402
+ OTHER DEALINGS IN THE SOFTWARE.
2403
+ </pre>
2404
+
2405
+ </div>
2406
+
2407
+ </div>
2408
+
2409
+
2410
+ <div id="method-list">
2411
+ <h3 class="section-bar">Methods</h3>
2412
+
2413
+ <div class="name-list">
2414
+
2415
+ <a href="#M000003">nrand</a>&nbsp;&nbsp;
2416
+
2417
+ <a href="#M000001">rand</a>&nbsp;&nbsp;
2418
+
2419
+ <a href="#M000002">rand_bool</a>&nbsp;&nbsp;
2420
+
2421
+ <a href="#M000004">srand</a>&nbsp;&nbsp;
2422
+
2423
+ </div>
2424
+ </div>
2425
+
2426
+ </div>
2427
+
2428
+ <!-- if includes -->
2429
+
2430
+ <div id="section">
2431
+
2432
+ <div id="class-list">
2433
+ <h3 class="section-bar">Classes and Modules</h3>
2434
+
2435
+ Module <a href="EvoSynth/Adjustments.html" class="link">EvoSynth::Adjustments</a><br />
2436
+ Module <a href="EvoSynth/Decoder.html" class="link">EvoSynth::Decoder</a><br />
2437
+ Module <a href="EvoSynth/Evolvers.html" class="link">EvoSynth::Evolvers</a><br />
2438
+ Module <a href="EvoSynth/GlobalRecombinations.html" class="link">EvoSynth::GlobalRecombinations</a><br />
2439
+ Module <a href="EvoSynth/MetaOperators.html" class="link">EvoSynth::MetaOperators</a><br />
2440
+ Module <a href="EvoSynth/Mutations.html" class="link">EvoSynth::Mutations</a><br />
2441
+ Module <a href="EvoSynth/Output.html" class="link">EvoSynth::Output</a><br />
2442
+ Module <a href="EvoSynth/Problems.html" class="link">EvoSynth::Problems</a><br />
2443
+ Module <a href="EvoSynth/Recombinations.html" class="link">EvoSynth::Recombinations</a><br />
2444
+ Module <a href="EvoSynth/Selections.html" class="link">EvoSynth::Selections</a><br />
2445
+ Class <a href="EvoSynth/ArrayGenome.html" class="link">EvoSynth::ArrayGenome</a><br />
2446
+ Class <a href="EvoSynth/BinaryGenome.html" class="link">EvoSynth::BinaryGenome</a><br />
2447
+ Class <a href="EvoSynth/Evaluator.html" class="link">EvoSynth::Evaluator</a><br />
2448
+ Class <a href="EvoSynth/Individual.html" class="link">EvoSynth::Individual</a><br />
2449
+ Class <a href="EvoSynth/MaximizingIndividual.html" class="link">EvoSynth::MaximizingIndividual</a><br />
2450
+ Class <a href="EvoSynth/MinimizingIndividual.html" class="link">EvoSynth::MinimizingIndividual</a><br />
2451
+ Class <a href="EvoSynth/Population.html" class="link">EvoSynth::Population</a><br />
2452
+ Class <a href="EvoSynth/Profile.html" class="link">EvoSynth::Profile</a><br />
2453
+
2454
+ </div>
2455
+
2456
+
2457
+
2458
+
2459
+ <!-- if method_list -->
2460
+
2461
+ <div id="methods">
2462
+
2463
+ <h3 class="section-bar">Public Class methods</h3>
2464
+
2465
+
2466
+ <div id="method-M000003" class="method-detail">
2467
+ <a name="M000003"></a>
2468
+
2469
+ <div class="method-heading">
2470
+
2471
+ <a href="#M000003" class="method-signature">
2472
+
2473
+ <span class="method-name">EvoSynth.nrand #=> pseudo-random normal distributed random number<br />
2474
+ EvoSynth.nrand(3.2) #=> pseudo-random normal distributed random number around 3.2<br />
2475
+ EvoSynth.nrand(2.4, 1.5) #=> pseudo-random normal distributed random number around 2.4 with sigma = 1.5<br />
2476
+ </span>
2477
+
2478
+ </a>
2479
+
2480
+ </div>
2481
+
2482
+ <div class="method-description">
2483
+
2484
+ <p>
2485
+ Normal distributed pseudo-random number generator of <a
2486
+ href="EvoSynth.html">EvoSynth</a>. Uses the polar form of the Box-Mueller
2487
+ transformation to transform two Uniform distributed random numbers into one
2488
+ normal distributed random number (see: <a
2489
+ href="http://www.taygeta.com/random/gaussian.html">www.taygeta.com/random/gaussian.html</a>=).
2490
+ </p>
2491
+
2492
+ <p><a class="source-toggle" href="#"
2493
+ onclick="toggleCode('M000003-source');return false;">[Source]</a></p>
2494
+ <div class="method-source-code" id="M000003-source">
2495
+ <pre>
2496
+ <span class="ruby-comment cmt"># File lib/evosynth/core/randomizer.rb, line 52</span>
2497
+ 52: <span class="ruby-keyword kw">def</span> <span class="ruby-constant">EvoSynth</span>.<span class="ruby-identifier">nrand</span>(<span class="ruby-identifier">mu</span> = <span class="ruby-value">0</span><span class="ruby-value">.0</span>, <span class="ruby-identifier">sigma</span> = <span class="ruby-value">1.0</span>)
2498
+ 53: <span class="ruby-identifier">x1</span>, <span class="ruby-identifier">x2</span>, <span class="ruby-identifier">w</span>, = <span class="ruby-value">0</span><span class="ruby-value">.0</span>, <span class="ruby-value">0</span><span class="ruby-value">.0</span>, <span class="ruby-value">0</span><span class="ruby-value">.0</span>, <span class="ruby-value">0</span><span class="ruby-value">.0</span>
2499
+ 54:
2500
+ 55: <span class="ruby-keyword kw">begin</span>
2501
+ 56: <span class="ruby-identifier">x1</span> = <span class="ruby-value">2.0</span> <span class="ruby-operator">*</span> <span class="ruby-constant">EvoSynth</span>.<span class="ruby-identifier">rand</span> <span class="ruby-operator">-</span> <span class="ruby-value">1.0</span>
2502
+ 57: <span class="ruby-identifier">x2</span> = <span class="ruby-value">2.0</span> <span class="ruby-operator">*</span> <span class="ruby-constant">EvoSynth</span>.<span class="ruby-identifier">rand</span> <span class="ruby-operator">-</span> <span class="ruby-value">1.0</span>
2503
+ 58: <span class="ruby-identifier">w</span> = <span class="ruby-identifier">x1</span> <span class="ruby-operator">**</span> <span class="ruby-value">2.0</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">x2</span> <span class="ruby-operator">**</span> <span class="ruby-value">2.0</span>;
2504
+ 59: <span class="ruby-keyword kw">end</span> <span class="ruby-keyword kw">while</span> ( <span class="ruby-identifier">w</span> <span class="ruby-operator">&gt;=</span> <span class="ruby-value">1.0</span> )
2505
+ 60:
2506
+ 61: <span class="ruby-identifier">w</span> = <span class="ruby-constant">Math</span>.<span class="ruby-identifier">sqrt</span>( (<span class="ruby-value">-2.0</span> <span class="ruby-operator">*</span> <span class="ruby-constant">Math</span>.<span class="ruby-identifier">log</span>( <span class="ruby-identifier">w</span> ) ) <span class="ruby-operator">/</span> <span class="ruby-identifier">w</span> )
2507
+ 62: <span class="ruby-identifier">mu</span> <span class="ruby-operator">+</span> (<span class="ruby-identifier">x2</span> <span class="ruby-operator">*</span> <span class="ruby-identifier">w</span> <span class="ruby-operator">*</span> <span class="ruby-identifier">sigma</span>)
2508
+ 63: <span class="ruby-keyword kw">end</span>
2509
+ </pre>
2510
+ </div>
2511
+
2512
+ </div>
2513
+ </div>
2514
+
2515
+
2516
+ <div id="method-M000001" class="method-detail">
2517
+ <a name="M000001"></a>
2518
+
2519
+ <div class="method-heading">
2520
+
2521
+ <a href="#M000001" class="method-signature">
2522
+
2523
+ <span class="method-name">rand</span><span class="method-args">(*args)</span>
2524
+
2525
+ </a>
2526
+
2527
+ </div>
2528
+
2529
+ <div class="method-description">
2530
+
2531
+ <p>
2532
+ Uniform distributed (between 0.0 and 1.0) pseudo-random number generator of
2533
+ <a href="EvoSynth.html">EvoSynth</a>, overwrite this function if you want
2534
+ to change the uniform distributed random number generator of <a
2535
+ href="EvoSynth.html">EvoSynth</a>.
2536
+ </p>
2537
+ <p>
2538
+ This a fascade to Kernel.rand. For a complete documentation see the Ruby
2539
+ documentation of rand().
2540
+ </p>
2541
+
2542
+ <p><a class="source-toggle" href="#"
2543
+ onclick="toggleCode('M000001-source');return false;">[Source]</a></p>
2544
+ <div class="method-source-code" id="M000001-source">
2545
+ <pre>
2546
+ <span class="ruby-comment cmt"># File lib/evosynth/core/randomizer.rb, line 33</span>
2547
+ 33: <span class="ruby-keyword kw">def</span> <span class="ruby-constant">EvoSynth</span>.<span class="ruby-identifier">rand</span>(<span class="ruby-operator">*</span><span class="ruby-identifier">args</span>)
2548
+ 34: <span class="ruby-constant">Kernel</span>.<span class="ruby-identifier">rand</span>(<span class="ruby-operator">*</span><span class="ruby-identifier">args</span>)
2549
+ 35: <span class="ruby-keyword kw">end</span>
2550
+ </pre>
2551
+ </div>
2552
+
2553
+ </div>
2554
+ </div>
2555
+
2556
+
2557
+ <div id="method-M000002" class="method-detail">
2558
+ <a name="M000002"></a>
2559
+
2560
+ <div class="method-heading">
2561
+
2562
+ <a href="#M000002" class="method-signature">
2563
+
2564
+ <span class="method-name">rand_bool</span><span class="method-args">()</span>
2565
+
2566
+ </a>
2567
+
2568
+ </div>
2569
+
2570
+ <div class="method-description">
2571
+
2572
+ <p>
2573
+ Returns a pseudo-random boolean value (true or false).
2574
+ </p>
2575
+
2576
+ <p><a class="source-toggle" href="#"
2577
+ onclick="toggleCode('M000002-source');return false;">[Source]</a></p>
2578
+ <div class="method-source-code" id="M000002-source">
2579
+ <pre>
2580
+ <span class="ruby-comment cmt"># File lib/evosynth/core/randomizer.rb, line 39</span>
2581
+ 39: <span class="ruby-keyword kw">def</span> <span class="ruby-constant">EvoSynth</span>.<span class="ruby-identifier">rand_bool</span>
2582
+ 40: <span class="ruby-constant">EvoSynth</span>.<span class="ruby-identifier">rand</span>(<span class="ruby-value">2</span>) <span class="ruby-operator">&gt;</span> <span class="ruby-value">0</span>
2583
+ 41: <span class="ruby-keyword kw">end</span>
2584
+ </pre>
2585
+ </div>
2586
+
2587
+ </div>
2588
+ </div>
2589
+
2590
+
2591
+ <div id="method-M000004" class="method-detail">
2592
+ <a name="M000004"></a>
2593
+
2594
+ <div class="method-heading">
2595
+
2596
+ <a href="#M000004" class="method-signature">
2597
+
2598
+ <span class="method-name">srand</span><span class="method-args">(*args)</span>
2599
+
2600
+ </a>
2601
+
2602
+ </div>
2603
+
2604
+ <div class="method-description">
2605
+
2606
+ <p>
2607
+ Set the seed of the uniform distributed random number generator of <a
2608
+ href="EvoSynth.html">EvoSynth</a>.
2609
+ </p>
2610
+ <p>
2611
+ This a fascade to Kernel.srand, for a complete documentation see the Ruby
2612
+ documentation of srand().
2613
+ </p>
2614
+
2615
+ <p><a class="source-toggle" href="#"
2616
+ onclick="toggleCode('M000004-source');return false;">[Source]</a></p>
2617
+ <div class="method-source-code" id="M000004-source">
2618
+ <pre>
2619
+ <span class="ruby-comment cmt"># File lib/evosynth/core/randomizer.rb, line 69</span>
2620
+ 69: <span class="ruby-keyword kw">def</span> <span class="ruby-constant">EvoSynth</span>.<span class="ruby-identifier">srand</span>(<span class="ruby-operator">*</span><span class="ruby-identifier">args</span>)
2621
+ 70: <span class="ruby-constant">Kernel</span>.<span class="ruby-identifier">srand</span>(<span class="ruby-operator">*</span><span class="ruby-identifier">args</span>)
2622
+ 71: <span class="ruby-keyword kw">end</span>
2623
+ </pre>
2624
+ </div>
2625
+
2626
+ </div>
2627
+ </div>
2628
+
2629
+
2630
+
2631
+ </div>
2632
+
2633
+
2634
+
2635
+
2636
+ </div>
2637
+
2638
+ <div id="validator-badges">
2639
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
2640
+ </div>
2641
+
2642
+ </body>
2643
+ </html>