rubyneat 0.3.5.alpha.2

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 (261) hide show
  1. checksums.yaml +7 -0
  2. data/.directory +4 -0
  3. data/.gitignore.orig +20 -0
  4. data/.idea/.name +1 -0
  5. data/.idea/.rakeTasks +7 -0
  6. data/.idea/dictionaries/trader.xml +3 -0
  7. data/.idea/encodings.xml +5 -0
  8. data/.idea/misc.xml +5 -0
  9. data/.idea/modules.xml +9 -0
  10. data/.idea/rubyneat.iml +197 -0
  11. data/.idea/runConfigurations/invpend_neat.xml +26 -0
  12. data/.idea/runConfigurations/sigdebug_neat.xml +24 -0
  13. data/.idea/runConfigurations/xor_neat.xml +26 -0
  14. data/.idea/runConfigurations/xordebug_neat.xml +24 -0
  15. data/.idea/runConfigurations/xorsin_neat.xml +24 -0
  16. data/.idea/scopes/scope_settings.xml +5 -0
  17. data/.idea/vcs.xml +7 -0
  18. data/.idea/workspace.xml +1124 -0
  19. data/.semver +5 -0
  20. data/.yardoc/checksums +11 -0
  21. data/.yardoc/object_types +0 -0
  22. data/.yardoc/objects/root.dat +0 -0
  23. data/.yardoc/proxy_types +0 -0
  24. data/Gemfile +32 -0
  25. data/Gemfile.lock +135 -0
  26. data/Gemfile.lock.orig +147 -0
  27. data/Guardfile +8 -0
  28. data/Rakefile +61 -0
  29. data/bin/neat +83 -0
  30. data/config/application.rb +5 -0
  31. data/doc/ControllerPoint.html +125 -0
  32. data/doc/CuteA.html +286 -0
  33. data/doc/CuteB.html +297 -0
  34. data/doc/DSL.html +883 -0
  35. data/doc/NEAT/BasicNeuronTypes/BiasNeuron.html +518 -0
  36. data/doc/NEAT/BasicNeuronTypes/CosineNeuron.html +274 -0
  37. data/doc/NEAT/BasicNeuronTypes/InputNeuron.html +366 -0
  38. data/doc/NEAT/BasicNeuronTypes/SigmoidNeuron.html +275 -0
  39. data/doc/NEAT/BasicNeuronTypes/SineNeuron.html +274 -0
  40. data/doc/NEAT/BasicNeuronTypes/TanhNeuron.html +274 -0
  41. data/doc/NEAT/BasicNeuronTypes.html +136 -0
  42. data/doc/NEAT/Controller/NeatSettings.html +3985 -0
  43. data/doc/NEAT/Controller.html +2490 -0
  44. data/doc/NEAT/Critter/Genotype/Gene.html +979 -0
  45. data/doc/NEAT/Critter/Genotype.html +1601 -0
  46. data/doc/NEAT/Critter/Phenotype.html +603 -0
  47. data/doc/NEAT/Critter.html +1037 -0
  48. data/doc/NEAT/DSL.html +1255 -0
  49. data/doc/NEAT/Evaluator.html +420 -0
  50. data/doc/NEAT/Evolver/CritterOp.html +551 -0
  51. data/doc/NEAT/Evolver.html +602 -0
  52. data/doc/NEAT/Expressor.html +327 -0
  53. data/doc/NEAT/Graph/DependencyResolver.html +478 -0
  54. data/doc/NEAT/Graph/GraphException.html +123 -0
  55. data/doc/NEAT/Graph.html +402 -0
  56. data/doc/NEAT/NeatException.html +123 -0
  57. data/doc/NEAT/NeatOb.html +567 -0
  58. data/doc/NEAT/Neuron.html +1067 -0
  59. data/doc/NEAT/Operator.html +162 -0
  60. data/doc/NEAT/Population.html +1961 -0
  61. data/doc/NEAT/Trait.html +169 -0
  62. data/doc/NEAT.html +588 -0
  63. data/doc/_index.html +373 -0
  64. data/doc/class_list.html +54 -0
  65. data/doc/css/common.css +1 -0
  66. data/doc/css/full_list.css +57 -0
  67. data/doc/css/style.css +339 -0
  68. data/doc/file_list.html +53 -0
  69. data/doc/frames.html +26 -0
  70. data/doc/index.html +373 -0
  71. data/doc/js/app.js +219 -0
  72. data/doc/js/full_list.js +178 -0
  73. data/doc/js/jquery.js +4 -0
  74. data/doc/method_list.html +1415 -0
  75. data/doc/top-level-namespace.html +164 -0
  76. data/foo/foo_aquarium_example.rb +38 -0
  77. data/foo/foo_gosu.rb +99 -0
  78. data/foo/foo_rubygoo.rb +104 -0
  79. data/foo/foo_sdl.rb +34 -0
  80. data/foo/icon.png +0 -0
  81. data/lib/rubyneat/critter.rb +374 -0
  82. data/lib/rubyneat/default_neat.rb +10 -0
  83. data/lib/rubyneat/dsl.rb +130 -0
  84. data/lib/rubyneat/evaluator.rb +51 -0
  85. data/lib/rubyneat/evolver.rb +315 -0
  86. data/lib/rubyneat/expressor.rb +110 -0
  87. data/lib/rubyneat/graph.rb +95 -0
  88. data/lib/rubyneat/neuron.rb +152 -0
  89. data/lib/rubyneat/population.rb +227 -0
  90. data/lib/rubyneat/rubyneat.rb +429 -0
  91. data/lib/rubyneat.rb +8 -0
  92. data/neater/invpend_neat.rb +150 -0
  93. data/neater/rnlib/inverted_pendulum.rb +380 -0
  94. data/neater/rnlib/xor.rb +10 -0
  95. data/neater/sigdebug_neat.rb +136 -0
  96. data/neater/xor_neat.rb +137 -0
  97. data/neater/xoranalog_neat.rb +138 -0
  98. data/neater/xorsin_neat.rb +143 -0
  99. data/projectFilesBackup/.idea/rubyneat.iml +180 -0
  100. data/public/.directory +4 -0
  101. data/public/background.png +0 -0
  102. data/public/background.xcf +0 -0
  103. data/public/cart.png +0 -0
  104. data/public/cart.xcf +0 -0
  105. data/public/metalpoles_molton_ball_l.jpg +0 -0
  106. data/public/old_background.png +0 -0
  107. data/public/pointer.png +0 -0
  108. data/public/pointer.xcf +0 -0
  109. data/public/pole.kra +0 -0
  110. data/public/pole.png +0 -0
  111. data/public/pole.xcf +0 -0
  112. data/public/wheel-of-year-stone-DD-131-WOYS.jpg +0 -0
  113. data/public/wheel.png +0 -0
  114. data/public/wheel.xcf +0 -0
  115. data/public/wood-planks-texture.jpg +0 -0
  116. data/rdoc/ControllerPoint.html +116 -0
  117. data/rdoc/CuteA.html +177 -0
  118. data/rdoc/CuteB.html +178 -0
  119. data/rdoc/DSLSetup.html +177 -0
  120. data/rdoc/GameTestWindow.html +242 -0
  121. data/rdoc/GameWindow.html +292 -0
  122. data/rdoc/Gemfile.html +215 -0
  123. data/rdoc/Gemfile_lock.html +327 -0
  124. data/rdoc/GraphTest.html +210 -0
  125. data/rdoc/Guardfile.html +198 -0
  126. data/rdoc/InvertedPendulum/Cart.html +668 -0
  127. data/rdoc/InvertedPendulum/DSL.html +259 -0
  128. data/rdoc/InvertedPendulum/InvPendWindow.html +402 -0
  129. data/rdoc/InvertedPendulum.html +198 -0
  130. data/rdoc/Logger.html +98 -0
  131. data/rdoc/NEAT/BasicNeuronTypes/BiasNeuron.html +265 -0
  132. data/rdoc/NEAT/BasicNeuronTypes/CosineNeuron.html +162 -0
  133. data/rdoc/NEAT/BasicNeuronTypes/InputNeuron.html +206 -0
  134. data/rdoc/NEAT/BasicNeuronTypes/SigmoidNeuron.html +162 -0
  135. data/rdoc/NEAT/BasicNeuronTypes/SineNeuron.html +162 -0
  136. data/rdoc/NEAT/BasicNeuronTypes/TanhNeuron.html +161 -0
  137. data/rdoc/NEAT/BasicNeuronTypes.html +107 -0
  138. data/rdoc/NEAT/Controller/NeatSettings.html +880 -0
  139. data/rdoc/NEAT/Controller.html +729 -0
  140. data/rdoc/NEAT/Critter/Genotype/Gene.html +457 -0
  141. data/rdoc/NEAT/Critter/Genotype.html +735 -0
  142. data/rdoc/NEAT/Critter/Phenotype.html +330 -0
  143. data/rdoc/NEAT/Critter.html +489 -0
  144. data/rdoc/NEAT/DSL.html +729 -0
  145. data/rdoc/NEAT/Evaluator.html +256 -0
  146. data/rdoc/NEAT/Evolver/CritterOp.html +349 -0
  147. data/rdoc/NEAT/Evolver.html +891 -0
  148. data/rdoc/NEAT/Expressor.html +402 -0
  149. data/rdoc/NEAT/Graph/DependencyResolver.html +291 -0
  150. data/rdoc/NEAT/Graph/GraphException.html +105 -0
  151. data/rdoc/NEAT/Graph.html +263 -0
  152. data/rdoc/NEAT/NeatException.html +105 -0
  153. data/rdoc/NEAT/NeatOb.html +325 -0
  154. data/rdoc/NEAT/Neuron.html +481 -0
  155. data/rdoc/NEAT/Operator.html +109 -0
  156. data/rdoc/NEAT/Population.html +935 -0
  157. data/rdoc/NEAT/Trait.html +117 -0
  158. data/rdoc/NEAT.html +422 -0
  159. data/rdoc/Object.html +384 -0
  160. data/rdoc/Phi.html +98 -0
  161. data/rdoc/Player.html +383 -0
  162. data/rdoc/Rakefile.html +254 -0
  163. data/rdoc/RubyNEAT/Application.html +105 -0
  164. data/rdoc/RubyNEAT.html +98 -0
  165. data/rdoc/SDL/Event2.html +98 -0
  166. data/rdoc/SDL.html +98 -0
  167. data/rdoc/Vector.html +195 -0
  168. data/rdoc/created.rid +125 -0
  169. data/rdoc/doc/ControllerPoint_html.html +299 -0
  170. data/rdoc/doc/CuteA_html.html +438 -0
  171. data/rdoc/doc/CuteB_html.html +436 -0
  172. data/rdoc/doc/DSL_html.html +992 -0
  173. data/rdoc/doc/NEAT/BasicNeuronTypes/BiasNeuron_html.html +617 -0
  174. data/rdoc/doc/NEAT/BasicNeuronTypes/CosineNeuron_html.html +413 -0
  175. data/rdoc/doc/NEAT/BasicNeuronTypes/InputNeuron_html.html +498 -0
  176. data/rdoc/doc/NEAT/BasicNeuronTypes/SigmoidNeuron_html.html +413 -0
  177. data/rdoc/doc/NEAT/BasicNeuronTypes/SineNeuron_html.html +413 -0
  178. data/rdoc/doc/NEAT/BasicNeuronTypes/TanhNeuron_html.html +412 -0
  179. data/rdoc/doc/NEAT/BasicNeuronTypes_html.html +310 -0
  180. data/rdoc/doc/NEAT/Controller/NeatSettings_html.html +3324 -0
  181. data/rdoc/doc/NEAT/Controller_html.html +2212 -0
  182. data/rdoc/doc/NEAT/Critter/Genotype/Gene_html.html +997 -0
  183. data/rdoc/doc/NEAT/Critter/Genotype_html.html +1556 -0
  184. data/rdoc/doc/NEAT/Critter/Phenotype_html.html +687 -0
  185. data/rdoc/doc/NEAT/Critter_html.html +1037 -0
  186. data/rdoc/doc/NEAT/DSL_html.html +1349 -0
  187. data/rdoc/doc/NEAT/Evaluator_html.html +556 -0
  188. data/rdoc/doc/NEAT/Evolver/CritterOp_html.html +690 -0
  189. data/rdoc/doc/NEAT/Evolver_html.html +677 -0
  190. data/rdoc/doc/NEAT/Expressor_html.html +468 -0
  191. data/rdoc/doc/NEAT/Graph/DependencyResolver_html.html +598 -0
  192. data/rdoc/doc/NEAT/Graph/GraphException_html.html +299 -0
  193. data/rdoc/doc/NEAT/Graph_html.html +527 -0
  194. data/rdoc/doc/NEAT/NeatException_html.html +299 -0
  195. data/rdoc/doc/NEAT/NeatOb_html.html +671 -0
  196. data/rdoc/doc/NEAT/Neuron_html.html +1095 -0
  197. data/rdoc/doc/NEAT/Operator_html.html +337 -0
  198. data/rdoc/doc/NEAT/Population_html.html +1795 -0
  199. data/rdoc/doc/NEAT/Trait_html.html +344 -0
  200. data/rdoc/doc/NEAT_html.html +736 -0
  201. data/rdoc/doc/_index_html.html +559 -0
  202. data/rdoc/doc/class_list_html.html +369 -0
  203. data/rdoc/doc/css/common_css.html +188 -0
  204. data/rdoc/doc/css/full_list_css.html +243 -0
  205. data/rdoc/doc/css/style_css.html +530 -0
  206. data/rdoc/doc/file_list_html.html +240 -0
  207. data/rdoc/doc/frames_html.html +217 -0
  208. data/rdoc/doc/index_html.html +559 -0
  209. data/rdoc/doc/js/app_js.html +423 -0
  210. data/rdoc/doc/js/full_list_js.html +372 -0
  211. data/rdoc/doc/js/jquery_js.html +1536 -0
  212. data/rdoc/doc/method_list_html.html +1375 -0
  213. data/rdoc/doc/top-level-namespace_html.html +317 -0
  214. data/rdoc/fonts/Lato-Light.ttf +0 -0
  215. data/rdoc/fonts/Lato-LightItalic.ttf +0 -0
  216. data/rdoc/fonts/Lato-Regular.ttf +0 -0
  217. data/rdoc/fonts/Lato-RegularItalic.ttf +0 -0
  218. data/rdoc/fonts/SourceCodePro-Bold.ttf +0 -0
  219. data/rdoc/fonts/SourceCodePro-Regular.ttf +0 -0
  220. data/rdoc/fonts.css +167 -0
  221. data/rdoc/images/add.png +0 -0
  222. data/rdoc/images/arrow_up.png +0 -0
  223. data/rdoc/images/brick.png +0 -0
  224. data/rdoc/images/brick_link.png +0 -0
  225. data/rdoc/images/bug.png +0 -0
  226. data/rdoc/images/bullet_black.png +0 -0
  227. data/rdoc/images/bullet_toggle_minus.png +0 -0
  228. data/rdoc/images/bullet_toggle_plus.png +0 -0
  229. data/rdoc/images/date.png +0 -0
  230. data/rdoc/images/delete.png +0 -0
  231. data/rdoc/images/find.png +0 -0
  232. data/rdoc/images/loadingAnimation.gif +0 -0
  233. data/rdoc/images/macFFBgHack.png +0 -0
  234. data/rdoc/images/package.png +0 -0
  235. data/rdoc/images/page_green.png +0 -0
  236. data/rdoc/images/page_white_text.png +0 -0
  237. data/rdoc/images/page_white_width.png +0 -0
  238. data/rdoc/images/plugin.png +0 -0
  239. data/rdoc/images/ruby.png +0 -0
  240. data/rdoc/images/tag_blue.png +0 -0
  241. data/rdoc/images/tag_green.png +0 -0
  242. data/rdoc/images/transparent.png +0 -0
  243. data/rdoc/images/wrench.png +0 -0
  244. data/rdoc/images/wrench_orange.png +0 -0
  245. data/rdoc/images/zoom.png +0 -0
  246. data/rdoc/index.html +282 -0
  247. data/rdoc/js/darkfish.js +140 -0
  248. data/rdoc/js/jquery.js +18 -0
  249. data/rdoc/js/navigation.js +142 -0
  250. data/rdoc/js/search.js +109 -0
  251. data/rdoc/js/search_index.js +1 -0
  252. data/rdoc/js/searcher.js +228 -0
  253. data/rdoc/rdoc.css +580 -0
  254. data/rdoc/rubyneat_gemspec.html +387 -0
  255. data/rdoc/table_of_contents.html +2502 -0
  256. data/rdoc/xordebug_log.html +170598 -0
  257. data/rdoc/xorsin_log.html +22569 -0
  258. data/rubyneat.gemspec +347 -0
  259. data/rubyneat.gemspec.orig +375 -0
  260. data/spec/lib/rubyneat/rubyneat_spec.rb +132 -0
  261. metadata +555 -0
