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,1124 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ChangeListManager">
4
+ <list default="true" id="bcaa42fa-1400-4681-9801-7dcc2894457b" name="Default" comment="" />
5
+ <ignored path="rubyneat.iws" />
6
+ <ignored path=".idea/workspace.xml" />
7
+ <option name="TRACKING_ENABLED" value="true" />
8
+ <option name="SHOW_DIALOG" value="false" />
9
+ <option name="HIGHLIGHT_CONFLICTS" value="true" />
10
+ <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
11
+ <option name="LAST_RESOLUTION" value="IGNORE" />
12
+ </component>
13
+ <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
14
+ <component name="CoverageDataManager">
15
+ <SUITE FILE_PATH="coverage/rubyneat@neat.coverage" NAME="neat Coverage Results" MODIFIED="1388960332359" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/bin" MODULE_NAME="rubyneat" />
16
+ <SUITE FILE_PATH="coverage/rubyneat@deep_dive.coverage" NAME="deep_dive Coverage Results" MODIFIED="1388355972875" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/lib/deep_dive" MODULE_NAME="rubyneat" />
17
+ <SUITE FILE_PATH="coverage/rubyneat@sigdebug_neat.coverage" NAME="sigdebug_neat Coverage Results" MODIFIED="1389713904245" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="rubyneat" />
18
+ <SUITE FILE_PATH="coverage/rubyneat@xor_neat.coverage" NAME="xor_neat Coverage Results" MODIFIED="1386026021962" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="rubyneat" />
19
+ <SUITE FILE_PATH="coverage/rubyneat@xorsin_neat__1_.coverage" NAME="xorsin_neat (1) Coverage Results" MODIFIED="1390081822326" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$/neater" MODULE_NAME="rubyneat" />
20
+ <SUITE FILE_PATH="coverage/rubyneat@xorsin_neat.coverage" NAME="xorsin_neat Coverage Results" MODIFIED="1390094526871" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="rubyneat" />
21
+ <SUITE FILE_PATH="coverage/rubyneat@Run_spec__oread_spec___rubyneat.coverage" NAME="Run spec 'oread_spec': rubyneat Coverage Results" MODIFIED="1388361175336" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="rubyneat" />
22
+ <SUITE FILE_PATH="coverage/rubyneat@xordebug_neat.coverage" NAME="xordebug_neat Coverage Results" MODIFIED="1389741622572" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="rubyneat" />
23
+ <SUITE FILE_PATH="coverage/rubyneat@xordebug_neat__1_.coverage" NAME="xordebug_neat (1) Coverage Results" MODIFIED="1389741554802" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/neater" MODULE_NAME="rubyneat" />
24
+ </component>
25
+ <component name="CreatePatchCommitExecutor">
26
+ <option name="PATCH_PATH" value="" />
27
+ </component>
28
+ <component name="DaemonCodeAnalyzer">
29
+ <disable_hints />
30
+ </component>
31
+ <component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
32
+ <component name="FavoritesManager">
33
+ <favorites_list name="rubyneat">
34
+ <favorite_root url="file://$PROJECT_DIR$/bin/neat.rb" type="psiFile" klass="com.intellij.ide.projectView.impl.nodes.PsiFileNode" />
35
+ </favorites_list>
36
+ </component>
37
+ <component name="FileEditorManager">
38
+ <splitter split-orientation="horizontal" split-proportion="0.5">
39
+ <split-first>
40
+ <leaf>
41
+ <file leaf-file-name="xor_neat.rb" pinned="false" current="false" current-in-tab="false">
42
+ <entry file="file://$PROJECT_DIR$/neater/xor_neat.rb">
43
+ <provider selected="true" editor-type-id="text-editor">
44
+ <state vertical-scroll-proportion="0.0" vertical-offset="1710" max-vertical-offset="2145">
45
+ <caret line="114" column="54" selection-start-line="114" selection-start-column="54" selection-end-line="114" selection-end-column="54" />
46
+ <folding />
47
+ </state>
48
+ </provider>
49
+ </entry>
50
+ </file>
51
+ <file leaf-file-name="inverted_pendulum.rb" pinned="false" current="false" current-in-tab="false">
52
+ <entry file="file://$PROJECT_DIR$/neater/rnlib/inverted_pendulum.rb">
53
+ <provider selected="true" editor-type-id="text-editor">
54
+ <state vertical-scroll-proportion="0.0" vertical-offset="1800" max-vertical-offset="5790">
55
+ <caret line="120" column="19" selection-start-line="120" selection-start-column="19" selection-end-line="120" selection-end-column="19" />
56
+ <folding />
57
+ </state>
58
+ </provider>
59
+ </entry>
60
+ </file>
61
+ <file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
62
+ <entry file="file://$PROJECT_DIR$/Gemfile">
63
+ <provider selected="true" editor-type-id="text-editor">
64
+ <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="570">
65
+ <caret line="32" column="0" selection-start-line="32" selection-start-column="0" selection-end-line="32" selection-end-column="0" />
66
+ <folding />
67
+ </state>
68
+ </provider>
69
+ </entry>
70
+ </file>
71
+ <file leaf-file-name="Rakefile" pinned="false" current="true" current-in-tab="true">
72
+ <entry file="file://$PROJECT_DIR$/Rakefile">
73
+ <provider selected="true" editor-type-id="text-editor">
74
+ <state vertical-scroll-proportion="0.8502994" vertical-offset="3" max-vertical-offset="1005">
75
+ <caret line="57" column="36" selection-start-line="57" selection-start-column="36" selection-end-line="57" selection-end-column="36" />
76
+ <folding />
77
+ </state>
78
+ </provider>
79
+ </entry>
80
+ </file>
81
+ <file leaf-file-name="neat" pinned="false" current="false" current-in-tab="false">
82
+ <entry file="file://$PROJECT_DIR$/bin/neat">
83
+ <provider selected="true" editor-type-id="text-editor">
84
+ <state vertical-scroll-proportion="0.0" vertical-offset="288" max-vertical-offset="1335">
85
+ <caret line="59" column="7" selection-start-line="59" selection-start-column="7" selection-end-line="59" selection-end-column="7" />
86
+ <folding />
87
+ </state>
88
+ </provider>
89
+ </entry>
90
+ </file>
91
+ </leaf>
92
+ </split-first>
93
+ <split-second>
94
+ <splitter split-orientation="vertical" split-proportion="0.80720544">
95
+ <split-first>
96
+ <leaf>
97
+ <file leaf-file-name="invpend_neat.rb" pinned="false" current="false" current-in-tab="true">
98
+ <entry file="file://$PROJECT_DIR$/neater/invpend_neat.rb">
99
+ <provider selected="true" editor-type-id="text-editor">
100
+ <state vertical-scroll-proportion="0.0" vertical-offset="435" max-vertical-offset="2340">
101
+ <caret line="29" column="14" selection-start-line="29" selection-start-column="14" selection-end-line="29" selection-end-column="14" />
102
+ <folding />
103
+ </state>
104
+ </provider>
105
+ </entry>
106
+ </file>
107
+ </leaf>
108
+ </split-first>
109
+ <split-second>
110
+ <leaf>
111
+ <file leaf-file-name="invpend_neat.rb" pinned="false" current="false" current-in-tab="true">
112
+ <entry file="file://$PROJECT_DIR$/neater/invpend_neat.rb">
113
+ <provider selected="true" editor-type-id="text-editor">
114
+ <state vertical-scroll-proportion="0.0" vertical-offset="1455" max-vertical-offset="2340">
115
+ <caret line="97" column="3" selection-start-line="97" selection-start-column="3" selection-end-line="97" selection-end-column="3" />
116
+ <folding />
117
+ </state>
118
+ </provider>
119
+ </entry>
120
+ </file>
121
+ </leaf>
122
+ </split-second>
123
+ </splitter>
124
+ </split-second>
125
+ </splitter>
126
+ </component>
127
+ <component name="FindManager">
128
+ <FindUsagesManager>
129
+ <setting name="OPEN_NEW_TAB" value="false" />
130
+ </FindUsagesManager>
131
+ </component>
132
+ <component name="IdeDocumentHistory">
133
+ <option name="changedFiles">
134
+ <list>
135
+ <option value="$PROJECT_DIR$/config/application.rb" />
136
+ <option value="$PROJECT_DIR$/bin/neat" />
137
+ <option value="$PROJECT_DIR$/xor_neat.rb" />
138
+ <option value="$PROJECT_DIR$/spec/lib/rubyneat/rubyneat_spec.rb" />
139
+ <option value="$PROJECT_DIR$/Guardfile" />
140
+ <option value="$PROJECT_DIR$/lib/oread/oread.rb" />
141
+ <option value="$PROJECT_DIR$/spec/lib/oread/oread_spec.rb" />
142
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/oread/oread.rb" />
143
+ <option value="$PROJECT_DIR$/lib/oread.rb" />
144
+ <option value="$PROJECT_DIR$/lib/deepdive/deepdive.rb" />
145
+ <option value="$PROJECT_DIR$/lib/deep_dive.rb" />
146
+ <option value="$PROJECT_DIR$/lib/deep_dive/deep_dive.rb" />
147
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/deep_dive/deep_dive.rb" />
148
+ <option value="$PROJECT_DIR$/spec/lib/deep_dive/deep_dive_spec.rb" />
149
+ <option value="$PROJECT_DIR$/lib/rubyneat/rndsl.rb" />
150
+ <option value="$PROJECT_DIR$/lib/rubyneat/default_neat.rb" />
151
+ <option value="$PROJECT_DIR$/rubyneat.gemspec" />
152
+ <option value="$PROJECT_DIR$/lib/rubyneat.rb" />
153
+ <option value="$PROJECT_DIR$/lib/rubyneat/graph.rb" />
154
+ <option value="$PROJECT_DIR$/lib/rubyneat/population.rb" />
155
+ <option value="$PROJECT_DIR$/lib/rubyneat/evaluator.rb" />
156
+ <option value="$PROJECT_DIR$/lib/rubyneat/neuron.rb" />
157
+ <option value="$PROJECT_DIR$/neater/xor_lib.rb" />
158
+ <option value="$PROJECT_DIR$/lib/rubyneat/rubyneat.rb" />
159
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/neater/xorsin_neat.rb" />
160
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/evolver.rb" />
161
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/neuron.rb" />
162
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/neater/xordebug_neat.rb" />
163
+ <option value="$PROJECT_DIR$/lib/rubyneat/expressor.rb" />
164
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/rubyneat.rb" />
165
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/evaluator.rb" />
166
+ <option value="$PROJECT_DIR$/lib/rubyneat/critter.rb" />
167
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/population.rb" />
168
+ <option value="$PROJECT_DIR$/lib/rubyneat/evolver.rb" />
169
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/expressor.rb" />
170
+ <option value="$PROJECT_DIR$/neater/xordebug_neat.rb" />
171
+ <option value="/bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/graph.rb" />
172
+ <option value="$PROJECT_DIR$/neater/xor_neat.rb" />
173
+ <option value="$PROJECT_DIR$/neater/xoranalog_neat.rb" />
174
+ <option value="$PROJECT_DIR$/neater/sigdebug_neat.rb" />
175
+ <option value="$PROJECT_DIR$/neater/xorsin_neat.rb" />
176
+ <option value="$PROJECT_DIR$/neater/invped_neat.rb" />
177
+ <option value="$PROJECT_DIR$/lib/rubyneat/dsl.rb" />
178
+ <option value="$PROJECT_DIR$/neater/invpend_neat.rb" />
179
+ <option value="$PROJECT_DIR$/bin/neat.rb" />
180
+ <option value="$PROJECT_DIR$/neater/rnlib/inverted_pendulum.rb" />
181
+ <option value="$PROJECT_DIR$/Gemfile" />
182
+ <option value="$PROJECT_DIR$/Rakefile" />
183
+ </list>
184
+ </option>
185
+ </component>
186
+ <component name="ProjectFrameBounds">
187
+ <option name="x" value="-3" />
188
+ <option name="y" value="-23" />
189
+ <option name="width" value="1926" />
190
+ <option name="height" value="1227" />
191
+ </component>
192
+ <component name="ProjectInspectionProfilesVisibleTreeState">
193
+ <entry key="Project Default">
194
+ <profile-state>
195
+ <expanded-state>
196
+ <State>
197
+ <id />
198
+ </State>
199
+ <State>
200
+ <id>Code quality toolsJavaScript</id>
201
+ </State>
202
+ <State>
203
+ <id>DOM issuesJavaScript</id>
204
+ </State>
205
+ <State>
206
+ <id>Data flow issuesJavaScript</id>
207
+ </State>
208
+ <State>
209
+ <id>Error handlingJavaScript</id>
210
+ </State>
211
+ <State>
212
+ <id>Gems</id>
213
+ </State>
214
+ <State>
215
+ <id>JavaScript</id>
216
+ </State>
217
+ <State>
218
+ <id>JavaScript validity issuesJavaScript</id>
219
+ </State>
220
+ <State>
221
+ <id>Ruby</id>
222
+ </State>
223
+ </expanded-state>
224
+ <selected-state>
225
+ <State>
226
+ <id>CoffeeScript</id>
227
+ </State>
228
+ </selected-state>
229
+ </profile-state>
230
+ </entry>
231
+ </component>
232
+ <component name="ProjectLevelVcsManager" settingsEditedManually="false">
233
+ <OptionsSetting value="true" id="Add" />
234
+ <OptionsSetting value="true" id="Remove" />
235
+ <OptionsSetting value="true" id="Checkout" />
236
+ <OptionsSetting value="true" id="Update" />
237
+ <OptionsSetting value="true" id="Status" />
238
+ <OptionsSetting value="true" id="Edit" />
239
+ <ConfirmationsSetting value="0" id="Add" />
240
+ <ConfirmationsSetting value="0" id="Remove" />
241
+ </component>
242
+ <component name="ProjectReloadState">
243
+ <option name="STATE" value="0" />
244
+ </component>
245
+ <component name="ProjectView">
246
+ <navigator currentView="ProjectPane" proportions="" version="1">
247
+ <flattenPackages />
248
+ <showMembers />
249
+ <showModules />
250
+ <showLibraryContents />
251
+ <hideEmptyPackages />
252
+ <abbreviatePackageNames />
253
+ <autoscrollToSource />
254
+ <autoscrollFromSource />
255
+ <sortByType />
256
+ </navigator>
257
+ <panes>
258
+ <pane id="ProjectPane">
259
+ <subPane>
260
+ <PATH>
261
+ <PATH_ELEMENT>
262
+ <option name="myItemId" value="rubyneat" />
263
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
264
+ </PATH_ELEMENT>
265
+ </PATH>
266
+ <PATH>
267
+ <PATH_ELEMENT>
268
+ <option name="myItemId" value="rubyneat" />
269
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
270
+ </PATH_ELEMENT>
271
+ <PATH_ELEMENT>
272
+ <option name="myItemId" value="rubyneat" />
273
+ <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
274
+ </PATH_ELEMENT>
275
+ </PATH>
276
+ </subPane>
277
+ </pane>
278
+ <pane id="Scope" />
279
+ </panes>
280
+ </component>
281
+ <component name="PropertiesComponent">
282
+ <property name="WebServerToolWindowFactoryState" value="false" />
283
+ <property name="options.lastSelected" value="preferences.fileTypes" />
284
+ <property name="options.splitter.main.proportions" value="0.3" />
285
+ <property name="options.splitter.details.proportions" value="0.2" />
286
+ <property name="options.searchVisible" value="true" />
287
+ <property name="last_opened_file_path" value="$PROJECT_DIR$" />
288
+ <property name="recentsLimit" value="5" />
289
+ <property name="FullScreen" value="true" />
290
+ <property name="restartRequiresConfirmation" value="true" />
291
+ <property name="debugger.present.asked" value="true" />
292
+ <property name="SearchEverywhereHistory" value="&#10;#" />
293
+ </component>
294
+ <component name="RecentsManager">
295
+ <key name="MoveFile.RECENT_KEYS">
296
+ <recent name="$PROJECT_DIR$/neater" />
297
+ <recent name="$PROJECT_DIR$/lib" />
298
+ </key>
299
+ </component>
300
+ <component name="RunManager" selected="Ruby.invpend_neat">
301
+ <configuration default="true" type="RakeRunConfigurationType" factoryName="Rake">
302
+ <module name="" />
303
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
304
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
305
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
306
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
307
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
308
+ <envs />
309
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
310
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
311
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
312
+ <COVERAGE_PATTERN ENABLED="true">
313
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
314
+ </COVERAGE_PATTERN>
315
+ </EXTENSION>
316
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
317
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="" />
318
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
319
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE="" />
320
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
321
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
322
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
323
+ <method />
324
+ </configuration>
325
+ <configuration default="true" type="CapistranoRunConfigurationType" factoryName="Capistrano">
326
+ <module name="" />
327
+ <CAPISTRANO_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
328
+ <CAPISTRANO_RUN_CONFIGURATION NAME="WORK DIR" VALUE="" />
329
+ <CAPISTRANO_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
330
+ <CAPISTRANO_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
331
+ <CAPISTRANO_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
332
+ <envs />
333
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
334
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
335
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
336
+ <COVERAGE_PATTERN ENABLED="true">
337
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
338
+ </COVERAGE_PATTERN>
339
+ </EXTENSION>
340
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
341
+ <CAPISTRANO_RUN_CONFIG_SETTINGS_ID NAME="CAPISTRANO_TASK_NAME" VALUE="" />
342
+ <CAPISTRANO_RUN_CONFIG_SETTINGS_ID NAME="CAPISTRANO_TASK_ARGS" VALUE="" />
343
+ <CAPISTRANO_RUN_CONFIG_SETTINGS_ID NAME="CAPISTRANO_STAGE" VALUE="" />
344
+ <method />
345
+ </configuration>
346
+ <configuration default="true" type="RSpecRunConfigurationType" factoryName="RSpec">
347
+ <predefined_log_file id="RUBY_RSPEC" enabled="true" />
348
+ <module name="" />
349
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
350
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
351
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
352
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
353
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
354
+ <envs />
355
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
356
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
357
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
358
+ <COVERAGE_PATTERN ENABLED="true">
359
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
360
+ </COVERAGE_PATTERN>
361
+ </EXTENSION>
362
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
363
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
364
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
365
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
366
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
367
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
368
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
369
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
370
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
371
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
372
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
373
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
374
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
375
+ <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
376
+ <method />
377
+ </configuration>
378
+ <configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
379
+ <module name="" />
380
+ <RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
381
+ <RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
382
+ <RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
383
+ <RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
384
+ <RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
385
+ <envs />
386
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
387
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
388
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
389
+ <COVERAGE_PATTERN ENABLED="true">
390
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
391
+ </COVERAGE_PATTERN>
392
+ </EXTENSION>
393
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
394
+ <RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
395
+ <RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
396
+ <method />
397
+ </configuration>
398
+ <configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug">
399
+ <method />
400
+ </configuration>
401
+ <configuration default="true" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest">
402
+ <predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
403
+ <module name="" />
404
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
405
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
406
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
407
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
408
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
409
+ <envs />
410
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
411
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
412
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
413
+ <COVERAGE_PATTERN ENABLED="true">
414
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
415
+ </COVERAGE_PATTERN>
416
+ </EXTENSION>
417
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
418
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
419
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
420
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
421
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
422
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
423
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
424
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
425
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
426
+ <RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
427
+ <method />
428
+ </configuration>
429
+ <configuration default="true" type="RubyRemoteDebugConfigurationType" factoryName="Ruby remote debug">
430
+ <RUBY_REMOTE_DEBUG_CONFIG NAME="REMOTE_HOST" VALUE="localhost" />
431
+ <RUBY_REMOTE_DEBUG_CONFIG NAME="PORT" VALUE="1234" />
432
+ <RUBY_REMOTE_DEBUG_CONFIG NAME="DISPATCHER_PORT" VALUE="26162" />
433
+ <RUBY_REMOTE_DEBUG_CONFIG NAME="REMOTE_ROOT" VALUE="" />
434
+ <RUBY_REMOTE_DEBUG_CONFIG NAME="LOCAL_ROOT" VALUE="$PROJECT_DIR$/spec" />
435
+ <method />
436
+ </configuration>
437
+ <configuration default="true" type="RackRunConfigurationType" factoryName="Rack">
438
+ <module name="" />
439
+ <RACK_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
440
+ <RACK_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
441
+ <RACK_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
442
+ <RACK_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
443
+ <RACK_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
444
+ <envs />
445
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
446
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
447
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
448
+ <COVERAGE_PATTERN ENABLED="true">
449
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
450
+ </COVERAGE_PATTERN>
451
+ </EXTENSION>
452
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
453
+ <RACK_CONFIG_SETTINGS_ID NAME="PORT" VALUE="9292" />
454
+ <RACK_CONFIG_SETTINGS_ID NAME="IP" VALUE="0.0.0.0" />
455
+ <RACK_CONFIG_SETTINGS_ID NAME="CONFIG_FILE" VALUE="" />
456
+ <RACK_CONFIG_SETTINGS_ID NAME="RACK_SERVER_TYPE" VALUE="Default" />
457
+ <RACK_CONFIG_SETTINGS_ID NAME="LAUNCH_JS" VALUE="false" />
458
+ <method />
459
+ </configuration>
460
+ <configuration default="true" type="CommandRunConfigurationType" factoryName="Gem Command">
461
+ <module name="" />
462
+ <COMMAND_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
463
+ <COMMAND_RUN_CONFIGURATION NAME="WORK DIR" VALUE="" />
464
+ <COMMAND_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
465
+ <COMMAND_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
466
+ <COMMAND_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
467
+ <envs />
468
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
469
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
470
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
471
+ <COVERAGE_PATTERN ENABLED="true">
472
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
473
+ </COVERAGE_PATTERN>
474
+ </EXTENSION>
475
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
476
+ <COMMAND_CONFIG_SETTINGS_ID NAME="GEM_NAME" VALUE="" />
477
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_NAME" VALUE="" />
478
+ <COMMAND_CONFIG_SETTINGS_ID NAME="EXECUTABLE_ARGS" VALUE="" />
479
+ <COMMAND_CONFIG_SETTINGS_ID NAME="WORKING_DIR" VALUE="" />
480
+ <method />
481
+ </configuration>
482
+ <configuration default="true" type="RailsRunConfigurationType" factoryName="Rails">
483
+ <predefined_log_file id="RUBY_RAILS_SERVER" enabled="true" />
484
+ <module name="" />
485
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
486
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
487
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
488
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
489
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
490
+ <envs />
491
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
492
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
493
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
494
+ <COVERAGE_PATTERN ENABLED="true">
495
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
496
+ </COVERAGE_PATTERN>
497
+ </EXTENSION>
498
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
499
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="SCRIPT_ARGS" VALUE="" />
500
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="PORT" VALUE="3000" />
501
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="IP" VALUE="0.0.0.0" />
502
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="DUMMY_APP" VALUE="test/dummy" />
503
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="RAILS_SERVER_TYPE" VALUE="Default" />
504
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="ENVIRONMENT_TYPE" VALUE="development" />
505
+ <RAILS_SERVER_CONFIG_SETTINGS_ID NAME="LAUNCH_JS" VALUE="false" />
506
+ <method />
507
+ </configuration>
508
+ <configuration default="true" type="ZeusRunConfigurationType" factoryName="Zeus Server">
509
+ <module name="" />
510
+ <ZEUS_RUN_CONFIGURATION NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
511
+ <ZEUS_RUN_CONFIGURATION NAME="WORK DIR" VALUE="" />
512
+ <ZEUS_RUN_CONFIGURATION NAME="SHOULD_USE_SDK" VALUE="false" />
513
+ <ZEUS_RUN_CONFIGURATION NAME="ALTERN_SDK_NAME" VALUE="" />
514
+ <ZEUS_RUN_CONFIGURATION NAME="myPassParentEnvs" VALUE="true" />
515
+ <envs />
516
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
517
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
518
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" runner="rcov" />
519
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
520
+ <ZEUS_RUN_CONFIG_SETTING NAME="ZEUS_COMMAND_NAME" VALUE="" />
521
+ <ZEUS_RUN_CONFIG_SETTING NAME="ZEUS_COMMAND_ARGS" VALUE="" />
522
+ <method />
523
+ </configuration>
524
+ <configuration default="true" type="IrbRunConfigurationType" factoryName="IRB console">
525
+ <module name="" />
526
+ <IRB_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
527
+ <IRB_RUN_CONFIG NAME="WORK DIR" VALUE="" />
528
+ <IRB_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
529
+ <IRB_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
530
+ <IRB_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
531
+ <envs />
532
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
533
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
534
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
535
+ <COVERAGE_PATTERN ENABLED="true">
536
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
537
+ </COVERAGE_PATTERN>
538
+ </EXTENSION>
539
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
540
+ <IRB_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
541
+ <IRB_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
542
+ <IRB_RUN_CONFIG NAME="IS_RAILS_CONSOLE" VALUE="false" />
543
+ <method />
544
+ </configuration>
545
+ <configuration default="true" type="CucumberRunConfigurationType" factoryName="Cucumber">
546
+ <predefined_log_file id="RUBY_CUCUMBER" enabled="true" />
547
+ <module name="" />
548
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
549
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="" />
550
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
551
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
552
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
553
+ <envs>
554
+ <env name="ANSICON" value="" />
555
+ </envs>
556
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
557
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
558
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
559
+ <COVERAGE_PATTERN ENABLED="true">
560
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
561
+ </COVERAGE_PATTERN>
562
+ </EXTENSION>
563
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
564
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*.feature" />
565
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
566
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
567
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
568
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_TAGS_FILTER" VALUE="" />
569
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="TEST_NAME_FILTER" VALUE="" />
570
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_ARGS" VALUE="--color -r features" />
571
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
572
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
573
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="VERBOSE_OPTION" VALUE="false" />
574
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
575
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
576
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
577
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="CUCUMBER_RUNNER_PATH" VALUE="" />
578
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_RUNNER" VALUE="false" />
579
+ <CUCUMBER_RUN_CONFIG_SETTINGS_ID NAME="SETTINGS_VERSION" VALUE="2" />
580
+ <method />
581
+ </configuration>
582
+ <configuration default="true" type="SporkRunConfigurationType" factoryName="Spork DRb">
583
+ <module name="" />
584
+ <SPORK_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
585
+ <SPORK_RUN_CONFIG NAME="WORK DIR" VALUE="" />
586
+ <SPORK_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
587
+ <SPORK_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
588
+ <SPORK_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
589
+ <envs />
590
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
591
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
592
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
593
+ <COVERAGE_PATTERN ENABLED="true">
594
+ <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
595
+ </COVERAGE_PATTERN>
596
+ </EXTENSION>
597
+ <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
598
+ <SPORK_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
599
+ <SPORK_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
600
+ <SPORK_RUN_CONFIG NAME="TEST_FRAMEWORK_ARGS" VALUE="RSPEC" />
601
+ <SPORK_RUN_CONFIG NAME="SPORK_RUN_CONFIG" VALUE="RSPEC" />
602
+ <method />
603
+ </configuration>
604
+ <configuration default="true" type="com.intellij.persistence.run.ConsoleRunConfigurationType" factoryName="Query Language Console">
605
+ <option name="VM_PARAMETERS" value="" />
606
+ <option name="USER_CFG_CLASS" />
607
+ <option name="CONTEXT_PROVIDER" />
608
+ <method />
609
+ </configuration>
610
+ <list size="5">
611
+ <item index="0" class="java.lang.String" itemvalue="Ruby.xor_neat" />
612
+ <item index="1" class="java.lang.String" itemvalue="Ruby.xordebug_neat" />
613
+ <item index="2" class="java.lang.String" itemvalue="Ruby.sigdebug_neat" />
614
+ <item index="3" class="java.lang.String" itemvalue="Ruby.xorsin_neat" />
615
+ <item index="4" class="java.lang.String" itemvalue="Ruby.invpend_neat" />
616
+ </list>
617
+ </component>
618
+ <component name="ShelveChangesManager" show_recycled="false" />
619
+ <component name="StructureViewFactory">
620
+ <option name="AUTOSCROLL_FROM_SOURCE" value="true" />
621
+ <option name="ACTIVE_ACTIONS" value=",SHOW_INHERITED" />
622
+ </component>
623
+ <component name="SvnConfiguration" myUseAcceleration="nothing">
624
+ <configuration />
625
+ </component>
626
+ <component name="TaskManager">
627
+ <task active="true" id="Default" summary="Default task">
628
+ <changelist id="bcaa42fa-1400-4681-9801-7dcc2894457b" name="Default" comment="" />
629
+ <created>1386000456369</created>
630
+ <updated>1386000456369</updated>
631
+ </task>
632
+ <servers />
633
+ </component>
634
+ <component name="TodoView" selected-index="0">
635
+ <todo-panel id="selected-file">
636
+ <are-packages-shown value="false" />
637
+ <are-modules-shown value="false" />
638
+ <flatten-packages value="false" />
639
+ <is-autoscroll-to-source value="false" />
640
+ </todo-panel>
641
+ <todo-panel id="all">
642
+ <are-packages-shown value="false" />
643
+ <are-modules-shown value="false" />
644
+ <flatten-packages value="false" />
645
+ <is-autoscroll-to-source value="false" />
646
+ </todo-panel>
647
+ <todo-panel id="default-changelist">
648
+ <are-packages-shown value="false" />
649
+ <are-modules-shown value="false" />
650
+ <flatten-packages value="false" />
651
+ <is-autoscroll-to-source value="false" />
652
+ </todo-panel>
653
+ </component>
654
+ <component name="ToolWindowManager">
655
+ <frame x="-3" y="-23" width="1926" height="1227" extended-state="6" />
656
+ <editor active="true" />
657
+ <layout>
658
+ <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.21791321" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
659
+ <window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
660
+ <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3297561" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
661
+ <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32814023" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
662
+ <window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
663
+ <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.13365282" sideWeight="0.50145775" order="1" side_tool="false" content_ui="tabs" />
664
+ <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.16453674" sideWeight="0.49854228" order="0" side_tool="false" content_ui="combo" />
665
+ <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.37877312" sideWeight="0.8104366" order="3" side_tool="false" content_ui="tabs" />
666
+ <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.15069222" sideWeight="0.50145775" order="2" side_tool="false" content_ui="tabs" />
667
+ <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.37779942" sideWeight="0.18956336" order="7" side_tool="true" content_ui="tabs" x="3223" y="694" width="501" height="405" />
668
+ <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.26672694" sideWeight="0.7225772" order="2" side_tool="false" content_ui="tabs" />
669
+ <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
670
+ <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
671
+ <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
672
+ <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32879376" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
673
+ <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
674
+ <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
675
+ <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
676
+ <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
677
+ </layout>
678
+ <layout-to-restore>
679
+ <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
680
+ <window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
681
+ <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
682
+ <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.3297561" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
683
+ <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
684
+ <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32944608" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
685
+ <window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
686
+ <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.32555878" sideWeight="0.72949946" order="3" side_tool="false" content_ui="tabs" />
687
+ <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.14909478" sideWeight="0.5004859" order="2" side_tool="true" content_ui="tabs" />
688
+ <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="FLOATING" visible="false" weight="0.393586" sideWeight="0.27050054" order="9" side_tool="true" content_ui="tabs" x="5262" y="0" width="501" height="405" />
689
+ <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="10" side_tool="false" content_ui="tabs" />
690
+ <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.2181987" sideWeight="0.5" order="11" side_tool="false" content_ui="tabs" />
691
+ <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32847425" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
692
+ <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.16187434" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
693
+ <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
694
+ <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.14909478" sideWeight="0.49854228" order="0" side_tool="false" content_ui="combo" />
695
+ <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.2677702" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
696
+ <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
697
+ <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
698
+ </layout-to-restore>
699
+ </component>
700
+ <component name="Vcs.Log.UiProperties">
701
+ <option name="RECENTLY_FILTERED_USER_GROUPS">
702
+ <collection />
703
+ </option>
704
+ <option name="RECENTLY_FILTERED_BRANCH_GROUPS">
705
+ <collection />
706
+ </option>
707
+ </component>
708
+ <component name="VcsContentAnnotationSettings">
709
+ <option name="myLimit" value="2678400000" />
710
+ </component>
711
+ <component name="VcsManagerConfiguration">
712
+ <option name="myTodoPanelSettings">
713
+ <TodoPanelSettings />
714
+ </option>
715
+ </component>
716
+ <component name="XDebuggerManager">
717
+ <breakpoint-manager>
718
+ <breakpoints>
719
+ <breakpoint log-message="true" type="ruby-exception">
720
+ <properties exception="NoMethodError" />
721
+ <option name="timeStamp" value="29" />
722
+ </breakpoint>
723
+ <breakpoint enabled="true" log-message="true" type="ruby-exception">
724
+ <properties exception="NEAT::NeatException" />
725
+ <option name="timeStamp" value="31" />
726
+ </breakpoint>
727
+ <breakpoint enabled="true" type="ruby-exception">
728
+ <properties exception="NEAT::Graph::GraphException" />
729
+ <option name="timeStamp" value="96" />
730
+ </breakpoint>
731
+ <line-breakpoint enabled="true" type="ruby-line">
732
+ <url>file://$PROJECT_DIR$/lib/rubyneat/graph.rb</url>
733
+ <line>70</line>
734
+ <option name="timeStamp" value="128" />
735
+ </line-breakpoint>
736
+ <line-breakpoint enabled="true" type="ruby-line">
737
+ <url>file://$PROJECT_DIR$/neater/rnlib/inverted_pendulum.rb</url>
738
+ <line>259</line>
739
+ <option name="timeStamp" value="130" />
740
+ </line-breakpoint>
741
+ </breakpoints>
742
+ <breakpoints-dialog>
743
+ <breakpoints-dialog />
744
+ </breakpoints-dialog>
745
+ <default-breakpoints>
746
+ <breakpoint enabled="true" type="OCExceptionBreakpoint">
747
+ <properties />
748
+ </breakpoint>
749
+ </default-breakpoints>
750
+ <option name="time" value="131" />
751
+ </breakpoint-manager>
752
+ </component>
753
+ <component name="editorHistoryManager">
754
+ <entry file="file://$PROJECT_DIR$/Gemfile">
755
+ <provider selected="true" editor-type-id="text-editor">
756
+ <state vertical-scroll-proportion="0.0" vertical-offset="480" max-vertical-offset="570">
757
+ <caret line="32" column="0" selection-start-line="32" selection-start-column="0" selection-end-line="32" selection-end-column="0" />
758
+ <folding />
759
+ </state>
760
+ </provider>
761
+ </entry>
762
+ <entry file="file://$PROJECT_DIR$/neater/invpend_neat.rb">
763
+ <provider selected="true" editor-type-id="text-editor">
764
+ <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="2340">
765
+ <caret line="97" column="3" selection-start-line="97" selection-start-column="3" selection-end-line="97" selection-end-column="3" />
766
+ <folding />
767
+ </state>
768
+ </provider>
769
+ </entry>
770
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/dsl.rb">
771
+ <provider selected="true" editor-type-id="text-editor">
772
+ <state vertical-scroll-proportion="0.0" vertical-offset="1260" max-vertical-offset="1800">
773
+ <caret line="70" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
774
+ </state>
775
+ </state>
776
+ </provider>
777
+ </entry>
778
+ <entry file="file://$PROJECT_DIR$/neater/invpend_neat.rb">
779
+ <provider selected="true" editor-type-id="text-editor">
780
+ <state vertical-scroll-proportion="0.0" vertical-offset="864" max-vertical-offset="2448">
781
+ <caret line="48" column="40" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
782
+ </state>
783
+ </provider>
784
+ </entry>
785
+ <entry file="file://$PROJECT_DIR$/bin/neat.rb">
786
+ <provider selected="true" editor-type-id="text-editor">
787
+ <state vertical-scroll-proportion="0.0" vertical-offset="1620" max-vertical-offset="2088">
788
+ <caret line="90" column="9" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
789
+ </state>
790
+ </state>
791
+ </provider>
792
+ </entry>
793
+ <entry file="file://$PROJECT_DIR$/neater/rnlib/inverted_pendulum.rb">
794
+ <provider selected="true" editor-type-id="text-editor">
795
+ <state vertical-scroll-proportion="0.0" vertical-offset="198" max-vertical-offset="1026">
796
+ <caret line="11" column="36" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
797
+ <folding />
798
+ </state>
799
+ </provider>
800
+ </entry>
801
+ <entry file="file://$PROJECT_DIR$/neater/xor_neat.rb">
802
+ <provider selected="true" editor-type-id="text-editor">
803
+ <state vertical-scroll-proportion="0.0" vertical-offset="15" max-vertical-offset="2145">
804
+ <caret line="1" column="22" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
805
+ <folding />
806
+ </state>
807
+ </provider>
808
+ </entry>
809
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/dsl.rb">
810
+ <provider selected="true" editor-type-id="text-editor">
811
+ <state vertical-scroll-proportion="0.0" vertical-offset="1815" max-vertical-offset="2040">
812
+ <caret line="121" column="13" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
813
+ <folding />
814
+ </state>
815
+ </provider>
816
+ </entry>
817
+ <entry file="file://$PROJECT_DIR$/neater/invpend_neat.rb">
818
+ <provider selected="true" editor-type-id="text-editor">
819
+ <state vertical-scroll-proportion="0.0" vertical-offset="90" max-vertical-offset="330">
820
+ <caret line="6" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
821
+ <folding />
822
+ </state>
823
+ <caret line="7" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
824
+ </state>
825
+ </provider>
826
+ </entry>
827
+ <entry file="file://$PROJECT_DIR$/neater/rnlib/inverted_pendulum.rb">
828
+ <provider selected="true" editor-type-id="text-editor">
829
+ <state vertical-scroll-proportion="0.0" vertical-offset="2142" max-vertical-offset="4194">
830
+ <caret line="119" column="9" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
831
+ </state>
832
+ </state>
833
+ </provider>
834
+ </entry>
835
+ <entry file="file://$PROJECT_DIR$/neater/xoranalog_neat.rb">
836
+ <provider selected="true" editor-type-id="text-editor">
837
+ <state vertical-scroll-proportion="0.0" vertical-offset="6912" max-vertical-offset="7830">
838
+ <caret line="384" column="51" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
839
+ </state>
840
+ </provider>
841
+ </entry>
842
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/dsl.rb">
843
+ <provider selected="true" editor-type-id="text-editor">
844
+ <state vertical-scroll-proportion="0.0" vertical-offset="1638" max-vertical-offset="2844">
845
+ <caret line="91" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
846
+ </state>
847
+ </state>
848
+ </provider>
849
+ </entry>
850
+ <entry file="file://$PROJECT_DIR$/bin/neat.rb">
851
+ <provider selected="true" editor-type-id="text-editor">
852
+ <state vertical-scroll-proportion="0.0" vertical-offset="918" max-vertical-offset="1314">
853
+ <caret line="51" column="67" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
854
+ <folding />
855
+ </state>
856
+ </provider>
857
+ </entry>
858
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/critter.rb">
859
+ <provider selected="true" editor-type-id="text-editor">
860
+ <state vertical-scroll-proportion="0.0" vertical-offset="2916" max-vertical-offset="6840">
861
+ <caret line="162" column="10" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
862
+ </state>
863
+ </provider>
864
+ </entry>
865
+ <entry file="file://$PROJECT_DIR$/neater/xorsin_neat.rb">
866
+ <provider selected="true" editor-type-id="text-editor">
867
+ <state vertical-scroll-proportion="0.0" vertical-offset="1296" max-vertical-offset="2682">
868
+ <caret line="72" column="16" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
869
+ </state>
870
+ </provider>
871
+ </entry>
872
+ <entry file="file://$PROJECT_DIR$/spec/lib/rubyneat/rubyneat_spec.rb">
873
+ <provider selected="true" editor-type-id="text-editor">
874
+ <state vertical-scroll-proportion="-1.090164" vertical-offset="1094" max-vertical-offset="2070">
875
+ <caret line="2" column="15" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
876
+ </state>
877
+ </provider>
878
+ </entry>
879
+ <entry file="file://$PROJECT_DIR$/Guardfile">
880
+ <provider selected="true" editor-type-id="text-editor">
881
+ <state vertical-scroll-proportion="0.12024048" vertical-offset="0" max-vertical-offset="998">
882
+ <caret line="8" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
883
+ </state>
884
+ </provider>
885
+ </entry>
886
+ <entry file="file://$PROJECT_DIR$/.semver">
887
+ <provider selected="true" editor-type-id="text-editor">
888
+ <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="998">
889
+ <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
890
+ </state>
891
+ </provider>
892
+ </entry>
893
+ <caret line="49" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
894
+ </state>
895
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/default_neat.rb">
896
+ <provider selected="true" editor-type-id="text-editor">
897
+ <state vertical-scroll-proportion="0.0748503" vertical-offset="0" max-vertical-offset="1002">
898
+ <caret line="5" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
899
+ </state>
900
+ </provider>
901
+ </entry>
902
+ <state vertical-scroll-proportion="0.3322785" vertical-offset="1110" max-vertical-offset="2220">
903
+ <caret line="88" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
904
+ </state>
905
+ <caret line="35" column="34" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
906
+ </state>
907
+ <caret line="10" column="31" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
908
+ </state>
909
+ <state vertical-scroll-proportion="0.3322785" vertical-offset="390" max-vertical-offset="2505">
910
+ <caret line="40" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
911
+ </state>
912
+ <state vertical-scroll-proportion="0.12844037" vertical-offset="1671" max-vertical-offset="2325">
913
+ <caret line="117" column="43" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
914
+ </state>
915
+ </provider>
916
+ </entry>
917
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat.rb">
918
+ <provider selected="true" editor-type-id="text-editor">
919
+ <state vertical-scroll-proportion="0.12" vertical-offset="0" max-vertical-offset="1000">
920
+ <caret line="8" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
921
+ </state>
922
+ <caret line="7" column="18" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
923
+ </state>
924
+ </provider>
925
+ </entry>
926
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/population.rb">
927
+ <provider selected="true" editor-type-id="text-editor">
928
+ <state vertical-scroll-proportion="0.0" vertical-offset="1297" max-vertical-offset="2700">
929
+ <caret line="109" column="11" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
930
+ </state>
931
+ </provider>
932
+ </entry>
933
+ <state vertical-scroll-proportion="0.3322034" vertical-offset="764" max-vertical-offset="1890">
934
+ <caret line="64" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
935
+ </state>
936
+ <state vertical-scroll-proportion="0.33275563" vertical-offset="333" max-vertical-offset="5325">
937
+ <caret line="35" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
938
+ </state>
939
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/evaluator.rb">
940
+ <provider selected="true" editor-type-id="text-editor">
941
+ <state vertical-scroll-proportion="0.41666666" vertical-offset="90" max-vertical-offset="750">
942
+ <caret line="23" column="35" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
943
+ </state>
944
+ </provider>
945
+ </entry>
946
+ <state vertical-scroll-proportion="0.6938776" vertical-offset="1150" max-vertical-offset="2130">
947
+ <caret line="122" column="27" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
948
+ </state>
949
+ </provider>
950
+ </entry>
951
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/rubyneat.rb">
952
+ <provider selected="true" editor-type-id="text-editor">
953
+ <state vertical-scroll-proportion="0.33265924" vertical-offset="1351" max-vertical-offset="6375">
954
+ <caret line="112" column="8" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
955
+ </state>
956
+ </provider>
957
+ </entry>
958
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/expressor.rb">
959
+ <provider selected="true" editor-type-id="text-editor">
960
+ <state vertical-scroll-proportion="0.6994992" vertical-offset="391" max-vertical-offset="1485">
961
+ <caret line="54" column="68" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
962
+ </state>
963
+ </provider>
964
+ </entry>
965
+ <state vertical-scroll-proportion="0.0" vertical-offset="2206" max-vertical-offset="4845">
966
+ <caret line="193" column="57" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
967
+ </state>
968
+ <state vertical-scroll-proportion="0.0" vertical-offset="1233" max-vertical-offset="2370">
969
+ <caret line="91" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
970
+ </state>
971
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/graph.rb">
972
+ <provider selected="true" editor-type-id="text-editor">
973
+ <state vertical-scroll-proportion="0.56586826" vertical-offset="498" max-vertical-offset="1500">
974
+ <caret line="71" column="10" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
975
+ <folding />
976
+ </state>
977
+ </provider>
978
+ </entry>
979
+ <state vertical-scroll-proportion="0.483" vertical-offset="777" max-vertical-offset="1800">
980
+ <caret line="70" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
981
+ </state>
982
+ <entry file="file://$PROJECT_DIR$/neater/sigdebug_neat.rb">
983
+ <provider selected="true" editor-type-id="text-editor">
984
+ <state vertical-scroll-proportion="0.09118541" vertical-offset="0" max-vertical-offset="2556">
985
+ <caret line="5" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
986
+ </state>
987
+ </provider>
988
+ </entry>
989
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/critter.rb">
990
+ <provider selected="true" editor-type-id="text-editor">
991
+ <state vertical-scroll-proportion="0.0" vertical-offset="2101" max-vertical-offset="5700">
992
+ <caret line="162" column="10" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
993
+ </state>
994
+ </provider>
995
+ </entry>
996
+ <entry file="file://$PROJECT_DIR$/neater/xoranalog_neat.rb">
997
+ <provider selected="true" editor-type-id="text-editor">
998
+ <state vertical-scroll-proportion="0.071287125" vertical-offset="0" max-vertical-offset="2592">
999
+ <caret line="2" column="9" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1000
+ </state>
1001
+ </provider>
1002
+ </entry>
1003
+ <entry file="file://$PROJECT_DIR$/neater/rnlib/xor.rb">
1004
+ <provider selected="true" editor-type-id="text-editor">
1005
+ <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="463">
1006
+ <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1007
+ </state>
1008
+ </provider>
1009
+ </entry>
1010
+ <entry file="file:///bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/rubyneat.rb">
1011
+ <state vertical-scroll-proportion="0.06990881" vertical-offset="6843" max-vertical-offset="7830">
1012
+ <caret line="384" column="51" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1013
+ </state>
1014
+ <entry file="file:///bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/population.rb">
1015
+ <provider selected="true" editor-type-id="text-editor">
1016
+ <state vertical-scroll-proportion="0.0" vertical-offset="1526" max-vertical-offset="3495">
1017
+ <caret line="119" column="9" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1018
+ </state>
1019
+ </provider>
1020
+ </entry>
1021
+ <entry file="file:///bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/evaluator.rb">
1022
+ <state vertical-scroll-proportion="0.16109422" vertical-offset="39" max-vertical-offset="1026">
1023
+ <caret line="11" column="36" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1024
+ </state>
1025
+ <entry file="file:///bigoldsystem/home/trader/dev/ruby_projects/rubyneat/lib/rubyneat/expressor.rb">
1026
+ <state vertical-scroll-proportion="0.11195446" vertical-offset="1561" max-vertical-offset="2088">
1027
+ <caret line="90" column="9" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1028
+ </state>
1029
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/evolver.rb">
1030
+ <state vertical-scroll-proportion="0.2523719" vertical-offset="4331" max-vertical-offset="5778">
1031
+ <caret line="248" column="9" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1032
+ </state>
1033
+ <entry file="file://$PROJECT_DIR$/neater/xorsin_neat.rb">
1034
+ <provider selected="true" editor-type-id="text-editor">
1035
+ <state vertical-scroll-proportion="0.915625" vertical-offset="764" max-vertical-offset="2682">
1036
+ <caret line="75" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1037
+ </state>
1038
+ </provider>
1039
+ </entry>
1040
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/dsl.rb">
1041
+ <provider selected="true" editor-type-id="text-editor">
1042
+ <state vertical-scroll-proportion="0.0" vertical-offset="1447" max-vertical-offset="2448">
1043
+ <caret line="116" column="49" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1044
+ </state>
1045
+ </provider>
1046
+ </entry>
1047
+ <entry file="file://$PROJECT_DIR$/lib/rubyneat/neuron.rb">
1048
+ <provider selected="true" editor-type-id="text-editor">
1049
+ <state vertical-scroll-proportion="0.49002492" vertical-offset="165" max-vertical-offset="2844">
1050
+ <caret line="31" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" />
1051
+ </state>
1052
+ </provider>
1053
+ </entry>
1054
+ <entry file="file://$PROJECT_DIR$/neater/xor_neat.rb">
1055
+ <provider selected="true" editor-type-id="text-editor">
1056
+ <state vertical-scroll-proportion="0.0" vertical-offset="1710" max-vertical-offset="2145">
1057
+ <caret line="114" column="54" selection-start-line="114" selection-start-column="54" selection-end-line="114" selection-end-column="54" />
1058
+ <folding />
1059
+ </state>
1060
+ </provider>
1061
+ </entry>
1062
+ <entry file="file://$PROJECT_DIR$/neater/rnlib/inverted_pendulum.rb">
1063
+ <state vertical-scroll-proportion="0.0" vertical-offset="1800" max-vertical-offset="5790">
1064
+ <caret line="120" column="19" selection-start-line="120" selection-start-column="19" selection-end-line="120" selection-end-column="19" />
1065
+ <folding />
1066
+ </state>
1067
+ <entry file="file://$PROJECT_DIR$/neater/invpend_neat.rb">
1068
+ <provider selected="true" editor-type-id="text-editor">
1069
+ <state vertical-scroll-proportion="0.0" vertical-offset="435" max-vertical-offset="2340">
1070
+ <caret line="29" column="14" selection-start-line="29" selection-start-column="14" selection-end-line="29" selection-end-column="14" />
1071
+ <folding />
1072
+ </state>
1073
+ </provider>
1074
+ </entry>
1075
+ <entry file="file://$PROJECT_DIR$/Gemfile">
1076
+ <provider selected="true" editor-type-id="text-editor">
1077
+ <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="570">
1078
+ <caret line="32" column="0" selection-start-line="32" selection-start-column="0" selection-end-line="32" selection-end-column="0" />
1079
+ <folding />
1080
+ </state>
1081
+ </provider>
1082
+ </entry>
1083
+ <entry file="file://$PROJECT_DIR$/rubyneat.gemspec">
1084
+ <provider selected="true" editor-type-id="text-editor">
1085
+ <state vertical-scroll-proportion="0.3118503" vertical-offset="0" max-vertical-offset="5385">
1086
+ <caret line="20" column="18" selection-start-line="20" selection-start-column="18" selection-end-line="20" selection-end-column="18" />
1087
+ <folding />
1088
+ </state>
1089
+ </provider>
1090
+ </entry>
1091
+ <entry file="file://$PROJECT_DIR$/bin/neat">
1092
+ <provider selected="true" editor-type-id="text-editor">
1093
+ <state vertical-scroll-proportion="0.0" vertical-offset="288" max-vertical-offset="1335">
1094
+ <caret line="59" column="7" selection-start-line="59" selection-start-column="7" selection-end-line="59" selection-end-column="7" />
1095
+ <folding />
1096
+ </state>
1097
+ </provider>
1098
+ </entry>
1099
+ <entry file="file://$PROJECT_DIR$/Rakefile">
1100
+ <provider selected="true" editor-type-id="text-editor">
1101
+ <state vertical-scroll-proportion="0.8502994" vertical-offset="3" max-vertical-offset="1005">
1102
+ <caret line="57" column="36" selection-start-line="57" selection-start-column="36" selection-end-line="57" selection-end-column="36" />
1103
+ <folding />
1104
+ </state>
1105
+ </provider>
1106
+ </entry>
1107
+ </component>
1108
+ <component name="masterDetails">
1109
+ <states>
1110
+ <state key="ScopeChooserConfigurable.UI">
1111
+ <settings>
1112
+ <splitter-proportions>
1113
+ <option name="proportions">
1114
+ <list>
1115
+ <option value="0.2" />
1116
+ </list>
1117
+ </option>
1118
+ </splitter-proportions>
1119
+ </settings>
1120
+ </state>
1121
+ </states>
1122
+ </component>
1123
+ </project>
1124
+