@@ -0,0 +1,3985 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Class: NEAT::Controller::NeatSettings
8
+
9
+ &mdash; Documentation by YARD 0.8.7.4
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../../css/style.css" type="text/css" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="../../css/common.css" type="text/css" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ hasFrames = window.top.frames.main ? true : false;
19
+ relpath = '../../';
20
+ framesUrl = "../../frames.html#!NEAT/Controller/NeatSettings.html";
21
+ </script>
22
+
23
+
24
+ <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
25
+
26
+ <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
27
+
28
+
29
+ </head>
30
+ <body>
31
+ <div id="header">
32
+ <div id="menu">
33
+
34
+ <a href="../../_index.html">Index (N)</a> &raquo;
35
+ <span class='title'><span class='object_link'><a href="../../NEAT.html" title="NEAT (module)">NEAT</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Controller.html" title="NEAT::Controller (class)">Controller</a></span></span>
36
+ &raquo;
37
+ <span class="title">NeatSettings</span>
38
+
39
+
40
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
41
+ </div>
42
+
43
+ <div id="search">
44
+
45
+ <a class="full_list_link" id="class_list_link"
46
+ href="../../class_list.html">
47
+ Class List
48
+ </a>
49
+
50
+ <a class="full_list_link" id="method_list_link"
51
+ href="../../method_list.html">
52
+ Method List
53
+ </a>
54
+
55
+ <a class="full_list_link" id="file_list_link"
56
+ href="../../file_list.html">
57
+ File List
58
+ </a>
59
+
60
+ </div>
61
+ <div class="clear"></div>
62
+ </div>
63
+
64
+ <iframe id="search_frame"></iframe>
65
+
66
+ <div id="content"><h1>Class: NEAT::Controller::NeatSettings
67
+
68
+
69
+
70
+ </h1>
71
+
72
+ <dl class="box">
73
+
74
+ <dt class="r1">Inherits:</dt>
75
+ <dd class="r1">
76
+ <span class="inheritName"><span class='object_link'><a href="../NeatOb.html" title="NEAT::NeatOb (class)">NeatOb</a></span></span>
77
+
78
+ <ul class="fullTree">
79
+ <li>Object</li>
80
+
81
+ <li class="next"><span class='object_link'><a href="../NeatOb.html" title="NEAT::NeatOb (class)">NeatOb</a></span></li>
82
+
83
+ <li class="next">NEAT::Controller::NeatSettings</li>
84
+
85
+ </ul>
86
+ <a href="#" class="inheritanceTree">show all</a>
87
+
88
+ </dd>
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+ <dt class="r2 last">Defined in:</dt>
99
+ <dd class="r2 last">lib/rubyneat/rubyneat.rb</dd>
100
+
101
+ </dl>
102
+ <div class="clear"></div>
103
+
104
+ <h2>Overview</h2><div class="docstring">
105
+ <div class="discussion">
106
+
107
+ <p>Various parameters affecting evolution. Based somewhat on the C version of
108
+ NEAT. TODO not all of these parameters are implemented yet!!!</p>
109
+
110
+
111
+ </div>
112
+ </div>
113
+ <div class="tags">
114
+
115
+
116
+ </div>
117
+
118
+
119
+
120
+ <h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
121
+ <ul class="summary">
122
+
123
+ <li class="public ">
124
+ <span class="summary_signature">
125
+
126
+ <a href="#age_significance-instance_method" title="#age_significance (instance method)">- (Object) <strong>age_significance</strong> </a>
127
+
128
+
129
+
130
+ </span>
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+ <span class="summary_desc"><div class='inline'>
144
+ <p>based on the C version of NEAT.</p>
145
+ </div></span>
146
+
147
+ </li>
148
+
149
+
150
+ <li class="public ">
151
+ <span class="summary_signature">
152
+
153
+ <a href="#babies_stolen-instance_method" title="#babies_stolen (instance method)">- (Object) <strong>babies_stolen</strong> </a>
154
+
155
+
156
+
157
+ </span>
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+ <span class="summary_desc"><div class='inline'>
171
+ <p>Returns the value of attribute babies_stolen.</p>
172
+ </div></span>
173
+
174
+ </li>
175
+
176
+
177
+ <li class="public ">
178
+ <span class="summary_signature">
179
+
180
+ <a href="#compatibility_threshold-instance_method" title="#compatibility_threshold (instance method)">- (Object) <strong>compatibility_threshold</strong> </a>
181
+
182
+
183
+
184
+ </span>
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+ <span class="summary_desc"><div class='inline'>
198
+ <p>Species compatability threshold.</p>
199
+ </div></span>
200
+
201
+ </li>
202
+
203
+
204
+ <li class="public ">
205
+ <span class="summary_signature">
206
+
207
+ <a href="#disjoint_coefficient-instance_method" title="#disjoint_coefficient (instance method)">- (Object) <strong>disjoint_coefficient</strong> </a>
208
+
209
+
210
+
211
+ </span>
212
+
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+
222
+
223
+
224
+ <span class="summary_desc"><div class='inline'>
225
+ <p>Speciation coffficient.</p>
226
+ </div></span>
227
+
228
+ </li>
229
+
230
+
231
+ <li class="public ">
232
+ <span class="summary_signature">
233
+
234
+ <a href="#dropoff_age-instance_method" title="#dropoff_age (instance method)">- (Object) <strong>dropoff_age</strong> </a>
235
+
236
+
237
+
238
+ </span>
239
+
240
+
241
+
242
+
243
+
244
+
245
+
246
+
247
+
248
+
249
+
250
+
251
+ <span class="summary_desc"><div class='inline'>
252
+ <p>Species Peality age for not making progress.</p>
253
+ </div></span>
254
+
255
+ </li>
256
+
257
+
258
+ <li class="public ">
259
+ <span class="summary_signature">
260
+
261
+ <a href="#end_sequence_at-instance_method" title="#end_sequence_at (instance method)">- (Object) <strong>end_sequence_at</strong> </a>
262
+
263
+
264
+
265
+ </span>
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+
276
+
277
+
278
+ <span class="summary_desc"><div class='inline'>
279
+ <p>Returns the value of attribute end_sequence_at.</p>
280
+ </div></span>
281
+
282
+ </li>
283
+
284
+
285
+ <li class="public ">
286
+ <span class="summary_signature">
287
+
288
+ <a href="#evolved_substrate_switch-instance_method" title="#evolved_substrate_switch (instance method)">- (Object) <strong>evolved_substrate_switch</strong> </a>
289
+
290
+
291
+
292
+ </span>
293
+
294
+
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+ <span class="summary_desc"><div class='inline'>
306
+ <p>Enable Evolved Substrate HyperNEAT.</p>
307
+ </div></span>
308
+
309
+ </li>
310
+
311
+
312
+ <li class="public ">
313
+ <span class="summary_signature">
314
+
315
+ <a href="#excess_coefficient-instance_method" title="#excess_coefficient (instance method)">- (Object) <strong>excess_coefficient</strong> </a>
316
+
317
+
318
+
319
+ </span>
320
+
321
+
322
+
323
+
324
+
325
+
326
+
327
+
328
+
329
+
330
+
331
+
332
+ <span class="summary_desc"><div class='inline'>
333
+ <p>Speciation coffficient.</p>
334
+ </div></span>
335
+
336
+ </li>
337
+
338
+
339
+ <li class="public ">
340
+ <span class="summary_signature">
341
+
342
+ <a href="#feature_selection_switch-instance_method" title="#feature_selection_switch (instance method)">- (Object) <strong>feature_selection_switch</strong> </a>
343
+
344
+
345
+
346
+ </span>
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+ <span class="summary_desc"><div class='inline'>
360
+ <p>Enable FS-NEAT.</p>
361
+ </div></span>
362
+
363
+ </li>
364
+
365
+
366
+ <li class="public ">
367
+ <span class="summary_signature">
368
+
369
+ <a href="#fitness_cost_per_gene-instance_method" title="#fitness_cost_per_gene (instance method)">- (Object) <strong>fitness_cost_per_gene</strong> </a>
370
+
371
+
372
+
373
+ </span>
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+ <span class="summary_desc"><div class='inline'>
387
+ <p>Returns the value of attribute fitness_cost_per_gene.</p>
388
+ </div></span>
389
+
390
+ </li>
391
+
392
+
393
+ <li class="public ">
394
+ <span class="summary_signature">
395
+
396
+ <a href="#fitness_cost_per_neuron-instance_method" title="#fitness_cost_per_neuron (instance method)">- (Object) <strong>fitness_cost_per_neuron</strong> </a>
397
+
398
+
399
+
400
+ </span>
401
+
402
+
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+ <span class="summary_desc"><div class='inline'>
414
+ <p>fitness costs, if given, use in the computation of fitness AFTER the
415
+ overall fitness for the applied stimuli have been caclulated.</p>
416
+ </div></span>
417
+
418
+ </li>
419
+
420
+
421
+ <li class="public ">
422
+ <span class="summary_signature">
423
+
424
+ <a href="#hash_on_fitness-instance_method" title="#hash_on_fitness (instance method)">- (Object) <strong>hash_on_fitness</strong> </a>
425
+
426
+
427
+
428
+ </span>
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+
440
+
441
+ <span class="summary_desc"><div class='inline'>
442
+ <p>Set to true to returned named parameters as hashes to the fitness function
443
+ (the default is to do ordered arrays).</p>
444
+ </div></span>
445
+
446
+ </li>
447
+
448
+
449
+ <li class="public ">
450
+ <span class="summary_signature">
451
+
452
+ <a href="#hyper_switch-instance_method" title="#hyper_switch (instance method)">- (Object) <strong>hyper_switch</strong> </a>
453
+
454
+
455
+
456
+ </span>
457
+
458
+
459
+
460
+
461
+
462
+
463
+
464
+
465
+
466
+
467
+
468
+
469
+ <span class="summary_desc"><div class='inline'>
470
+ <p>Enable HyperNEAT.</p>
471
+ </div></span>
472
+
473
+ </li>
474
+
475
+
476
+ <li class="public ">
477
+ <span class="summary_signature">
478
+
479
+ <a href="#interspecies_mate_rate-instance_method" title="#interspecies_mate_rate (instance method)">- (Object) <strong>interspecies_mate_rate</strong> </a>
480
+
481
+
482
+
483
+ </span>
484
+
485
+
486
+
487
+
488
+
489
+
490
+
491
+
492
+
493
+
494
+
495
+
496
+ <span class="summary_desc"><div class='inline'>
497
+ <p>Ratio of mating are actually interspecies.</p>
498
+ </div></span>
499
+
500
+ </li>
501
+
502
+
503
+ <li class="public ">
504
+ <span class="summary_signature">
505
+
506
+ <a href="#linktrait_mutation_sig-instance_method" title="#linktrait_mutation_sig (instance method)">- (Object) <strong>linktrait_mutation_sig</strong> </a>
507
+
508
+
509
+
510
+ </span>
511
+
512
+
513
+
514
+
515
+
516
+
517
+
518
+
519
+
520
+
521
+
522
+
523
+ <span class="summary_desc"><div class='inline'>
524
+ <p>Returns the value of attribute linktrait_mutation_sig.</p>
525
+ </div></span>
526
+
527
+ </li>
528
+
529
+
530
+ <li class="public ">
531
+ <span class="summary_signature">
532
+
533
+ <a href="#mate_multipoint_avg_prob-instance_method" title="#mate_multipoint_avg_prob (instance method)">- (Object) <strong>mate_multipoint_avg_prob</strong> </a>
534
+
535
+
536
+
537
+ </span>
538
+
539
+
540
+
541
+
542
+
543
+
544
+
545
+
546
+
547
+
548
+
549
+
550
+ <span class="summary_desc"><div class='inline'>
551
+ <p>Returns the value of attribute mate_multipoint_avg_prob.</p>
552
+ </div></span>
553
+
554
+ </li>
555
+
556
+
557
+ <li class="public ">
558
+ <span class="summary_signature">
559
+
560
+ <a href="#mate_multipoint_prob-instance_method" title="#mate_multipoint_prob (instance method)">- (Object) <strong>mate_multipoint_prob</strong> </a>
561
+
562
+
563
+
564
+ </span>
565
+
566
+
567
+
568
+
569
+
570
+
571
+
572
+
573
+
574
+
575
+
576
+
577
+ <span class="summary_desc"><div class='inline'>
578
+ <p>Returns the value of attribute mate_multipoint_prob.</p>
579
+ </div></span>
580
+
581
+ </li>
582
+
583
+
584
+ <li class="public ">
585
+ <span class="summary_signature">
586
+
587
+ <a href="#mate_only_prob-instance_method" title="#mate_only_prob (instance method)">- (Object) <strong>mate_only_prob</strong> </a>
588
+
589
+
590
+
591
+ </span>
592
+
593
+
594
+
595
+
596
+
597
+
598
+
599
+
600
+
601
+
602
+
603
+
604
+ <span class="summary_desc"><div class='inline'>
605
+ <p>Returns the value of attribute mate_only_prob.</p>
606
+ </div></span>
607
+
608
+ </li>
609
+
610
+
611
+ <li class="public ">
612
+ <span class="summary_signature">
613
+
614
+ <a href="#mate_singlepoint_prob-instance_method" title="#mate_singlepoint_prob (instance method)">- (Object) <strong>mate_singlepoint_prob</strong> </a>
615
+
616
+
617
+
618
+ </span>
619
+
620
+
621
+
622
+
623
+
624
+
625
+
626
+
627
+
628
+
629
+
630
+
631
+ <span class="summary_desc"><div class='inline'>
632
+ <p>Returns the value of attribute mate_singlepoint_prob.</p>
633
+ </div></span>
634
+
635
+ </li>
636
+
637
+
638
+ <li class="public ">
639
+ <span class="summary_signature">
640
+
641
+ <a href="#max_generations-instance_method" title="#max_generations (instance method)">- (Object) <strong>max_generations</strong> </a>
642
+
643
+
644
+
645
+ </span>
646
+
647
+
648
+
649
+
650
+
651
+
652
+
653
+
654
+
655
+
656
+
657
+
658
+ <span class="summary_desc"><div class='inline'>
659
+ <p>Maximum number of generations to run, if given.</p>
660
+ </div></span>
661
+
662
+ </li>
663
+
664
+
665
+ <li class="public ">
666
+ <span class="summary_signature">
667
+
668
+ <a href="#max_population_history-instance_method" title="#max_population_history (instance method)">- (Object) <strong>max_population_history</strong> </a>
669
+
670
+
671
+
672
+ </span>
673
+
674
+
675
+
676
+
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+
685
+ <span class="summary_desc"><div class='inline'>
686
+ <p>Maximun number of populations to maintain in the history buffer.</p>
687
+ </div></span>
688
+
689
+ </li>
690
+
691
+
692
+ <li class="public ">
693
+ <span class="summary_signature">
694
+
695
+ <a href="#max_species-instance_method" title="#max_species (instance method)">- (Object) <strong>max_species</strong> </a>
696
+
697
+
698
+
699
+ </span>
700
+
701
+
702
+
703
+
704
+
705
+
706
+
707
+
708
+
709
+
710
+
711
+
712
+ <span class="summary_desc"><div class='inline'>
713
+ <p>Max target number of species (will result in the compatability_coeifficient
714
+ being adjusted automatically.</p>
715
+ </div></span>
716
+
717
+ </li>
718
+
719
+
720
+ <li class="public ">
721
+ <span class="summary_signature">
722
+
723
+ <a href="#mutate_add_gene_prob-instance_method" title="#mutate_add_gene_prob (instance method)">- (Object) <strong>mutate_add_gene_prob</strong> </a>
724
+
725
+
726
+
727
+ </span>
728
+
729
+
730
+
731
+
732
+
733
+
734
+
735
+
736
+
737
+
738
+
739
+
740
+ <span class="summary_desc"><div class='inline'>
741
+ <p>Returns the value of attribute mutate_add_gene_prob.</p>
742
+ </div></span>
743
+
744
+ </li>
745
+
746
+
747
+ <li class="public ">
748
+ <span class="summary_signature">
749
+
750
+ <a href="#mutate_add_neuron_prob-instance_method" title="#mutate_add_neuron_prob (instance method)">- (Object) <strong>mutate_add_neuron_prob</strong> </a>
751
+
752
+
753
+
754
+ </span>
755
+
756
+
757
+
758
+
759
+
760
+
761
+
762
+
763
+
764
+
765
+
766
+
767
+ <span class="summary_desc"><div class='inline'>
768
+ <p>Returns the value of attribute mutate_add_neuron_prob.</p>
769
+ </div></span>
770
+
771
+ </li>
772
+
773
+
774
+ <li class="public ">
775
+ <span class="summary_signature">
776
+
777
+ <a href="#mutate_change_gene_weights_prob-instance_method" title="#mutate_change_gene_weights_prob (instance method)">- (Object) <strong>mutate_change_gene_weights_prob</strong> </a>
778
+
779
+
780
+
781
+ </span>
782
+
783
+
784
+
785
+
786
+
787
+
788
+
789
+
790
+
791
+
792
+
793
+
794
+ <span class="summary_desc"><div class='inline'>
795
+ <p>For gene weights perturbations and changes (complete overwrites).</p>
796
+ </div></span>
797
+
798
+ </li>
799
+
800
+
801
+ <li class="public ">
802
+ <span class="summary_signature">
803
+
804
+ <a href="#mutate_change_gene_weights_sd-instance_method" title="#mutate_change_gene_weights_sd (instance method)">- (Object) <strong>mutate_change_gene_weights_sd</strong> </a>
805
+
806
+
807
+
808
+ </span>
809
+
810
+
811
+
812
+
813
+
814
+
815
+
816
+
817
+
818
+
819
+
820
+
821
+ <span class="summary_desc"><div class='inline'>
822
+ <p>For gene weights perturbations and changes (complete overwrites).</p>
823
+ </div></span>
824
+
825
+ </li>
826
+
827
+
828
+ <li class="public ">
829
+ <span class="summary_signature">
830
+
831
+ <a href="#mutate_gene_disable_prob-instance_method" title="#mutate_gene_disable_prob (instance method)">- (Object) <strong>mutate_gene_disable_prob</strong> </a>
832
+
833
+
834
+
835
+ </span>
836
+
837
+
838
+
839
+
840
+
841
+
842
+
843
+
844
+
845
+
846
+
847
+
848
+ <span class="summary_desc"><div class='inline'>
849
+ <p>Returns the value of attribute mutate_gene_disable_prob.</p>
850
+ </div></span>
851
+
852
+ </li>
853
+
854
+
855
+ <li class="public ">
856
+ <span class="summary_signature">
857
+
858
+ <a href="#mutate_gene_reenable_prob-instance_method" title="#mutate_gene_reenable_prob (instance method)">- (Object) <strong>mutate_gene_reenable_prob</strong> </a>
859
+
860
+
861
+
862
+ </span>
863
+
864
+
865
+
866
+
867
+
868
+
869
+
870
+
871
+
872
+
873
+
874
+
875
+ <span class="summary_desc"><div class='inline'>
876
+ <p>Returns the value of attribute mutate_gene_reenable_prob.</p>
877
+ </div></span>
878
+
879
+ </li>
880
+
881
+
882
+ <li class="public ">
883
+ <span class="summary_signature">
884
+
885
+ <a href="#mutate_gene_trait_prob-instance_method" title="#mutate_gene_trait_prob (instance method)">- (Object) <strong>mutate_gene_trait_prob</strong> </a>
886
+
887
+
888
+
889
+ </span>
890
+
891
+
892
+
893
+
894
+
895
+
896
+
897
+
898
+
899
+
900
+
901
+
902
+ <span class="summary_desc"><div class='inline'>
903
+ <p>Returns the value of attribute mutate_gene_trait_prob.</p>
904
+ </div></span>
905
+
906
+ </li>
907
+
908
+
909
+ <li class="public ">
910
+ <span class="summary_signature">
911
+
912
+ <a href="#mutate_neuron_trait_prob-instance_method" title="#mutate_neuron_trait_prob (instance method)">- (Object) <strong>mutate_neuron_trait_prob</strong> </a>
913
+
914
+
915
+
916
+ </span>
917
+
918
+
919
+
920
+
921
+
922
+
923
+
924
+
925
+
926
+
927
+
928
+
929
+ <span class="summary_desc"><div class='inline'>
930
+ <p>Returns the value of attribute mutate_neuron_trait_prob.</p>
931
+ </div></span>
932
+
933
+ </li>
934
+
935
+
936
+ <li class="public ">
937
+ <span class="summary_signature">
938
+
939
+ <a href="#mutate_only_prob-instance_method" title="#mutate_only_prob (instance method)">- (Object) <strong>mutate_only_prob</strong> </a>
940
+
941
+
942
+
943
+ </span>
944
+
945
+
946
+
947
+
948
+
949
+
950
+
951
+
952
+
953
+
954
+
955
+
956
+ <span class="summary_desc"><div class='inline'>
957
+ <p>Returns the value of attribute mutate_only_prob.</p>
958
+ </div></span>
959
+
960
+ </li>
961
+
962
+
963
+ <li class="public ">
964
+ <span class="summary_signature">
965
+
966
+ <a href="#mutate_perturb_gene_weights_prob-instance_method" title="#mutate_perturb_gene_weights_prob (instance method)">- (Object) <strong>mutate_perturb_gene_weights_prob</strong> </a>
967
+
968
+
969
+
970
+ </span>
971
+
972
+
973
+
974
+
975
+
976
+
977
+
978
+
979
+
980
+
981
+
982
+
983
+ <span class="summary_desc"><div class='inline'>
984
+ <p>For gene weights perturbations and changes (complete overwrites).</p>
985
+ </div></span>
986
+
987
+ </li>
988
+
989
+
990
+ <li class="public ">
991
+ <span class="summary_signature">
992
+
993
+ <a href="#mutate_perturb_gene_weights_sd-instance_method" title="#mutate_perturb_gene_weights_sd (instance method)">- (Object) <strong>mutate_perturb_gene_weights_sd</strong> </a>
994
+
995
+
996
+
997
+ </span>
998
+
999
+
1000
+
1001
+
1002
+
1003
+
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+ <span class="summary_desc"><div class='inline'>
1011
+ <p>For gene weights perturbations and changes (complete overwrites).</p>
1012
+ </div></span>
1013
+
1014
+ </li>
1015
+
1016
+
1017
+ <li class="public ">
1018
+ <span class="summary_signature">
1019
+
1020
+ <a href="#mutate_random_trait_prob-instance_method" title="#mutate_random_trait_prob (instance method)">- (Object) <strong>mutate_random_trait_prob</strong> </a>
1021
+
1022
+
1023
+
1024
+ </span>
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+ <span class="summary_desc"><div class='inline'>
1038
+ <p>Returns the value of attribute mutate_random_trait_prob.</p>
1039
+ </div></span>
1040
+
1041
+ </li>
1042
+
1043
+
1044
+ <li class="public ">
1045
+ <span class="summary_signature">
1046
+
1047
+ <a href="#mutate_toggle_enable_prob-instance_method" title="#mutate_toggle_enable_prob (instance method)">- (Object) <strong>mutate_toggle_enable_prob</strong> </a>
1048
+
1049
+
1050
+
1051
+ </span>
1052
+
1053
+
1054
+
1055
+
1056
+
1057
+
1058
+
1059
+
1060
+
1061
+
1062
+
1063
+
1064
+ <span class="summary_desc"><div class='inline'>
1065
+ <p>Returns the value of attribute mutate_toggle_enable_prob.</p>
1066
+ </div></span>
1067
+
1068
+ </li>
1069
+
1070
+
1071
+ <li class="public ">
1072
+ <span class="summary_signature">
1073
+
1074
+ <a href="#mutdiff_coefficient-instance_method" title="#mutdiff_coefficient (instance method)">- (Object) <strong>mutdiff_coefficient</strong> </a>
1075
+
1076
+
1077
+
1078
+ </span>
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+
1086
+
1087
+
1088
+
1089
+
1090
+
1091
+ <span class="summary_desc"><div class='inline'>
1092
+ <p>Returns the value of attribute mutdiff_coefficient.</p>
1093
+ </div></span>
1094
+
1095
+ </li>
1096
+
1097
+
1098
+ <li class="public ">
1099
+ <span class="summary_signature">
1100
+
1101
+ <a href="#neuron_trait_mut_sig-instance_method" title="#neuron_trait_mut_sig (instance method)">- (Object) <strong>neuron_trait_mut_sig</strong> </a>
1102
+
1103
+
1104
+
1105
+ </span>
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+ <span class="summary_desc"><div class='inline'>
1119
+ <p>Returns the value of attribute neuron_trait_mut_sig.</p>
1120
+ </div></span>
1121
+
1122
+ </li>
1123
+
1124
+
1125
+ <li class="public ">
1126
+ <span class="summary_signature">
1127
+
1128
+ <a href="#newlink_tries-instance_method" title="#newlink_tries (instance method)">- (Object) <strong>newlink_tries</strong> </a>
1129
+
1130
+
1131
+
1132
+ </span>
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+
1143
+
1144
+
1145
+ <span class="summary_desc"><div class='inline'>
1146
+ <p>Returns the value of attribute newlink_tries.</p>
1147
+ </div></span>
1148
+
1149
+ </li>
1150
+
1151
+
1152
+ <li class="public ">
1153
+ <span class="summary_signature">
1154
+
1155
+ <a href="#population_size-instance_method" title="#population_size (instance method)">- (Object) <strong>population_size</strong> </a>
1156
+
1157
+
1158
+
1159
+ </span>
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+
1172
+ <span class="summary_desc"><div class='inline'>
1173
+ <p>If set, will start off at the specified size and grow to the bigger
1174
+ population size.</p>
1175
+ </div></span>
1176
+
1177
+ </li>
1178
+
1179
+
1180
+ <li class="public ">
1181
+ <span class="summary_signature">
1182
+
1183
+ <a href="#print_every-instance_method" title="#print_every (instance method)">- (Object) <strong>print_every</strong> </a>
1184
+
1185
+
1186
+
1187
+ </span>
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+
1194
+
1195
+
1196
+
1197
+
1198
+
1199
+
1200
+ <span class="summary_desc"><div class='inline'>
1201
+ <p>Returns the value of attribute print_every.</p>
1202
+ </div></span>
1203
+
1204
+ </li>
1205
+
1206
+
1207
+ <li class="public ">
1208
+ <span class="summary_signature">
1209
+
1210
+ <a href="#real_time_switch-instance_method" title="#real_time_switch (instance method)">- (Object) <strong>real_time_switch</strong> </a>
1211
+
1212
+
1213
+
1214
+ </span>
1215
+
1216
+
1217
+
1218
+
1219
+
1220
+
1221
+
1222
+
1223
+
1224
+
1225
+
1226
+
1227
+ <span class="summary_desc"><div class='inline'>
1228
+ <p>Enable RT-NEAT, for gradual evolution suitable for games and other
1229
+ human-interactive systems.</p>
1230
+ </div></span>
1231
+
1232
+ </li>
1233
+
1234
+
1235
+ <li class="public ">
1236
+ <span class="summary_signature">
1237
+
1238
+ <a href="#recur_only_prob-instance_method" title="#recur_only_prob (instance method)">- (Object) <strong>recur_only_prob</strong> </a>
1239
+
1240
+
1241
+
1242
+ </span>
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+
1249
+
1250
+
1251
+
1252
+
1253
+
1254
+
1255
+ <span class="summary_desc"><div class='inline'>
1256
+ <p>Returns the value of attribute recur_only_prob.</p>
1257
+ </div></span>
1258
+
1259
+ </li>
1260
+
1261
+
1262
+ <li class="public ">
1263
+ <span class="summary_signature">
1264
+
1265
+ <a href="#recur_prob-instance_method" title="#recur_prob (instance method)">- (Object) <strong>recur_prob</strong> </a>
1266
+
1267
+
1268
+
1269
+ </span>
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+
1276
+
1277
+
1278
+
1279
+
1280
+
1281
+
1282
+ <span class="summary_desc"><div class='inline'>
1283
+ <p>Returns the value of attribute recur_prob.</p>
1284
+ </div></span>
1285
+
1286
+ </li>
1287
+
1288
+
1289
+ <li class="public ">
1290
+ <span class="summary_signature">
1291
+
1292
+ <a href="#recurrency_switch-instance_method" title="#recurrency_switch (instance method)">- (Object) <strong>recurrency_switch</strong> </a>
1293
+
1294
+
1295
+
1296
+ </span>
1297
+
1298
+
1299
+
1300
+
1301
+
1302
+
1303
+
1304
+
1305
+
1306
+
1307
+
1308
+
1309
+ <span class="summary_desc"><div class='inline'>
1310
+ <p>If true, allow for recurrent networks.</p>
1311
+ </div></span>
1312
+
1313
+ </li>
1314
+
1315
+
1316
+ <li class="public ">
1317
+ <span class="summary_signature">
1318
+
1319
+ <a href="#smallest_species-instance_method" title="#smallest_species (instance method)">- (Object) <strong>smallest_species</strong> </a>
1320
+
1321
+
1322
+
1323
+ </span>
1324
+
1325
+
1326
+
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+
1336
+ <span class="summary_desc"><div class='inline'>
1337
+ <p>Species smallest population allowed (coalse smaller species into one).</p>
1338
+ </div></span>
1339
+
1340
+ </li>
1341
+
1342
+
1343
+ <li class="public ">
1344
+ <span class="summary_signature">
1345
+
1346
+ <a href="#start_population_size-instance_method" title="#start_population_size (instance method)">- (Object) <strong>start_population_size</strong> </a>
1347
+
1348
+
1349
+
1350
+ </span>
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+ <span class="summary_desc"><div class='inline'>
1364
+ <p>If set, will start off at the specified size and grow to the bigger
1365
+ population size.</p>
1366
+ </div></span>
1367
+
1368
+ </li>
1369
+
1370
+
1371
+ <li class="public ">
1372
+ <span class="summary_signature">
1373
+
1374
+ <a href="#start_sequence_at-instance_method" title="#start_sequence_at (instance method)">- (Object) <strong>start_sequence_at</strong> </a>
1375
+
1376
+
1377
+
1378
+ </span>
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+ <span class="summary_desc"><div class='inline'>
1392
+ <p>Returns the value of attribute start_sequence_at.</p>
1393
+ </div></span>
1394
+
1395
+ </li>
1396
+
1397
+
1398
+ <li class="public ">
1399
+ <span class="summary_signature">
1400
+
1401
+ <a href="#survival_mininum_per_species-instance_method" title="#survival_mininum_per_species (instance method)">- (Object) <strong>survival_mininum_per_species</strong> </a>
1402
+
1403
+
1404
+
1405
+ </span>
1406
+
1407
+
1408
+
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+ <span class="summary_desc"><div class='inline'>
1419
+ <p>Returns the value of attribute survival_mininum_per_species.</p>
1420
+ </div></span>
1421
+
1422
+ </li>
1423
+
1424
+
1425
+ <li class="public ">
1426
+ <span class="summary_signature">
1427
+
1428
+ <a href="#survival_threshold-instance_method" title="#survival_threshold (instance method)">- (Object) <strong>survival_threshold</strong> </a>
1429
+
1430
+
1431
+
1432
+ </span>
1433
+
1434
+
1435
+
1436
+
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+ <span class="summary_desc"><div class='inline'>
1446
+ <p>factor (0 to 1) of the top percentage of the species that&#39;s allowed to
1447
+ mate.</p>
1448
+ </div></span>
1449
+
1450
+ </li>
1451
+
1452
+
1453
+ <li class="public ">
1454
+ <span class="summary_signature">
1455
+
1456
+ <a href="#trait_mutation_power-instance_method" title="#trait_mutation_power (instance method)">- (Object) <strong>trait_mutation_power</strong> </a>
1457
+
1458
+
1459
+
1460
+ </span>
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+
1472
+
1473
+ <span class="summary_desc"><div class='inline'>
1474
+ <p>Returns the value of attribute trait_mutation_power.</p>
1475
+ </div></span>
1476
+
1477
+ </li>
1478
+
1479
+
1480
+ <li class="public ">
1481
+ <span class="summary_signature">
1482
+
1483
+ <a href="#trait_param_mut_prob-instance_method" title="#trait_param_mut_prob (instance method)">- (Object) <strong>trait_param_mut_prob</strong> </a>
1484
+
1485
+
1486
+
1487
+ </span>
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+
1498
+
1499
+
1500
+ <span class="summary_desc"><div class='inline'>
1501
+ <p>Returns the value of attribute trait_param_mut_prob.</p>
1502
+ </div></span>
1503
+
1504
+ </li>
1505
+
1506
+
1507
+ <li class="public ">
1508
+ <span class="summary_signature">
1509
+
1510
+ <a href="#weigh_mut_power-instance_method" title="#weigh_mut_power (instance method)">- (Object) <strong>weigh_mut_power</strong> </a>
1511
+
1512
+
1513
+
1514
+ </span>
1515
+
1516
+
1517
+
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+
1524
+
1525
+
1526
+
1527
+ <span class="summary_desc"><div class='inline'>
1528
+ <p>Returns the value of attribute weigh_mut_power.</p>
1529
+ </div></span>
1530
+
1531
+ </li>
1532
+
1533
+
1534
+ <li class="public ">
1535
+ <span class="summary_signature">
1536
+
1537
+ <a href="#weight_coefficient-instance_method" title="#weight_coefficient (instance method)">- (Object) <strong>weight_coefficient</strong> </a>
1538
+
1539
+
1540
+
1541
+ </span>
1542
+
1543
+
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+
1550
+
1551
+
1552
+
1553
+
1554
+ <span class="summary_desc"><div class='inline'>
1555
+ <p>Speciation coffficient.</p>
1556
+ </div></span>
1557
+
1558
+ </li>
1559
+
1560
+
1561
+ </ul>
1562
+
1563
+
1564
+
1565
+
1566
+
1567
+ <h3 class="inherited">Attributes inherited from <span class='object_link'><a href="../NeatOb.html" title="NEAT::NeatOb (class)">NeatOb</a></span></h3>
1568
+ <p class="inherited"><span class='object_link'><a href="../NeatOb.html#controller-instance_method" title="NEAT::NeatOb#controller (method)">#controller</a></span>, <span class='object_link'><a href="../NeatOb.html#name-instance_method" title="NEAT::NeatOb#name (method)">#name</a></span></p>
1569
+
1570
+
1571
+
1572
+ <h2>
1573
+ Instance Method Summary
1574
+ <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
1575
+ </h2>
1576
+
1577
+ <ul class="summary">
1578
+
1579
+ <li class="public ">
1580
+ <span class="summary_signature">
1581
+
1582
+ <a href="#initialize-instance_method" title="#initialize (instance method)">- (NeatSettings) <strong>initialize</strong> </a>
1583
+
1584
+
1585
+
1586
+ </span>
1587
+
1588
+
1589
+ <span class="note title constructor">constructor</span>
1590
+
1591
+
1592
+
1593
+
1594
+
1595
+
1596
+
1597
+
1598
+ <span class="summary_desc"><div class='inline'>
1599
+ <p>Set up defaults for mandatory entries.</p>
1600
+ </div></span>
1601
+
1602
+ </li>
1603
+
1604
+
1605
+ </ul>
1606
+
1607
+
1608
+
1609
+
1610
+
1611
+
1612
+
1613
+
1614
+
1615
+
1616
+
1617
+ <h3 class="inherited">Methods inherited from <span class='object_link'><a href="../NeatOb.html" title="NEAT::NeatOb (class)">NeatOb</a></span></h3>
1618
+ <p class="inherited"><span class='object_link'><a href="../NeatOb.html#log-instance_method" title="NEAT::NeatOb#log (method)">#log</a></span>, <span class='object_link'><a href="../NeatOb.html#log-class_method" title="NEAT::NeatOb.log (method)">log</a></span>, <span class='object_link'><a href="../NeatOb.html#to_s-instance_method" title="NEAT::NeatOb#to_s (method)">#to_s</a></span></p>
1619
+
1620
+ <div id="constructor_details" class="method_details_list">
1621
+ <h2>Constructor Details</h2>
1622
+
1623
+ <div class="method_details first">
1624
+ <h3 class="signature first" id="initialize-instance_method">
1625
+
1626
+ - (<tt><span class='object_link'><a href="" title="NEAT::Controller::NeatSettings (class)">NeatSettings</a></span></tt>) <strong>initialize</strong>
1627
+
1628
+
1629
+
1630
+
1631
+
1632
+ </h3><div class="docstring">
1633
+ <div class="discussion">
1634
+
1635
+ <p>Set up defaults for mandatory entries.</p>
1636
+
1637
+
1638
+ </div>
1639
+ </div>
1640
+ <div class="tags">
1641
+
1642
+
1643
+ </div><table class="source_code">
1644
+ <tr>
1645
+ <td>
1646
+ <pre class="lines">
1647
+
1648
+
1649
+ 318
1650
+ 319
1651
+ 320
1652
+ 321
1653
+ 322
1654
+ 323
1655
+ 324
1656
+ 325
1657
+ 326
1658
+ 327
1659
+ 328</pre>
1660
+ </td>
1661
+ <td>
1662
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 318</span>
1663
+
1664
+ <span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span>
1665
+ <span class='kw'>super</span>
1666
+ <span class='ivar'>@start_sequence_at</span> <span class='op'>=</span> <span class='int'>0</span>
1667
+ <span class='ivar'>@end_sequence_at</span> <span class='op'>=</span> <span class='int'>100</span>
1668
+ <span class='ivar'>@max_generations</span> <span class='op'>=</span> <span class='int'>1000</span>
1669
+
1670
+ <span class='comment'># Default operators
1671
+ </span> <span class='ivar'>@evaluator</span> <span class='op'>=</span> <span class='const'>Evaluator</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>self</span>
1672
+ <span class='ivar'>@expressor</span> <span class='op'>=</span> <span class='const'>Expressor</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>self</span>
1673
+ <span class='ivar'>@evolver</span> <span class='op'>=</span> <span class='const'>Evolver</span><span class='period'>.</span><span class='id identifier rubyid_new'>new</span> <span class='kw'>self</span>
1674
+ <span class='kw'>end</span></pre>
1675
+ </td>
1676
+ </tr>
1677
+ </table>
1678
+ </div>
1679
+
1680
+ </div>
1681
+
1682
+ <div id="instance_attr_details" class="attr_details">
1683
+ <h2>Instance Attribute Details</h2>
1684
+
1685
+
1686
+ <span id="age_significance=-instance_method"></span>
1687
+ <div class="method_details first">
1688
+ <h3 class="signature first" id="age_significance-instance_method">
1689
+
1690
+ - (<tt>Object</tt>) <strong>age_significance</strong>
1691
+
1692
+
1693
+
1694
+
1695
+
1696
+ </h3><div class="docstring">
1697
+ <div class="discussion">
1698
+
1699
+ <p>based on the C version of NEAT</p>
1700
+
1701
+
1702
+ </div>
1703
+ </div>
1704
+ <div class="tags">
1705
+
1706
+
1707
+ </div><table class="source_code">
1708
+ <tr>
1709
+ <td>
1710
+ <pre class="lines">
1711
+
1712
+
1713
+ 217
1714
+ 218
1715
+ 219</pre>
1716
+ </td>
1717
+ <td>
1718
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 217</span>
1719
+
1720
+ <span class='kw'>def</span> <span class='id identifier rubyid_age_significance'>age_significance</span>
1721
+ <span class='ivar'>@age_significance</span>
1722
+ <span class='kw'>end</span></pre>
1723
+ </td>
1724
+ </tr>
1725
+ </table>
1726
+ </div>
1727
+
1728
+
1729
+ <span id="babies_stolen=-instance_method"></span>
1730
+ <div class="method_details ">
1731
+ <h3 class="signature " id="babies_stolen-instance_method">
1732
+
1733
+ - (<tt>Object</tt>) <strong>babies_stolen</strong>
1734
+
1735
+
1736
+
1737
+
1738
+
1739
+ </h3><div class="docstring">
1740
+ <div class="discussion">
1741
+
1742
+ <p>Returns the value of attribute babies_stolen</p>
1743
+
1744
+
1745
+ </div>
1746
+ </div>
1747
+ <div class="tags">
1748
+
1749
+
1750
+ </div><table class="source_code">
1751
+ <tr>
1752
+ <td>
1753
+ <pre class="lines">
1754
+
1755
+
1756
+ 218
1757
+ 219
1758
+ 220</pre>
1759
+ </td>
1760
+ <td>
1761
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 218</span>
1762
+
1763
+ <span class='kw'>def</span> <span class='id identifier rubyid_babies_stolen'>babies_stolen</span>
1764
+ <span class='ivar'>@babies_stolen</span>
1765
+ <span class='kw'>end</span></pre>
1766
+ </td>
1767
+ </tr>
1768
+ </table>
1769
+ </div>
1770
+
1771
+
1772
+ <span id="compatibility_threshold=-instance_method"></span>
1773
+ <div class="method_details ">
1774
+ <h3 class="signature " id="compatibility_threshold-instance_method">
1775
+
1776
+ - (<tt>Object</tt>) <strong>compatibility_threshold</strong>
1777
+
1778
+
1779
+
1780
+
1781
+
1782
+ </h3><div class="docstring">
1783
+ <div class="discussion">
1784
+
1785
+ <p>Species compatability threshold</p>
1786
+
1787
+
1788
+ </div>
1789
+ </div>
1790
+ <div class="tags">
1791
+
1792
+
1793
+ </div><table class="source_code">
1794
+ <tr>
1795
+ <td>
1796
+ <pre class="lines">
1797
+
1798
+
1799
+ 221
1800
+ 222
1801
+ 223</pre>
1802
+ </td>
1803
+ <td>
1804
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 221</span>
1805
+
1806
+ <span class='kw'>def</span> <span class='id identifier rubyid_compatibility_threshold'>compatibility_threshold</span>
1807
+ <span class='ivar'>@compatibility_threshold</span>
1808
+ <span class='kw'>end</span></pre>
1809
+ </td>
1810
+ </tr>
1811
+ </table>
1812
+ </div>
1813
+
1814
+
1815
+ <span id="disjoint_coefficient=-instance_method"></span>
1816
+ <div class="method_details ">
1817
+ <h3 class="signature " id="disjoint_coefficient-instance_method">
1818
+
1819
+ - (<tt>Object</tt>) <strong>disjoint_coefficient</strong>
1820
+
1821
+
1822
+
1823
+
1824
+
1825
+ </h3><div class="docstring">
1826
+ <div class="discussion">
1827
+
1828
+ <p>Speciation coffficient</p>
1829
+
1830
+
1831
+ </div>
1832
+ </div>
1833
+ <div class="tags">
1834
+
1835
+
1836
+ </div><table class="source_code">
1837
+ <tr>
1838
+ <td>
1839
+ <pre class="lines">
1840
+
1841
+
1842
+ 224
1843
+ 225
1844
+ 226</pre>
1845
+ </td>
1846
+ <td>
1847
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 224</span>
1848
+
1849
+ <span class='kw'>def</span> <span class='id identifier rubyid_disjoint_coefficient'>disjoint_coefficient</span>
1850
+ <span class='ivar'>@disjoint_coefficient</span>
1851
+ <span class='kw'>end</span></pre>
1852
+ </td>
1853
+ </tr>
1854
+ </table>
1855
+ </div>
1856
+
1857
+
1858
+ <span id="dropoff_age=-instance_method"></span>
1859
+ <div class="method_details ">
1860
+ <h3 class="signature " id="dropoff_age-instance_method">
1861
+
1862
+ - (<tt>Object</tt>) <strong>dropoff_age</strong>
1863
+
1864
+
1865
+
1866
+
1867
+
1868
+ </h3><div class="docstring">
1869
+ <div class="discussion">
1870
+
1871
+ <p>Species Peality age for not making progress</p>
1872
+
1873
+
1874
+ </div>
1875
+ </div>
1876
+ <div class="tags">
1877
+
1878
+
1879
+ </div><table class="source_code">
1880
+ <tr>
1881
+ <td>
1882
+ <pre class="lines">
1883
+
1884
+
1885
+ 231
1886
+ 232
1887
+ 233</pre>
1888
+ </td>
1889
+ <td>
1890
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 231</span>
1891
+
1892
+ <span class='kw'>def</span> <span class='id identifier rubyid_dropoff_age'>dropoff_age</span>
1893
+ <span class='ivar'>@dropoff_age</span>
1894
+ <span class='kw'>end</span></pre>
1895
+ </td>
1896
+ </tr>
1897
+ </table>
1898
+ </div>
1899
+
1900
+
1901
+ <span id="end_sequence_at=-instance_method"></span>
1902
+ <div class="method_details ">
1903
+ <h3 class="signature " id="end_sequence_at-instance_method">
1904
+
1905
+ - (<tt>Object</tt>) <strong>end_sequence_at</strong>
1906
+
1907
+
1908
+
1909
+
1910
+
1911
+ </h3><div class="docstring">
1912
+ <div class="discussion">
1913
+
1914
+ <p>Returns the value of attribute end_sequence_at</p>
1915
+
1916
+
1917
+ </div>
1918
+ </div>
1919
+ <div class="tags">
1920
+
1921
+
1922
+ </div><table class="source_code">
1923
+ <tr>
1924
+ <td>
1925
+ <pre class="lines">
1926
+
1927
+
1928
+ 283
1929
+ 284
1930
+ 285</pre>
1931
+ </td>
1932
+ <td>
1933
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 283</span>
1934
+
1935
+ <span class='kw'>def</span> <span class='id identifier rubyid_end_sequence_at'>end_sequence_at</span>
1936
+ <span class='ivar'>@end_sequence_at</span>
1937
+ <span class='kw'>end</span></pre>
1938
+ </td>
1939
+ </tr>
1940
+ </table>
1941
+ </div>
1942
+
1943
+
1944
+ <span id="evolved_substrate_switch=-instance_method"></span>
1945
+ <div class="method_details ">
1946
+ <h3 class="signature " id="evolved_substrate_switch-instance_method">
1947
+
1948
+ - (<tt>Object</tt>) <strong>evolved_substrate_switch</strong>
1949
+
1950
+
1951
+
1952
+
1953
+
1954
+ </h3><div class="docstring">
1955
+ <div class="discussion">
1956
+
1957
+ <p>Enable Evolved Substrate HyperNEAT. Meaningless unless hyper_switch is also
1958
+ enabled.</p>
1959
+
1960
+
1961
+ </div>
1962
+ </div>
1963
+ <div class="tags">
1964
+
1965
+
1966
+ </div><table class="source_code">
1967
+ <tr>
1968
+ <td>
1969
+ <pre class="lines">
1970
+
1971
+
1972
+ 308
1973
+ 309
1974
+ 310</pre>
1975
+ </td>
1976
+ <td>
1977
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 308</span>
1978
+
1979
+ <span class='kw'>def</span> <span class='id identifier rubyid_evolved_substrate_switch'>evolved_substrate_switch</span>
1980
+ <span class='ivar'>@evolved_substrate_switch</span>
1981
+ <span class='kw'>end</span></pre>
1982
+ </td>
1983
+ </tr>
1984
+ </table>
1985
+ </div>
1986
+
1987
+
1988
+ <span id="excess_coefficient=-instance_method"></span>
1989
+ <div class="method_details ">
1990
+ <h3 class="signature " id="excess_coefficient-instance_method">
1991
+
1992
+ - (<tt>Object</tt>) <strong>excess_coefficient</strong>
1993
+
1994
+
1995
+
1996
+
1997
+
1998
+ </h3><div class="docstring">
1999
+ <div class="discussion">
2000
+
2001
+ <p>Speciation coffficient</p>
2002
+
2003
+
2004
+ </div>
2005
+ </div>
2006
+ <div class="tags">
2007
+
2008
+
2009
+ </div><table class="source_code">
2010
+ <tr>
2011
+ <td>
2012
+ <pre class="lines">
2013
+
2014
+
2015
+ 224
2016
+ 225
2017
+ 226</pre>
2018
+ </td>
2019
+ <td>
2020
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 224</span>
2021
+
2022
+ <span class='kw'>def</span> <span class='id identifier rubyid_excess_coefficient'>excess_coefficient</span>
2023
+ <span class='ivar'>@excess_coefficient</span>
2024
+ <span class='kw'>end</span></pre>
2025
+ </td>
2026
+ </tr>
2027
+ </table>
2028
+ </div>
2029
+
2030
+
2031
+ <span id="feature_selection_switch=-instance_method"></span>
2032
+ <div class="method_details ">
2033
+ <h3 class="signature " id="feature_selection_switch-instance_method">
2034
+
2035
+ - (<tt>Object</tt>) <strong>feature_selection_switch</strong>
2036
+
2037
+
2038
+
2039
+
2040
+
2041
+ </h3><div class="docstring">
2042
+ <div class="discussion">
2043
+
2044
+ <p>Enable FS-NEAT</p>
2045
+
2046
+
2047
+ </div>
2048
+ </div>
2049
+ <div class="tags">
2050
+
2051
+
2052
+ </div><table class="source_code">
2053
+ <tr>
2054
+ <td>
2055
+ <pre class="lines">
2056
+
2057
+
2058
+ 299
2059
+ 300
2060
+ 301</pre>
2061
+ </td>
2062
+ <td>
2063
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 299</span>
2064
+
2065
+ <span class='kw'>def</span> <span class='id identifier rubyid_feature_selection_switch'>feature_selection_switch</span>
2066
+ <span class='ivar'>@feature_selection_switch</span>
2067
+ <span class='kw'>end</span></pre>
2068
+ </td>
2069
+ </tr>
2070
+ </table>
2071
+ </div>
2072
+
2073
+
2074
+ <span id="fitness_cost_per_gene=-instance_method"></span>
2075
+ <div class="method_details ">
2076
+ <h3 class="signature " id="fitness_cost_per_gene-instance_method">
2077
+
2078
+ - (<tt>Object</tt>) <strong>fitness_cost_per_gene</strong>
2079
+
2080
+
2081
+
2082
+
2083
+
2084
+ </h3><div class="docstring">
2085
+ <div class="discussion">
2086
+
2087
+ <p>Returns the value of attribute fitness_cost_per_gene</p>
2088
+
2089
+
2090
+ </div>
2091
+ </div>
2092
+ <div class="tags">
2093
+
2094
+
2095
+ </div><table class="source_code">
2096
+ <tr>
2097
+ <td>
2098
+ <pre class="lines">
2099
+
2100
+
2101
+ 277
2102
+ 278
2103
+ 279</pre>
2104
+ </td>
2105
+ <td>
2106
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 277</span>
2107
+
2108
+ <span class='kw'>def</span> <span class='id identifier rubyid_fitness_cost_per_gene'>fitness_cost_per_gene</span>
2109
+ <span class='ivar'>@fitness_cost_per_gene</span>
2110
+ <span class='kw'>end</span></pre>
2111
+ </td>
2112
+ </tr>
2113
+ </table>
2114
+ </div>
2115
+
2116
+
2117
+ <span id="fitness_cost_per_neuron=-instance_method"></span>
2118
+ <div class="method_details ">
2119
+ <h3 class="signature " id="fitness_cost_per_neuron-instance_method">
2120
+
2121
+ - (<tt>Object</tt>) <strong>fitness_cost_per_neuron</strong>
2122
+
2123
+
2124
+
2125
+
2126
+
2127
+ </h3><div class="docstring">
2128
+ <div class="discussion">
2129
+
2130
+ <p>fitness costs, if given, use in the computation of fitness AFTER the
2131
+ overall fitness for the applied stimuli have been caclulated.</p>
2132
+
2133
+
2134
+ </div>
2135
+ </div>
2136
+ <div class="tags">
2137
+
2138
+
2139
+ </div><table class="source_code">
2140
+ <tr>
2141
+ <td>
2142
+ <pre class="lines">
2143
+
2144
+
2145
+ 276
2146
+ 277
2147
+ 278</pre>
2148
+ </td>
2149
+ <td>
2150
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 276</span>
2151
+
2152
+ <span class='kw'>def</span> <span class='id identifier rubyid_fitness_cost_per_neuron'>fitness_cost_per_neuron</span>
2153
+ <span class='ivar'>@fitness_cost_per_neuron</span>
2154
+ <span class='kw'>end</span></pre>
2155
+ </td>
2156
+ </tr>
2157
+ </table>
2158
+ </div>
2159
+
2160
+
2161
+ <span id="hash_on_fitness=-instance_method"></span>
2162
+ <div class="method_details ">
2163
+ <h3 class="signature " id="hash_on_fitness-instance_method">
2164
+
2165
+ - (<tt>Object</tt>) <strong>hash_on_fitness</strong>
2166
+
2167
+
2168
+
2169
+
2170
+
2171
+ </h3><div class="docstring">
2172
+ <div class="discussion">
2173
+
2174
+ <p>Set to true to returned named parameters as hashes to the fitness function
2175
+ (the default is to do ordered arrays)</p>
2176
+
2177
+
2178
+ </div>
2179
+ </div>
2180
+ <div class="tags">
2181
+
2182
+
2183
+ </div><table class="source_code">
2184
+ <tr>
2185
+ <td>
2186
+ <pre class="lines">
2187
+
2188
+
2189
+ 214
2190
+ 215
2191
+ 216</pre>
2192
+ </td>
2193
+ <td>
2194
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 214</span>
2195
+
2196
+ <span class='kw'>def</span> <span class='id identifier rubyid_hash_on_fitness'>hash_on_fitness</span>
2197
+ <span class='ivar'>@hash_on_fitness</span>
2198
+ <span class='kw'>end</span></pre>
2199
+ </td>
2200
+ </tr>
2201
+ </table>
2202
+ </div>
2203
+
2204
+
2205
+ <span id="hyper_switch=-instance_method"></span>
2206
+ <div class="method_details ">
2207
+ <h3 class="signature " id="hyper_switch-instance_method">
2208
+
2209
+ - (<tt>Object</tt>) <strong>hyper_switch</strong>
2210
+
2211
+
2212
+
2213
+
2214
+
2215
+ </h3><div class="docstring">
2216
+ <div class="discussion">
2217
+
2218
+ <p>Enable HyperNEAT. This will result in the critters being interpreted as
2219
+ CPPNs for substrate weights. Additional setup will be necessary.</p>
2220
+
2221
+
2222
+ </div>
2223
+ </div>
2224
+ <div class="tags">
2225
+
2226
+
2227
+ </div><table class="source_code">
2228
+ <tr>
2229
+ <td>
2230
+ <pre class="lines">
2231
+
2232
+
2233
+ 304
2234
+ 305
2235
+ 306</pre>
2236
+ </td>
2237
+ <td>
2238
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 304</span>
2239
+
2240
+ <span class='kw'>def</span> <span class='id identifier rubyid_hyper_switch'>hyper_switch</span>
2241
+ <span class='ivar'>@hyper_switch</span>
2242
+ <span class='kw'>end</span></pre>
2243
+ </td>
2244
+ </tr>
2245
+ </table>
2246
+ </div>
2247
+
2248
+
2249
+ <span id="interspecies_mate_rate=-instance_method"></span>
2250
+ <div class="method_details ">
2251
+ <h3 class="signature " id="interspecies_mate_rate-instance_method">
2252
+
2253
+ - (<tt>Object</tt>) <strong>interspecies_mate_rate</strong>
2254
+
2255
+
2256
+
2257
+
2258
+
2259
+ </h3><div class="docstring">
2260
+ <div class="discussion">
2261
+
2262
+ <p>Ratio of mating are actually interspecies</p>
2263
+
2264
+
2265
+ </div>
2266
+ </div>
2267
+ <div class="tags">
2268
+
2269
+
2270
+ </div><table class="source_code">
2271
+ <tr>
2272
+ <td>
2273
+ <pre class="lines">
2274
+
2275
+
2276
+ 237
2277
+ 238
2278
+ 239</pre>
2279
+ </td>
2280
+ <td>
2281
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 237</span>
2282
+
2283
+ <span class='kw'>def</span> <span class='id identifier rubyid_interspecies_mate_rate'>interspecies_mate_rate</span>
2284
+ <span class='ivar'>@interspecies_mate_rate</span>
2285
+ <span class='kw'>end</span></pre>
2286
+ </td>
2287
+ </tr>
2288
+ </table>
2289
+ </div>
2290
+
2291
+
2292
+ <span id="linktrait_mutation_sig=-instance_method"></span>
2293
+ <div class="method_details ">
2294
+ <h3 class="signature " id="linktrait_mutation_sig-instance_method">
2295
+
2296
+ - (<tt>Object</tt>) <strong>linktrait_mutation_sig</strong>
2297
+
2298
+
2299
+
2300
+
2301
+
2302
+ </h3><div class="docstring">
2303
+ <div class="discussion">
2304
+
2305
+ <p>Returns the value of attribute linktrait_mutation_sig</p>
2306
+
2307
+
2308
+ </div>
2309
+ </div>
2310
+ <div class="tags">
2311
+
2312
+
2313
+ </div><table class="source_code">
2314
+ <tr>
2315
+ <td>
2316
+ <pre class="lines">
2317
+
2318
+
2319
+ 239
2320
+ 240
2321
+ 241</pre>
2322
+ </td>
2323
+ <td>
2324
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 239</span>
2325
+
2326
+ <span class='kw'>def</span> <span class='id identifier rubyid_linktrait_mutation_sig'>linktrait_mutation_sig</span>
2327
+ <span class='ivar'>@linktrait_mutation_sig</span>
2328
+ <span class='kw'>end</span></pre>
2329
+ </td>
2330
+ </tr>
2331
+ </table>
2332
+ </div>
2333
+
2334
+
2335
+ <span id="mate_multipoint_avg_prob=-instance_method"></span>
2336
+ <div class="method_details ">
2337
+ <h3 class="signature " id="mate_multipoint_avg_prob-instance_method">
2338
+
2339
+ - (<tt>Object</tt>) <strong>mate_multipoint_avg_prob</strong>
2340
+
2341
+
2342
+
2343
+
2344
+
2345
+ </h3><div class="docstring">
2346
+ <div class="discussion">
2347
+
2348
+ <p>Returns the value of attribute mate_multipoint_avg_prob</p>
2349
+
2350
+
2351
+ </div>
2352
+ </div>
2353
+ <div class="tags">
2354
+
2355
+
2356
+ </div><table class="source_code">
2357
+ <tr>
2358
+ <td>
2359
+ <pre class="lines">
2360
+
2361
+
2362
+ 240
2363
+ 241
2364
+ 242</pre>
2365
+ </td>
2366
+ <td>
2367
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 240</span>
2368
+
2369
+ <span class='kw'>def</span> <span class='id identifier rubyid_mate_multipoint_avg_prob'>mate_multipoint_avg_prob</span>
2370
+ <span class='ivar'>@mate_multipoint_avg_prob</span>
2371
+ <span class='kw'>end</span></pre>
2372
+ </td>
2373
+ </tr>
2374
+ </table>
2375
+ </div>
2376
+
2377
+
2378
+ <span id="mate_multipoint_prob=-instance_method"></span>
2379
+ <div class="method_details ">
2380
+ <h3 class="signature " id="mate_multipoint_prob-instance_method">
2381
+
2382
+ - (<tt>Object</tt>) <strong>mate_multipoint_prob</strong>
2383
+
2384
+
2385
+
2386
+
2387
+
2388
+ </h3><div class="docstring">
2389
+ <div class="discussion">
2390
+
2391
+ <p>Returns the value of attribute mate_multipoint_prob</p>
2392
+
2393
+
2394
+ </div>
2395
+ </div>
2396
+ <div class="tags">
2397
+
2398
+
2399
+ </div><table class="source_code">
2400
+ <tr>
2401
+ <td>
2402
+ <pre class="lines">
2403
+
2404
+
2405
+ 241
2406
+ 242
2407
+ 243</pre>
2408
+ </td>
2409
+ <td>
2410
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 241</span>
2411
+
2412
+ <span class='kw'>def</span> <span class='id identifier rubyid_mate_multipoint_prob'>mate_multipoint_prob</span>
2413
+ <span class='ivar'>@mate_multipoint_prob</span>
2414
+ <span class='kw'>end</span></pre>
2415
+ </td>
2416
+ </tr>
2417
+ </table>
2418
+ </div>
2419
+
2420
+
2421
+ <span id="mate_only_prob=-instance_method"></span>
2422
+ <div class="method_details ">
2423
+ <h3 class="signature " id="mate_only_prob-instance_method">
2424
+
2425
+ - (<tt>Object</tt>) <strong>mate_only_prob</strong>
2426
+
2427
+
2428
+
2429
+
2430
+
2431
+ </h3><div class="docstring">
2432
+ <div class="discussion">
2433
+
2434
+ <p>Returns the value of attribute mate_only_prob</p>
2435
+
2436
+
2437
+ </div>
2438
+ </div>
2439
+ <div class="tags">
2440
+
2441
+
2442
+ </div><table class="source_code">
2443
+ <tr>
2444
+ <td>
2445
+ <pre class="lines">
2446
+
2447
+
2448
+ 242
2449
+ 243
2450
+ 244</pre>
2451
+ </td>
2452
+ <td>
2453
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 242</span>
2454
+
2455
+ <span class='kw'>def</span> <span class='id identifier rubyid_mate_only_prob'>mate_only_prob</span>
2456
+ <span class='ivar'>@mate_only_prob</span>
2457
+ <span class='kw'>end</span></pre>
2458
+ </td>
2459
+ </tr>
2460
+ </table>
2461
+ </div>
2462
+
2463
+
2464
+ <span id="mate_singlepoint_prob=-instance_method"></span>
2465
+ <div class="method_details ">
2466
+ <h3 class="signature " id="mate_singlepoint_prob-instance_method">
2467
+
2468
+ - (<tt>Object</tt>) <strong>mate_singlepoint_prob</strong>
2469
+
2470
+
2471
+
2472
+
2473
+
2474
+ </h3><div class="docstring">
2475
+ <div class="discussion">
2476
+
2477
+ <p>Returns the value of attribute mate_singlepoint_prob</p>
2478
+
2479
+
2480
+ </div>
2481
+ </div>
2482
+ <div class="tags">
2483
+
2484
+
2485
+ </div><table class="source_code">
2486
+ <tr>
2487
+ <td>
2488
+ <pre class="lines">
2489
+
2490
+
2491
+ 243
2492
+ 244
2493
+ 245</pre>
2494
+ </td>
2495
+ <td>
2496
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 243</span>
2497
+
2498
+ <span class='kw'>def</span> <span class='id identifier rubyid_mate_singlepoint_prob'>mate_singlepoint_prob</span>
2499
+ <span class='ivar'>@mate_singlepoint_prob</span>
2500
+ <span class='kw'>end</span></pre>
2501
+ </td>
2502
+ </tr>
2503
+ </table>
2504
+ </div>
2505
+
2506
+
2507
+ <span id="max_generations=-instance_method"></span>
2508
+ <div class="method_details ">
2509
+ <h3 class="signature " id="max_generations-instance_method">
2510
+
2511
+ - (<tt>Object</tt>) <strong>max_generations</strong>
2512
+
2513
+
2514
+
2515
+
2516
+
2517
+ </h3><div class="docstring">
2518
+ <div class="discussion">
2519
+
2520
+ <p>Maximum number of generations to run, if given.</p>
2521
+
2522
+
2523
+ </div>
2524
+ </div>
2525
+ <div class="tags">
2526
+
2527
+
2528
+ </div><table class="source_code">
2529
+ <tr>
2530
+ <td>
2531
+ <pre class="lines">
2532
+
2533
+
2534
+ 246
2535
+ 247
2536
+ 248</pre>
2537
+ </td>
2538
+ <td>
2539
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 246</span>
2540
+
2541
+ <span class='kw'>def</span> <span class='id identifier rubyid_max_generations'>max_generations</span>
2542
+ <span class='ivar'>@max_generations</span>
2543
+ <span class='kw'>end</span></pre>
2544
+ </td>
2545
+ </tr>
2546
+ </table>
2547
+ </div>
2548
+
2549
+
2550
+ <span id="max_population_history=-instance_method"></span>
2551
+ <div class="method_details ">
2552
+ <h3 class="signature " id="max_population_history-instance_method">
2553
+
2554
+ - (<tt>Object</tt>) <strong>max_population_history</strong>
2555
+
2556
+
2557
+
2558
+
2559
+
2560
+ </h3><div class="docstring">
2561
+ <div class="discussion">
2562
+
2563
+ <p>Maximun number of populations to maintain in the history buffer.</p>
2564
+
2565
+
2566
+ </div>
2567
+ </div>
2568
+ <div class="tags">
2569
+
2570
+
2571
+ </div><table class="source_code">
2572
+ <tr>
2573
+ <td>
2574
+ <pre class="lines">
2575
+
2576
+
2577
+ 249
2578
+ 250
2579
+ 251</pre>
2580
+ </td>
2581
+ <td>
2582
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 249</span>
2583
+
2584
+ <span class='kw'>def</span> <span class='id identifier rubyid_max_population_history'>max_population_history</span>
2585
+ <span class='ivar'>@max_population_history</span>
2586
+ <span class='kw'>end</span></pre>
2587
+ </td>
2588
+ </tr>
2589
+ </table>
2590
+ </div>
2591
+
2592
+
2593
+ <span id="max_species=-instance_method"></span>
2594
+ <div class="method_details ">
2595
+ <h3 class="signature " id="max_species-instance_method">
2596
+
2597
+ - (<tt>Object</tt>) <strong>max_species</strong>
2598
+
2599
+
2600
+
2601
+
2602
+
2603
+ </h3><div class="docstring">
2604
+ <div class="discussion">
2605
+
2606
+ <p>Max target number of species (will result in the compatability_coeifficient
2607
+ being adjusted automatically</p>
2608
+
2609
+
2610
+ </div>
2611
+ </div>
2612
+ <div class="tags">
2613
+
2614
+
2615
+ </div><table class="source_code">
2616
+ <tr>
2617
+ <td>
2618
+ <pre class="lines">
2619
+
2620
+
2621
+ 228
2622
+ 229
2623
+ 230</pre>
2624
+ </td>
2625
+ <td>
2626
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 228</span>
2627
+
2628
+ <span class='kw'>def</span> <span class='id identifier rubyid_max_species'>max_species</span>
2629
+ <span class='ivar'>@max_species</span>
2630
+ <span class='kw'>end</span></pre>
2631
+ </td>
2632
+ </tr>
2633
+ </table>
2634
+ </div>
2635
+
2636
+
2637
+ <span id="mutate_add_gene_prob=-instance_method"></span>
2638
+ <div class="method_details ">
2639
+ <h3 class="signature " id="mutate_add_gene_prob-instance_method">
2640
+
2641
+ - (<tt>Object</tt>) <strong>mutate_add_gene_prob</strong>
2642
+
2643
+
2644
+
2645
+
2646
+
2647
+ </h3><div class="docstring">
2648
+ <div class="discussion">
2649
+
2650
+ <p>Returns the value of attribute mutate_add_gene_prob</p>
2651
+
2652
+
2653
+ </div>
2654
+ </div>
2655
+ <div class="tags">
2656
+
2657
+
2658
+ </div><table class="source_code">
2659
+ <tr>
2660
+ <td>
2661
+ <pre class="lines">
2662
+
2663
+
2664
+ 251
2665
+ 252
2666
+ 253</pre>
2667
+ </td>
2668
+ <td>
2669
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 251</span>
2670
+
2671
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_add_gene_prob'>mutate_add_gene_prob</span>
2672
+ <span class='ivar'>@mutate_add_gene_prob</span>
2673
+ <span class='kw'>end</span></pre>
2674
+ </td>
2675
+ </tr>
2676
+ </table>
2677
+ </div>
2678
+
2679
+
2680
+ <span id="mutate_add_neuron_prob=-instance_method"></span>
2681
+ <div class="method_details ">
2682
+ <h3 class="signature " id="mutate_add_neuron_prob-instance_method">
2683
+
2684
+ - (<tt>Object</tt>) <strong>mutate_add_neuron_prob</strong>
2685
+
2686
+
2687
+
2688
+
2689
+
2690
+ </h3><div class="docstring">
2691
+ <div class="discussion">
2692
+
2693
+ <p>Returns the value of attribute mutate_add_neuron_prob</p>
2694
+
2695
+
2696
+ </div>
2697
+ </div>
2698
+ <div class="tags">
2699
+
2700
+
2701
+ </div><table class="source_code">
2702
+ <tr>
2703
+ <td>
2704
+ <pre class="lines">
2705
+
2706
+
2707
+ 252
2708
+ 253
2709
+ 254</pre>
2710
+ </td>
2711
+ <td>
2712
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 252</span>
2713
+
2714
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_add_neuron_prob'>mutate_add_neuron_prob</span>
2715
+ <span class='ivar'>@mutate_add_neuron_prob</span>
2716
+ <span class='kw'>end</span></pre>
2717
+ </td>
2718
+ </tr>
2719
+ </table>
2720
+ </div>
2721
+
2722
+
2723
+ <span id="mutate_change_gene_weights_prob=-instance_method"></span>
2724
+ <div class="method_details ">
2725
+ <h3 class="signature " id="mutate_change_gene_weights_prob-instance_method">
2726
+
2727
+ - (<tt>Object</tt>) <strong>mutate_change_gene_weights_prob</strong>
2728
+
2729
+
2730
+
2731
+
2732
+
2733
+ </h3><div class="docstring">
2734
+ <div class="discussion">
2735
+
2736
+ <p>For gene weights perturbations and changes (complete overwrites)</p>
2737
+
2738
+
2739
+ </div>
2740
+ </div>
2741
+ <div class="tags">
2742
+
2743
+
2744
+ </div><table class="source_code">
2745
+ <tr>
2746
+ <td>
2747
+ <pre class="lines">
2748
+
2749
+
2750
+ 260
2751
+ 261
2752
+ 262</pre>
2753
+ </td>
2754
+ <td>
2755
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 260</span>
2756
+
2757
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_change_gene_weights_prob'>mutate_change_gene_weights_prob</span>
2758
+ <span class='ivar'>@mutate_change_gene_weights_prob</span>
2759
+ <span class='kw'>end</span></pre>
2760
+ </td>
2761
+ </tr>
2762
+ </table>
2763
+ </div>
2764
+
2765
+
2766
+ <span id="mutate_change_gene_weights_sd=-instance_method"></span>
2767
+ <div class="method_details ">
2768
+ <h3 class="signature " id="mutate_change_gene_weights_sd-instance_method">
2769
+
2770
+ - (<tt>Object</tt>) <strong>mutate_change_gene_weights_sd</strong>
2771
+
2772
+
2773
+
2774
+
2775
+
2776
+ </h3><div class="docstring">
2777
+ <div class="discussion">
2778
+
2779
+ <p>For gene weights perturbations and changes (complete overwrites)</p>
2780
+
2781
+
2782
+ </div>
2783
+ </div>
2784
+ <div class="tags">
2785
+
2786
+
2787
+ </div><table class="source_code">
2788
+ <tr>
2789
+ <td>
2790
+ <pre class="lines">
2791
+
2792
+
2793
+ 260
2794
+ 261
2795
+ 262</pre>
2796
+ </td>
2797
+ <td>
2798
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 260</span>
2799
+
2800
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_change_gene_weights_sd'>mutate_change_gene_weights_sd</span>
2801
+ <span class='ivar'>@mutate_change_gene_weights_sd</span>
2802
+ <span class='kw'>end</span></pre>
2803
+ </td>
2804
+ </tr>
2805
+ </table>
2806
+ </div>
2807
+
2808
+
2809
+ <span id="mutate_gene_disable_prob=-instance_method"></span>
2810
+ <div class="method_details ">
2811
+ <h3 class="signature " id="mutate_gene_disable_prob-instance_method">
2812
+
2813
+ - (<tt>Object</tt>) <strong>mutate_gene_disable_prob</strong>
2814
+
2815
+
2816
+
2817
+
2818
+
2819
+ </h3><div class="docstring">
2820
+ <div class="discussion">
2821
+
2822
+ <p>Returns the value of attribute mutate_gene_disable_prob</p>
2823
+
2824
+
2825
+ </div>
2826
+ </div>
2827
+ <div class="tags">
2828
+
2829
+
2830
+ </div><table class="source_code">
2831
+ <tr>
2832
+ <td>
2833
+ <pre class="lines">
2834
+
2835
+
2836
+ 254
2837
+ 255
2838
+ 256</pre>
2839
+ </td>
2840
+ <td>
2841
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 254</span>
2842
+
2843
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_gene_disable_prob'>mutate_gene_disable_prob</span>
2844
+ <span class='ivar'>@mutate_gene_disable_prob</span>
2845
+ <span class='kw'>end</span></pre>
2846
+ </td>
2847
+ </tr>
2848
+ </table>
2849
+ </div>
2850
+
2851
+
2852
+ <span id="mutate_gene_reenable_prob=-instance_method"></span>
2853
+ <div class="method_details ">
2854
+ <h3 class="signature " id="mutate_gene_reenable_prob-instance_method">
2855
+
2856
+ - (<tt>Object</tt>) <strong>mutate_gene_reenable_prob</strong>
2857
+
2858
+
2859
+
2860
+
2861
+
2862
+ </h3><div class="docstring">
2863
+ <div class="discussion">
2864
+
2865
+ <p>Returns the value of attribute mutate_gene_reenable_prob</p>
2866
+
2867
+
2868
+ </div>
2869
+ </div>
2870
+ <div class="tags">
2871
+
2872
+
2873
+ </div><table class="source_code">
2874
+ <tr>
2875
+ <td>
2876
+ <pre class="lines">
2877
+
2878
+
2879
+ 255
2880
+ 256
2881
+ 257</pre>
2882
+ </td>
2883
+ <td>
2884
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 255</span>
2885
+
2886
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_gene_reenable_prob'>mutate_gene_reenable_prob</span>
2887
+ <span class='ivar'>@mutate_gene_reenable_prob</span>
2888
+ <span class='kw'>end</span></pre>
2889
+ </td>
2890
+ </tr>
2891
+ </table>
2892
+ </div>
2893
+
2894
+
2895
+ <span id="mutate_gene_trait_prob=-instance_method"></span>
2896
+ <div class="method_details ">
2897
+ <h3 class="signature " id="mutate_gene_trait_prob-instance_method">
2898
+
2899
+ - (<tt>Object</tt>) <strong>mutate_gene_trait_prob</strong>
2900
+
2901
+
2902
+
2903
+
2904
+
2905
+ </h3><div class="docstring">
2906
+ <div class="discussion">
2907
+
2908
+ <p>Returns the value of attribute mutate_gene_trait_prob</p>
2909
+
2910
+
2911
+ </div>
2912
+ </div>
2913
+ <div class="tags">
2914
+
2915
+
2916
+ </div><table class="source_code">
2917
+ <tr>
2918
+ <td>
2919
+ <pre class="lines">
2920
+
2921
+
2922
+ 257
2923
+ 258
2924
+ 259</pre>
2925
+ </td>
2926
+ <td>
2927
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 257</span>
2928
+
2929
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_gene_trait_prob'>mutate_gene_trait_prob</span>
2930
+ <span class='ivar'>@mutate_gene_trait_prob</span>
2931
+ <span class='kw'>end</span></pre>
2932
+ </td>
2933
+ </tr>
2934
+ </table>
2935
+ </div>
2936
+
2937
+
2938
+ <span id="mutate_neuron_trait_prob=-instance_method"></span>
2939
+ <div class="method_details ">
2940
+ <h3 class="signature " id="mutate_neuron_trait_prob-instance_method">
2941
+
2942
+ - (<tt>Object</tt>) <strong>mutate_neuron_trait_prob</strong>
2943
+
2944
+
2945
+
2946
+
2947
+
2948
+ </h3><div class="docstring">
2949
+ <div class="discussion">
2950
+
2951
+ <p>Returns the value of attribute mutate_neuron_trait_prob</p>
2952
+
2953
+
2954
+ </div>
2955
+ </div>
2956
+ <div class="tags">
2957
+
2958
+
2959
+ </div><table class="source_code">
2960
+ <tr>
2961
+ <td>
2962
+ <pre class="lines">
2963
+
2964
+
2965
+ 265
2966
+ 266
2967
+ 267</pre>
2968
+ </td>
2969
+ <td>
2970
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 265</span>
2971
+
2972
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_neuron_trait_prob'>mutate_neuron_trait_prob</span>
2973
+ <span class='ivar'>@mutate_neuron_trait_prob</span>
2974
+ <span class='kw'>end</span></pre>
2975
+ </td>
2976
+ </tr>
2977
+ </table>
2978
+ </div>
2979
+
2980
+
2981
+ <span id="mutate_only_prob=-instance_method"></span>
2982
+ <div class="method_details ">
2983
+ <h3 class="signature " id="mutate_only_prob-instance_method">
2984
+
2985
+ - (<tt>Object</tt>) <strong>mutate_only_prob</strong>
2986
+
2987
+
2988
+
2989
+
2990
+
2991
+ </h3><div class="docstring">
2992
+ <div class="discussion">
2993
+
2994
+ <p>Returns the value of attribute mutate_only_prob</p>
2995
+
2996
+
2997
+ </div>
2998
+ </div>
2999
+ <div class="tags">
3000
+
3001
+
3002
+ </div><table class="source_code">
3003
+ <tr>
3004
+ <td>
3005
+ <pre class="lines">
3006
+
3007
+
3008
+ 266
3009
+ 267
3010
+ 268</pre>
3011
+ </td>
3012
+ <td>
3013
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 266</span>
3014
+
3015
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_only_prob'>mutate_only_prob</span>
3016
+ <span class='ivar'>@mutate_only_prob</span>
3017
+ <span class='kw'>end</span></pre>
3018
+ </td>
3019
+ </tr>
3020
+ </table>
3021
+ </div>
3022
+
3023
+
3024
+ <span id="mutate_perturb_gene_weights_prob=-instance_method"></span>
3025
+ <div class="method_details ">
3026
+ <h3 class="signature " id="mutate_perturb_gene_weights_prob-instance_method">
3027
+
3028
+ - (<tt>Object</tt>) <strong>mutate_perturb_gene_weights_prob</strong>
3029
+
3030
+
3031
+
3032
+
3033
+
3034
+ </h3><div class="docstring">
3035
+ <div class="discussion">
3036
+
3037
+ <p>For gene weights perturbations and changes (complete overwrites)</p>
3038
+
3039
+
3040
+ </div>
3041
+ </div>
3042
+ <div class="tags">
3043
+
3044
+
3045
+ </div><table class="source_code">
3046
+ <tr>
3047
+ <td>
3048
+ <pre class="lines">
3049
+
3050
+
3051
+ 260
3052
+ 261
3053
+ 262</pre>
3054
+ </td>
3055
+ <td>
3056
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 260</span>
3057
+
3058
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_perturb_gene_weights_prob'>mutate_perturb_gene_weights_prob</span>
3059
+ <span class='ivar'>@mutate_perturb_gene_weights_prob</span>
3060
+ <span class='kw'>end</span></pre>
3061
+ </td>
3062
+ </tr>
3063
+ </table>
3064
+ </div>
3065
+
3066
+
3067
+ <span id="mutate_perturb_gene_weights_sd=-instance_method"></span>
3068
+ <div class="method_details ">
3069
+ <h3 class="signature " id="mutate_perturb_gene_weights_sd-instance_method">
3070
+
3071
+ - (<tt>Object</tt>) <strong>mutate_perturb_gene_weights_sd</strong>
3072
+
3073
+
3074
+
3075
+
3076
+
3077
+ </h3><div class="docstring">
3078
+ <div class="discussion">
3079
+
3080
+ <p>For gene weights perturbations and changes (complete overwrites)</p>
3081
+
3082
+
3083
+ </div>
3084
+ </div>
3085
+ <div class="tags">
3086
+
3087
+
3088
+ </div><table class="source_code">
3089
+ <tr>
3090
+ <td>
3091
+ <pre class="lines">
3092
+
3093
+
3094
+ 260
3095
+ 261
3096
+ 262</pre>
3097
+ </td>
3098
+ <td>
3099
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 260</span>
3100
+
3101
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_perturb_gene_weights_sd'>mutate_perturb_gene_weights_sd</span>
3102
+ <span class='ivar'>@mutate_perturb_gene_weights_sd</span>
3103
+ <span class='kw'>end</span></pre>
3104
+ </td>
3105
+ </tr>
3106
+ </table>
3107
+ </div>
3108
+
3109
+
3110
+ <span id="mutate_random_trait_prob=-instance_method"></span>
3111
+ <div class="method_details ">
3112
+ <h3 class="signature " id="mutate_random_trait_prob-instance_method">
3113
+
3114
+ - (<tt>Object</tt>) <strong>mutate_random_trait_prob</strong>
3115
+
3116
+
3117
+
3118
+
3119
+
3120
+ </h3><div class="docstring">
3121
+ <div class="discussion">
3122
+
3123
+ <p>Returns the value of attribute mutate_random_trait_prob</p>
3124
+
3125
+
3126
+ </div>
3127
+ </div>
3128
+ <div class="tags">
3129
+
3130
+
3131
+ </div><table class="source_code">
3132
+ <tr>
3133
+ <td>
3134
+ <pre class="lines">
3135
+
3136
+
3137
+ 267
3138
+ 268
3139
+ 269</pre>
3140
+ </td>
3141
+ <td>
3142
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 267</span>
3143
+
3144
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_random_trait_prob'>mutate_random_trait_prob</span>
3145
+ <span class='ivar'>@mutate_random_trait_prob</span>
3146
+ <span class='kw'>end</span></pre>
3147
+ </td>
3148
+ </tr>
3149
+ </table>
3150
+ </div>
3151
+
3152
+
3153
+ <span id="mutate_toggle_enable_prob=-instance_method"></span>
3154
+ <div class="method_details ">
3155
+ <h3 class="signature " id="mutate_toggle_enable_prob-instance_method">
3156
+
3157
+ - (<tt>Object</tt>) <strong>mutate_toggle_enable_prob</strong>
3158
+
3159
+
3160
+
3161
+
3162
+
3163
+ </h3><div class="docstring">
3164
+ <div class="discussion">
3165
+
3166
+ <p>Returns the value of attribute mutate_toggle_enable_prob</p>
3167
+
3168
+
3169
+ </div>
3170
+ </div>
3171
+ <div class="tags">
3172
+
3173
+
3174
+ </div><table class="source_code">
3175
+ <tr>
3176
+ <td>
3177
+ <pre class="lines">
3178
+
3179
+
3180
+ 268
3181
+ 269
3182
+ 270</pre>
3183
+ </td>
3184
+ <td>
3185
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 268</span>
3186
+
3187
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutate_toggle_enable_prob'>mutate_toggle_enable_prob</span>
3188
+ <span class='ivar'>@mutate_toggle_enable_prob</span>
3189
+ <span class='kw'>end</span></pre>
3190
+ </td>
3191
+ </tr>
3192
+ </table>
3193
+ </div>
3194
+
3195
+
3196
+ <span id="mutdiff_coefficient=-instance_method"></span>
3197
+ <div class="method_details ">
3198
+ <h3 class="signature " id="mutdiff_coefficient-instance_method">
3199
+
3200
+ - (<tt>Object</tt>) <strong>mutdiff_coefficient</strong>
3201
+
3202
+
3203
+
3204
+
3205
+
3206
+ </h3><div class="docstring">
3207
+ <div class="discussion">
3208
+
3209
+ <p>Returns the value of attribute mutdiff_coefficient</p>
3210
+
3211
+
3212
+ </div>
3213
+ </div>
3214
+ <div class="tags">
3215
+
3216
+
3217
+ </div><table class="source_code">
3218
+ <tr>
3219
+ <td>
3220
+ <pre class="lines">
3221
+
3222
+
3223
+ 269
3224
+ 270
3225
+ 271</pre>
3226
+ </td>
3227
+ <td>
3228
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 269</span>
3229
+
3230
+ <span class='kw'>def</span> <span class='id identifier rubyid_mutdiff_coefficient'>mutdiff_coefficient</span>
3231
+ <span class='ivar'>@mutdiff_coefficient</span>
3232
+ <span class='kw'>end</span></pre>
3233
+ </td>
3234
+ </tr>
3235
+ </table>
3236
+ </div>
3237
+
3238
+
3239
+ <span id="neuron_trait_mut_sig=-instance_method"></span>
3240
+ <div class="method_details ">
3241
+ <h3 class="signature " id="neuron_trait_mut_sig-instance_method">
3242
+
3243
+ - (<tt>Object</tt>) <strong>neuron_trait_mut_sig</strong>
3244
+
3245
+
3246
+
3247
+
3248
+
3249
+ </h3><div class="docstring">
3250
+ <div class="discussion">
3251
+
3252
+ <p>Returns the value of attribute neuron_trait_mut_sig</p>
3253
+
3254
+
3255
+ </div>
3256
+ </div>
3257
+ <div class="tags">
3258
+
3259
+
3260
+ </div><table class="source_code">
3261
+ <tr>
3262
+ <td>
3263
+ <pre class="lines">
3264
+
3265
+
3266
+ 271
3267
+ 272
3268
+ 273</pre>
3269
+ </td>
3270
+ <td>
3271
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 271</span>
3272
+
3273
+ <span class='kw'>def</span> <span class='id identifier rubyid_neuron_trait_mut_sig'>neuron_trait_mut_sig</span>
3274
+ <span class='ivar'>@neuron_trait_mut_sig</span>
3275
+ <span class='kw'>end</span></pre>
3276
+ </td>
3277
+ </tr>
3278
+ </table>
3279
+ </div>
3280
+
3281
+
3282
+ <span id="newlink_tries=-instance_method"></span>
3283
+ <div class="method_details ">
3284
+ <h3 class="signature " id="newlink_tries-instance_method">
3285
+
3286
+ - (<tt>Object</tt>) <strong>newlink_tries</strong>
3287
+
3288
+
3289
+
3290
+
3291
+
3292
+ </h3><div class="docstring">
3293
+ <div class="discussion">
3294
+
3295
+ <p>Returns the value of attribute newlink_tries</p>
3296
+
3297
+
3298
+ </div>
3299
+ </div>
3300
+ <div class="tags">
3301
+
3302
+
3303
+ </div><table class="source_code">
3304
+ <tr>
3305
+ <td>
3306
+ <pre class="lines">
3307
+
3308
+
3309
+ 270
3310
+ 271
3311
+ 272</pre>
3312
+ </td>
3313
+ <td>
3314
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 270</span>
3315
+
3316
+ <span class='kw'>def</span> <span class='id identifier rubyid_newlink_tries'>newlink_tries</span>
3317
+ <span class='ivar'>@newlink_tries</span>
3318
+ <span class='kw'>end</span></pre>
3319
+ </td>
3320
+ </tr>
3321
+ </table>
3322
+ </div>
3323
+
3324
+
3325
+ <span id="population_size=-instance_method"></span>
3326
+ <div class="method_details ">
3327
+ <h3 class="signature " id="population_size-instance_method">
3328
+
3329
+ - (<tt>Object</tt>) <strong>population_size</strong>
3330
+
3331
+
3332
+
3333
+
3334
+
3335
+ </h3><div class="docstring">
3336
+ <div class="discussion">
3337
+
3338
+ <p>If set, will start off at the specified size and grow to the bigger
3339
+ population size</p>
3340
+
3341
+
3342
+ </div>
3343
+ </div>
3344
+ <div class="tags">
3345
+
3346
+
3347
+ </div><table class="source_code">
3348
+ <tr>
3349
+ <td>
3350
+ <pre class="lines">
3351
+
3352
+
3353
+ 281
3354
+ 282
3355
+ 283</pre>
3356
+ </td>
3357
+ <td>
3358
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 281</span>
3359
+
3360
+ <span class='kw'>def</span> <span class='id identifier rubyid_population_size'>population_size</span>
3361
+ <span class='ivar'>@population_size</span>
3362
+ <span class='kw'>end</span></pre>
3363
+ </td>
3364
+ </tr>
3365
+ </table>
3366
+ </div>
3367
+
3368
+
3369
+ <span id="print_every=-instance_method"></span>
3370
+ <div class="method_details ">
3371
+ <h3 class="signature " id="print_every-instance_method">
3372
+
3373
+ - (<tt>Object</tt>) <strong>print_every</strong>
3374
+
3375
+
3376
+
3377
+
3378
+
3379
+ </h3><div class="docstring">
3380
+ <div class="discussion">
3381
+
3382
+ <p>Returns the value of attribute print_every</p>
3383
+
3384
+
3385
+ </div>
3386
+ </div>
3387
+ <div class="tags">
3388
+
3389
+
3390
+ </div><table class="source_code">
3391
+ <tr>
3392
+ <td>
3393
+ <pre class="lines">
3394
+
3395
+
3396
+ 285
3397
+ 286
3398
+ 287</pre>
3399
+ </td>
3400
+ <td>
3401
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 285</span>
3402
+
3403
+ <span class='kw'>def</span> <span class='id identifier rubyid_print_every'>print_every</span>
3404
+ <span class='ivar'>@print_every</span>
3405
+ <span class='kw'>end</span></pre>
3406
+ </td>
3407
+ </tr>
3408
+ </table>
3409
+ </div>
3410
+
3411
+
3412
+ <span id="real_time_switch=-instance_method"></span>
3413
+ <div class="method_details ">
3414
+ <h3 class="signature " id="real_time_switch-instance_method">
3415
+
3416
+ - (<tt>Object</tt>) <strong>real_time_switch</strong>
3417
+
3418
+
3419
+
3420
+
3421
+
3422
+ </h3><div class="docstring">
3423
+ <div class="discussion">
3424
+
3425
+ <p>Enable RT-NEAT, for gradual evolution suitable for games and other
3426
+ human-interactive systems.</p>
3427
+
3428
+
3429
+ </div>
3430
+ </div>
3431
+ <div class="tags">
3432
+
3433
+
3434
+ </div><table class="source_code">
3435
+ <tr>
3436
+ <td>
3437
+ <pre class="lines">
3438
+
3439
+
3440
+ 312
3441
+ 313
3442
+ 314</pre>
3443
+ </td>
3444
+ <td>
3445
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 312</span>
3446
+
3447
+ <span class='kw'>def</span> <span class='id identifier rubyid_real_time_switch'>real_time_switch</span>
3448
+ <span class='ivar'>@real_time_switch</span>
3449
+ <span class='kw'>end</span></pre>
3450
+ </td>
3451
+ </tr>
3452
+ </table>
3453
+ </div>
3454
+
3455
+
3456
+ <span id="recur_only_prob=-instance_method"></span>
3457
+ <div class="method_details ">
3458
+ <h3 class="signature " id="recur_only_prob-instance_method">
3459
+
3460
+ - (<tt>Object</tt>) <strong>recur_only_prob</strong>
3461
+
3462
+
3463
+
3464
+
3465
+
3466
+ </h3><div class="docstring">
3467
+ <div class="discussion">
3468
+
3469
+ <p>Returns the value of attribute recur_only_prob</p>
3470
+
3471
+
3472
+ </div>
3473
+ </div>
3474
+ <div class="tags">
3475
+
3476
+
3477
+ </div><table class="source_code">
3478
+ <tr>
3479
+ <td>
3480
+ <pre class="lines">
3481
+
3482
+
3483
+ 286
3484
+ 287
3485
+ 288</pre>
3486
+ </td>
3487
+ <td>
3488
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 286</span>
3489
+
3490
+ <span class='kw'>def</span> <span class='id identifier rubyid_recur_only_prob'>recur_only_prob</span>
3491
+ <span class='ivar'>@recur_only_prob</span>
3492
+ <span class='kw'>end</span></pre>
3493
+ </td>
3494
+ </tr>
3495
+ </table>
3496
+ </div>
3497
+
3498
+
3499
+ <span id="recur_prob=-instance_method"></span>
3500
+ <div class="method_details ">
3501
+ <h3 class="signature " id="recur_prob-instance_method">
3502
+
3503
+ - (<tt>Object</tt>) <strong>recur_prob</strong>
3504
+
3505
+
3506
+
3507
+
3508
+
3509
+ </h3><div class="docstring">
3510
+ <div class="discussion">
3511
+
3512
+ <p>Returns the value of attribute recur_prob</p>
3513
+
3514
+
3515
+ </div>
3516
+ </div>
3517
+ <div class="tags">
3518
+
3519
+
3520
+ </div><table class="source_code">
3521
+ <tr>
3522
+ <td>
3523
+ <pre class="lines">
3524
+
3525
+
3526
+ 287
3527
+ 288
3528
+ 289</pre>
3529
+ </td>
3530
+ <td>
3531
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 287</span>
3532
+
3533
+ <span class='kw'>def</span> <span class='id identifier rubyid_recur_prob'>recur_prob</span>
3534
+ <span class='ivar'>@recur_prob</span>
3535
+ <span class='kw'>end</span></pre>
3536
+ </td>
3537
+ </tr>
3538
+ </table>
3539
+ </div>
3540
+
3541
+
3542
+ <span id="recurrency_switch=-instance_method"></span>
3543
+ <div class="method_details ">
3544
+ <h3 class="signature " id="recurrency_switch-instance_method">
3545
+
3546
+ - (<tt>Object</tt>) <strong>recurrency_switch</strong>
3547
+
3548
+
3549
+
3550
+
3551
+
3552
+ </h3><div class="docstring">
3553
+ <div class="discussion">
3554
+
3555
+ <p>If true, allow for recurrent networks.</p>
3556
+
3557
+
3558
+ </div>
3559
+ </div>
3560
+ <div class="tags">
3561
+
3562
+
3563
+ </div><table class="source_code">
3564
+ <tr>
3565
+ <td>
3566
+ <pre class="lines">
3567
+
3568
+
3569
+ 315
3570
+ 316
3571
+ 317</pre>
3572
+ </td>
3573
+ <td>
3574
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 315</span>
3575
+
3576
+ <span class='kw'>def</span> <span class='id identifier rubyid_recurrency_switch'>recurrency_switch</span>
3577
+ <span class='ivar'>@recurrency_switch</span>
3578
+ <span class='kw'>end</span></pre>
3579
+ </td>
3580
+ </tr>
3581
+ </table>
3582
+ </div>
3583
+
3584
+
3585
+ <span id="smallest_species=-instance_method"></span>
3586
+ <div class="method_details ">
3587
+ <h3 class="signature " id="smallest_species-instance_method">
3588
+
3589
+ - (<tt>Object</tt>) <strong>smallest_species</strong>
3590
+
3591
+
3592
+
3593
+
3594
+
3595
+ </h3><div class="docstring">
3596
+ <div class="discussion">
3597
+
3598
+ <p>Species smallest population allowed (coalse smaller species into one)</p>
3599
+
3600
+
3601
+ </div>
3602
+ </div>
3603
+ <div class="tags">
3604
+
3605
+
3606
+ </div><table class="source_code">
3607
+ <tr>
3608
+ <td>
3609
+ <pre class="lines">
3610
+
3611
+
3612
+ 234
3613
+ 235
3614
+ 236</pre>
3615
+ </td>
3616
+ <td>
3617
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 234</span>
3618
+
3619
+ <span class='kw'>def</span> <span class='id identifier rubyid_smallest_species'>smallest_species</span>
3620
+ <span class='ivar'>@smallest_species</span>
3621
+ <span class='kw'>end</span></pre>
3622
+ </td>
3623
+ </tr>
3624
+ </table>
3625
+ </div>
3626
+
3627
+
3628
+ <span id="start_population_size=-instance_method"></span>
3629
+ <div class="method_details ">
3630
+ <h3 class="signature " id="start_population_size-instance_method">
3631
+
3632
+ - (<tt>Object</tt>) <strong>start_population_size</strong>
3633
+
3634
+
3635
+
3636
+
3637
+
3638
+ </h3><div class="docstring">
3639
+ <div class="discussion">
3640
+
3641
+ <p>If set, will start off at the specified size and grow to the bigger
3642
+ population size</p>
3643
+
3644
+
3645
+ </div>
3646
+ </div>
3647
+ <div class="tags">
3648
+
3649
+
3650
+ </div><table class="source_code">
3651
+ <tr>
3652
+ <td>
3653
+ <pre class="lines">
3654
+
3655
+
3656
+ 281
3657
+ 282
3658
+ 283</pre>
3659
+ </td>
3660
+ <td>
3661
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 281</span>
3662
+
3663
+ <span class='kw'>def</span> <span class='id identifier rubyid_start_population_size'>start_population_size</span>
3664
+ <span class='ivar'>@start_population_size</span>
3665
+ <span class='kw'>end</span></pre>
3666
+ </td>
3667
+ </tr>
3668
+ </table>
3669
+ </div>
3670
+
3671
+
3672
+ <span id="start_sequence_at=-instance_method"></span>
3673
+ <div class="method_details ">
3674
+ <h3 class="signature " id="start_sequence_at-instance_method">
3675
+
3676
+ - (<tt>Object</tt>) <strong>start_sequence_at</strong>
3677
+
3678
+
3679
+
3680
+
3681
+
3682
+ </h3><div class="docstring">
3683
+ <div class="discussion">
3684
+
3685
+ <p>Returns the value of attribute start_sequence_at</p>
3686
+
3687
+
3688
+ </div>
3689
+ </div>
3690
+ <div class="tags">
3691
+
3692
+
3693
+ </div><table class="source_code">
3694
+ <tr>
3695
+ <td>
3696
+ <pre class="lines">
3697
+
3698
+
3699
+ 283
3700
+ 284
3701
+ 285</pre>
3702
+ </td>
3703
+ <td>
3704
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 283</span>
3705
+
3706
+ <span class='kw'>def</span> <span class='id identifier rubyid_start_sequence_at'>start_sequence_at</span>
3707
+ <span class='ivar'>@start_sequence_at</span>
3708
+ <span class='kw'>end</span></pre>
3709
+ </td>
3710
+ </tr>
3711
+ </table>
3712
+ </div>
3713
+
3714
+
3715
+ <span id="survival_mininum_per_species=-instance_method"></span>
3716
+ <div class="method_details ">
3717
+ <h3 class="signature " id="survival_mininum_per_species-instance_method">
3718
+
3719
+ - (<tt>Object</tt>) <strong>survival_mininum_per_species</strong>
3720
+
3721
+
3722
+
3723
+
3724
+
3725
+ </h3><div class="docstring">
3726
+ <div class="discussion">
3727
+
3728
+ <p>Returns the value of attribute survival_mininum_per_species</p>
3729
+
3730
+
3731
+ </div>
3732
+ </div>
3733
+ <div class="tags">
3734
+
3735
+
3736
+ </div><table class="source_code">
3737
+ <tr>
3738
+ <td>
3739
+ <pre class="lines">
3740
+
3741
+
3742
+ 292
3743
+ 293
3744
+ 294</pre>
3745
+ </td>
3746
+ <td>
3747
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 292</span>
3748
+
3749
+ <span class='kw'>def</span> <span class='id identifier rubyid_survival_mininum_per_species'>survival_mininum_per_species</span>
3750
+ <span class='ivar'>@survival_mininum_per_species</span>
3751
+ <span class='kw'>end</span></pre>
3752
+ </td>
3753
+ </tr>
3754
+ </table>
3755
+ </div>
3756
+
3757
+
3758
+ <span id="survival_threshold=-instance_method"></span>
3759
+ <div class="method_details ">
3760
+ <h3 class="signature " id="survival_threshold-instance_method">
3761
+
3762
+ - (<tt>Object</tt>) <strong>survival_threshold</strong>
3763
+
3764
+
3765
+
3766
+
3767
+
3768
+ </h3><div class="docstring">
3769
+ <div class="discussion">
3770
+
3771
+ <p>factor (0 to 1) of the top percentage of the species that&#39;s allowed to
3772
+ mate.</p>
3773
+
3774
+
3775
+ </div>
3776
+ </div>
3777
+ <div class="tags">
3778
+
3779
+
3780
+ </div><table class="source_code">
3781
+ <tr>
3782
+ <td>
3783
+ <pre class="lines">
3784
+
3785
+
3786
+ 291
3787
+ 292
3788
+ 293</pre>
3789
+ </td>
3790
+ <td>
3791
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 291</span>
3792
+
3793
+ <span class='kw'>def</span> <span class='id identifier rubyid_survival_threshold'>survival_threshold</span>
3794
+ <span class='ivar'>@survival_threshold</span>
3795
+ <span class='kw'>end</span></pre>
3796
+ </td>
3797
+ </tr>
3798
+ </table>
3799
+ </div>
3800
+
3801
+
3802
+ <span id="trait_mutation_power=-instance_method"></span>
3803
+ <div class="method_details ">
3804
+ <h3 class="signature " id="trait_mutation_power-instance_method">
3805
+
3806
+ - (<tt>Object</tt>) <strong>trait_mutation_power</strong>
3807
+
3808
+
3809
+
3810
+
3811
+
3812
+ </h3><div class="docstring">
3813
+ <div class="discussion">
3814
+
3815
+ <p>Returns the value of attribute trait_mutation_power</p>
3816
+
3817
+
3818
+ </div>
3819
+ </div>
3820
+ <div class="tags">
3821
+
3822
+
3823
+ </div><table class="source_code">
3824
+ <tr>
3825
+ <td>
3826
+ <pre class="lines">
3827
+
3828
+
3829
+ 294
3830
+ 295
3831
+ 296</pre>
3832
+ </td>
3833
+ <td>
3834
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 294</span>
3835
+
3836
+ <span class='kw'>def</span> <span class='id identifier rubyid_trait_mutation_power'>trait_mutation_power</span>
3837
+ <span class='ivar'>@trait_mutation_power</span>
3838
+ <span class='kw'>end</span></pre>
3839
+ </td>
3840
+ </tr>
3841
+ </table>
3842
+ </div>
3843
+
3844
+
3845
+ <span id="trait_param_mut_prob=-instance_method"></span>
3846
+ <div class="method_details ">
3847
+ <h3 class="signature " id="trait_param_mut_prob-instance_method">
3848
+
3849
+ - (<tt>Object</tt>) <strong>trait_param_mut_prob</strong>
3850
+
3851
+
3852
+
3853
+
3854
+
3855
+ </h3><div class="docstring">
3856
+ <div class="discussion">
3857
+
3858
+ <p>Returns the value of attribute trait_param_mut_prob</p>
3859
+
3860
+
3861
+ </div>
3862
+ </div>
3863
+ <div class="tags">
3864
+
3865
+
3866
+ </div><table class="source_code">
3867
+ <tr>
3868
+ <td>
3869
+ <pre class="lines">
3870
+
3871
+
3872
+ 295
3873
+ 296
3874
+ 297</pre>
3875
+ </td>
3876
+ <td>
3877
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 295</span>
3878
+
3879
+ <span class='kw'>def</span> <span class='id identifier rubyid_trait_param_mut_prob'>trait_param_mut_prob</span>
3880
+ <span class='ivar'>@trait_param_mut_prob</span>
3881
+ <span class='kw'>end</span></pre>
3882
+ </td>
3883
+ </tr>
3884
+ </table>
3885
+ </div>
3886
+
3887
+
3888
+ <span id="weigh_mut_power=-instance_method"></span>
3889
+ <div class="method_details ">
3890
+ <h3 class="signature " id="weigh_mut_power-instance_method">
3891
+
3892
+ - (<tt>Object</tt>) <strong>weigh_mut_power</strong>
3893
+
3894
+
3895
+
3896
+
3897
+
3898
+ </h3><div class="docstring">
3899
+ <div class="discussion">
3900
+
3901
+ <p>Returns the value of attribute weigh_mut_power</p>
3902
+
3903
+
3904
+ </div>
3905
+ </div>
3906
+ <div class="tags">
3907
+
3908
+
3909
+ </div><table class="source_code">
3910
+ <tr>
3911
+ <td>
3912
+ <pre class="lines">
3913
+
3914
+
3915
+ 296
3916
+ 297
3917
+ 298</pre>
3918
+ </td>
3919
+ <td>
3920
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 296</span>
3921
+
3922
+ <span class='kw'>def</span> <span class='id identifier rubyid_weigh_mut_power'>weigh_mut_power</span>
3923
+ <span class='ivar'>@weigh_mut_power</span>
3924
+ <span class='kw'>end</span></pre>
3925
+ </td>
3926
+ </tr>
3927
+ </table>
3928
+ </div>
3929
+
3930
+
3931
+ <span id="weight_coefficient=-instance_method"></span>
3932
+ <div class="method_details ">
3933
+ <h3 class="signature " id="weight_coefficient-instance_method">
3934
+
3935
+ - (<tt>Object</tt>) <strong>weight_coefficient</strong>
3936
+
3937
+
3938
+
3939
+
3940
+
3941
+ </h3><div class="docstring">
3942
+ <div class="discussion">
3943
+
3944
+ <p>Speciation coffficient</p>
3945
+
3946
+
3947
+ </div>
3948
+ </div>
3949
+ <div class="tags">
3950
+
3951
+
3952
+ </div><table class="source_code">
3953
+ <tr>
3954
+ <td>
3955
+ <pre class="lines">
3956
+
3957
+
3958
+ 224
3959
+ 225
3960
+ 226</pre>
3961
+ </td>
3962
+ <td>
3963
+ <pre class="code"><span class="info file"># File 'lib/rubyneat/rubyneat.rb', line 224</span>
3964
+
3965
+ <span class='kw'>def</span> <span class='id identifier rubyid_weight_coefficient'>weight_coefficient</span>
3966
+ <span class='ivar'>@weight_coefficient</span>
3967
+ <span class='kw'>end</span></pre>
3968
+ </td>
3969
+ </tr>
3970
+ </table>
3971
+ </div>
3972
+
3973
+ </div>
3974
+
3975
+
3976
+ </div>
3977
+
3978
+ <div id="footer">
3979
+ Generated on Sun Apr 13 15:54:03 2014 by
3980
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
3981
+ 0.8.7.4 (ruby-2.1.1).
3982
+ </div>
3983
+
3984
+ </body>
3985
+ </html>