silicium 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +4 -0
  3. data/.gitignore +13 -0
  4. data/.travis.yml +25 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +8 -0
  7. data/LICENSE.txt +21 -0
  8. data/Makefile +269 -0
  9. data/README.md +46 -0
  10. data/Rakefile +17 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +8 -0
  13. data/docs/Object.html +117 -0
  14. data/docs/README_md.html +142 -0
  15. data/docs/Silicium/Combinatorics.html +270 -0
  16. data/docs/Silicium/Dice/Polyhedron.html +315 -0
  17. data/docs/Silicium/Dice/PolyhedronSet.html +321 -0
  18. data/docs/Silicium/Dice.html +99 -0
  19. data/docs/Silicium/Error.html +106 -0
  20. data/docs/Silicium/Geometry/Line2dCanon.html +243 -0
  21. data/docs/Silicium/Geometry/VariablesOrderException.html +106 -0
  22. data/docs/Silicium/Geometry.html +940 -0
  23. data/docs/Silicium/Graphs/GraphError.html +106 -0
  24. data/docs/Silicium/Graphs/OrientedGraph.html +775 -0
  25. data/docs/Silicium/Graphs/UnorientedGraph.html +284 -0
  26. data/docs/Silicium/Graphs.html +164 -0
  27. data/docs/Silicium/IntegralDoesntExistError.html +106 -0
  28. data/docs/Silicium/NumericalIntegration.html +521 -0
  29. data/docs/Silicium/Optimization.html +639 -0
  30. data/docs/Silicium/Plotter/Image.html +297 -0
  31. data/docs/Silicium/Plotter.html +186 -0
  32. data/docs/Silicium.html +101 -0
  33. data/docs/created.rid +9 -0
  34. data/docs/css/fonts.css +167 -0
  35. data/docs/css/rdoc.css +619 -0
  36. data/docs/fonts/Lato-Light.ttf +0 -0
  37. data/docs/fonts/Lato-LightItalic.ttf +0 -0
  38. data/docs/fonts/Lato-Regular.ttf +0 -0
  39. data/docs/fonts/Lato-RegularItalic.ttf +0 -0
  40. data/docs/fonts/SourceCodePro-Bold.ttf +0 -0
  41. data/docs/fonts/SourceCodePro-Regular.ttf +0 -0
  42. data/docs/images/add.png +0 -0
  43. data/docs/images/arrow_up.png +0 -0
  44. data/docs/images/brick.png +0 -0
  45. data/docs/images/brick_link.png +0 -0
  46. data/docs/images/bug.png +0 -0
  47. data/docs/images/bullet_black.png +0 -0
  48. data/docs/images/bullet_toggle_minus.png +0 -0
  49. data/docs/images/bullet_toggle_plus.png +0 -0
  50. data/docs/images/date.png +0 -0
  51. data/docs/images/delete.png +0 -0
  52. data/docs/images/find.png +0 -0
  53. data/docs/images/loadingAnimation.gif +0 -0
  54. data/docs/images/macFFBgHack.png +0 -0
  55. data/docs/images/package.png +0 -0
  56. data/docs/images/page_green.png +0 -0
  57. data/docs/images/page_white_text.png +0 -0
  58. data/docs/images/page_white_width.png +0 -0
  59. data/docs/images/plugin.png +0 -0
  60. data/docs/images/ruby.png +0 -0
  61. data/docs/images/tag_blue.png +0 -0
  62. data/docs/images/tag_green.png +0 -0
  63. data/docs/images/transparent.png +0 -0
  64. data/docs/images/wrench.png +0 -0
  65. data/docs/images/wrench_orange.png +0 -0
  66. data/docs/images/zoom.png +0 -0
  67. data/docs/index.html +132 -0
  68. data/docs/js/darkfish.js +84 -0
  69. data/docs/js/navigation.js +105 -0
  70. data/docs/js/navigation.js.gz +0 -0
  71. data/docs/js/search.js +110 -0
  72. data/docs/js/search_index.js +1 -0
  73. data/docs/js/search_index.js.gz +0 -0
  74. data/docs/js/searcher.js +229 -0
  75. data/docs/js/searcher.js.gz +0 -0
  76. data/docs/table_of_contents.html +608 -0
  77. data/lib/geometry.rb +236 -0
  78. data/lib/graph.rb +164 -0
  79. data/lib/numerical_integration.rb +147 -0
  80. data/lib/optimization.rb +144 -0
  81. data/lib/plotter.rb +96 -0
  82. data/lib/silicium/version.rb +3 -0
  83. data/lib/silicium.rb +5 -0
  84. data/lib/theory_of_probability.rb +227 -0
  85. data/silicium.gemspec +39 -0
  86. metadata +185 -0
@@ -0,0 +1,608 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>Table of Contents - RDoc Documentation</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ var index_rel_prefix = "./";
12
+ </script>
13
+
14
+ <script src="./js/navigation.js" defer></script>
15
+ <script src="./js/search.js" defer></script>
16
+ <script src="./js/search_index.js" defer></script>
17
+ <script src="./js/searcher.js" defer></script>
18
+ <script src="./js/darkfish.js" defer></script>
19
+
20
+ <link href="./css/fonts.css" rel="stylesheet">
21
+ <link href="./css/rdoc.css" rel="stylesheet">
22
+
23
+
24
+
25
+
26
+ <body id="top" class="table-of-contents">
27
+ <main role="main">
28
+ <h1 class="class">Table of Contents - RDoc Documentation</h1>
29
+
30
+
31
+
32
+ <h2 id="pages">Pages</h2>
33
+ <ul>
34
+
35
+ <li class="file">
36
+ <a href="README_md.html">README</a>
37
+
38
+ <ul>
39
+
40
+ <li><a href="README_md.html#label-Silicium">Silicium</a>
41
+
42
+ <li><a href="README_md.html#label-Installation">Installation</a>
43
+
44
+ <li><a href="README_md.html#label-Usage">Usage</a>
45
+
46
+ <li><a href="README_md.html#label-Development">Development</a>
47
+
48
+ <li><a href="README_md.html#label-Contributing">Contributing</a>
49
+
50
+ <li><a href="README_md.html#label-License">License</a>
51
+
52
+ <li><a href="README_md.html#label-Code+of+Conduct">Code of Conduct</a>
53
+
54
+ </ul>
55
+
56
+ </li>
57
+
58
+ </ul>
59
+
60
+
61
+ <h2 id="classes">Classes and Modules</h2>
62
+ <ul>
63
+
64
+ <li class="class">
65
+ <a href="Object.html">Object</a>
66
+
67
+ </li>
68
+
69
+ <li class="module">
70
+ <a href="Silicium.html">Silicium</a>
71
+
72
+ </li>
73
+
74
+ <li class="module">
75
+ <a href="Silicium/Combinatorics.html">Silicium::Combinatorics</a>
76
+
77
+ </li>
78
+
79
+ <li class="module">
80
+ <a href="Silicium/Dice.html">Silicium::Dice</a>
81
+
82
+ </li>
83
+
84
+ <li class="class">
85
+ <a href="Silicium/Dice/Polyhedron.html">Silicium::Dice::Polyhedron</a>
86
+
87
+ </li>
88
+
89
+ <li class="class">
90
+ <a href="Silicium/Dice/PolyhedronSet.html">Silicium::Dice::PolyhedronSet</a>
91
+
92
+ </li>
93
+
94
+ <li class="class">
95
+ <a href="Silicium/Error.html">Silicium::Error</a>
96
+
97
+ </li>
98
+
99
+ <li class="module">
100
+ <a href="Silicium/Geometry.html">Silicium::Geometry</a>
101
+
102
+ </li>
103
+
104
+ <li class="class">
105
+ <a href="Silicium/Geometry/Line2dCanon.html">Silicium::Geometry::Line2dCanon</a>
106
+
107
+ </li>
108
+
109
+ <li class="class">
110
+ <a href="Silicium/Geometry/VariablesOrderException.html">Silicium::Geometry::VariablesOrderException</a>
111
+
112
+ </li>
113
+
114
+ <li class="module">
115
+ <a href="Silicium/Graphs.html">Silicium::Graphs</a>
116
+
117
+ </li>
118
+
119
+ <li class="class">
120
+ <a href="Silicium/Graphs/GraphError.html">Silicium::Graphs::GraphError</a>
121
+
122
+ </li>
123
+
124
+ <li class="class">
125
+ <a href="Silicium/Graphs/OrientedGraph.html">Silicium::Graphs::OrientedGraph</a>
126
+
127
+ </li>
128
+
129
+ <li class="class">
130
+ <a href="Silicium/Graphs/UnorientedGraph.html">Silicium::Graphs::UnorientedGraph</a>
131
+
132
+ </li>
133
+
134
+ <li class="class">
135
+ <a href="Silicium/IntegralDoesntExistError.html">Silicium::IntegralDoesntExistError</a>
136
+
137
+ </li>
138
+
139
+ <li class="class">
140
+ <a href="Silicium/NumericalIntegration.html">Silicium::NumericalIntegration</a>
141
+
142
+ </li>
143
+
144
+ <li class="module">
145
+ <a href="Silicium/Optimization.html">Silicium::Optimization</a>
146
+
147
+ </li>
148
+
149
+ <li class="module">
150
+ <a href="Silicium/Plotter.html">Silicium::Plotter</a>
151
+
152
+ </li>
153
+
154
+ <li class="class">
155
+ <a href="Silicium/Plotter/Image.html">Silicium::Plotter::Image</a>
156
+
157
+ </li>
158
+
159
+ </ul>
160
+
161
+ <h2 id="methods">Methods</h2>
162
+ <ul>
163
+
164
+ <li class="method">
165
+ <a href="Silicium/NumericalIntegration.html#method-c-left_rect_integration">::left_rect_integration</a>
166
+ &mdash;
167
+ <span class="container">Silicium::NumericalIntegration</span>
168
+
169
+ <li class="method">
170
+ <a href="Silicium/NumericalIntegration.html#method-c-left_rect_integration_n">::left_rect_integration_n</a>
171
+ &mdash;
172
+ <span class="container">Silicium::NumericalIntegration</span>
173
+
174
+ <li class="method">
175
+ <a href="Silicium/NumericalIntegration.html#method-c-middle_rectangles">::middle_rectangles</a>
176
+ &mdash;
177
+ <span class="container">Silicium::NumericalIntegration</span>
178
+
179
+ <li class="method">
180
+ <a href="Silicium/NumericalIntegration.html#method-c-middle_rectangles_with_a_segment">::middle_rectangles_with_a_segment</a>
181
+ &mdash;
182
+ <span class="container">Silicium::NumericalIntegration</span>
183
+
184
+ <li class="method">
185
+ <a href="Silicium/Geometry/Line2dCanon.html#method-c-new">::new</a>
186
+ &mdash;
187
+ <span class="container">Silicium::Geometry::Line2dCanon</span>
188
+
189
+ <li class="method">
190
+ <a href="Silicium/Dice/PolyhedronSet.html#method-c-new">::new</a>
191
+ &mdash;
192
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
193
+
194
+ <li class="method">
195
+ <a href="Silicium/Graphs/OrientedGraph.html#method-c-new">::new</a>
196
+ &mdash;
197
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
198
+
199
+ <li class="method">
200
+ <a href="Silicium/Dice/Polyhedron.html#method-c-new">::new</a>
201
+ &mdash;
202
+ <span class="container">Silicium::Dice::Polyhedron</span>
203
+
204
+ <li class="method">
205
+ <a href="Silicium/Plotter/Image.html#method-c-new">::new</a>
206
+ &mdash;
207
+ <span class="container">Silicium::Plotter::Image</span>
208
+
209
+ <li class="method">
210
+ <a href="Silicium/NumericalIntegration.html#method-c-simpson_integration">::simpson_integration</a>
211
+ &mdash;
212
+ <span class="container">Silicium::NumericalIntegration</span>
213
+
214
+ <li class="method">
215
+ <a href="Silicium/NumericalIntegration.html#method-c-simpson_integration_with_a_segment">::simpson_integration_with_a_segment</a>
216
+ &mdash;
217
+ <span class="container">Silicium::NumericalIntegration</span>
218
+
219
+ <li class="method">
220
+ <a href="Silicium/NumericalIntegration.html#method-c-three_eights_integration">::three_eights_integration</a>
221
+ &mdash;
222
+ <span class="container">Silicium::NumericalIntegration</span>
223
+
224
+ <li class="method">
225
+ <a href="Silicium/NumericalIntegration.html#method-c-three_eights_integration_n">::three_eights_integration_n</a>
226
+ &mdash;
227
+ <span class="container">Silicium::NumericalIntegration</span>
228
+
229
+ <li class="method">
230
+ <a href="Silicium/NumericalIntegration.html#method-c-trapezoid">::trapezoid</a>
231
+ &mdash;
232
+ <span class="container">Silicium::NumericalIntegration</span>
233
+
234
+ <li class="method">
235
+ <a href="Silicium/NumericalIntegration.html#method-c-trapezoid_with_a_segment">::trapezoid_with_a_segment</a>
236
+ &mdash;
237
+ <span class="container">Silicium::NumericalIntegration</span>
238
+
239
+ <li class="method">
240
+ <a href="Silicium/Optimization.html#method-i-accuracy">#accuracy</a>
241
+ &mdash;
242
+ <span class="container">Silicium::Optimization</span>
243
+
244
+ <li class="method">
245
+ <a href="Silicium/Graphs/UnorientedGraph.html#method-i-add_edge-21">#add_edge!</a>
246
+ &mdash;
247
+ <span class="container">Silicium::Graphs::UnorientedGraph</span>
248
+
249
+ <li class="method">
250
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-add_edge-21">#add_edge!</a>
251
+ &mdash;
252
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
253
+
254
+ <li class="method">
255
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-add_edge_force-21">#add_edge_force!</a>
256
+ &mdash;
257
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
258
+
259
+ <li class="method">
260
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-add_vertex-21">#add_vertex!</a>
261
+ &mdash;
262
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
263
+
264
+ <li class="method">
265
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-adjacted_with">#adjacted_with</a>
266
+ &mdash;
267
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
268
+
269
+ <li class="method">
270
+ <a href="Silicium/Combinatorics.html#method-i-arrangement">#arrangement</a>
271
+ &mdash;
272
+ <span class="container">Silicium::Combinatorics</span>
273
+
274
+ <li class="method">
275
+ <a href="Silicium/Plotter/Image.html#method-i-bar_chart">#bar_chart</a>
276
+ &mdash;
277
+ <span class="container">Silicium::Plotter::Image</span>
278
+
279
+ <li class="method">
280
+ <a href="Silicium/Optimization.html#method-i-bogosort">#bogosort</a>
281
+ &mdash;
282
+ <span class="container">Silicium::Optimization</span>
283
+
284
+ <li class="method">
285
+ <a href="Silicium/Optimization.html#method-i-bogosort-21">#bogosort!</a>
286
+ &mdash;
287
+ <span class="container">Silicium::Optimization</span>
288
+
289
+ <li class="method">
290
+ <a href="Silicium/Geometry.html#method-i-clockwise">#clockwise</a>
291
+ &mdash;
292
+ <span class="container">Silicium::Geometry</span>
293
+
294
+ <li class="method">
295
+ <a href="Silicium/Plotter.html#method-i-color">#color</a>
296
+ &mdash;
297
+ <span class="container">Silicium::Plotter</span>
298
+
299
+ <li class="method">
300
+ <a href="Silicium/Combinatorics.html#method-i-combination">#combination</a>
301
+ &mdash;
302
+ <span class="container">Silicium::Combinatorics</span>
303
+
304
+ <li class="method">
305
+ <a href="Silicium/Geometry.html#method-i-counter_clockwise">#counter_clockwise</a>
306
+ &mdash;
307
+ <span class="container">Silicium::Geometry</span>
308
+
309
+ <li class="method">
310
+ <a href="Silicium/Dice/Polyhedron.html#method-i-csides">#csides</a>
311
+ &mdash;
312
+ <span class="container">Silicium::Dice::Polyhedron</span>
313
+
314
+ <li class="method">
315
+ <a href="Silicium/Geometry.html#method-i-cut_by_eq">#cut_by_eq</a>
316
+ &mdash;
317
+ <span class="container">Silicium::Geometry</span>
318
+
319
+ <li class="method">
320
+ <a href="Silicium/Graphs/UnorientedGraph.html#method-i-delete_edge-21">#delete_edge!</a>
321
+ &mdash;
322
+ <span class="container">Silicium::Graphs::UnorientedGraph</span>
323
+
324
+ <li class="method">
325
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-delete_edge-21">#delete_edge!</a>
326
+ &mdash;
327
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
328
+
329
+ <li class="method">
330
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-delete_vertex-21">#delete_vertex!</a>
331
+ &mdash;
332
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
333
+
334
+ <li class="method">
335
+ <a href="Silicium/Graphs.html#method-i-dijkstra_algorythm">#dijkstra_algorythm</a>
336
+ &mdash;
337
+ <span class="container">Silicium::Graphs</span>
338
+
339
+ <li class="method">
340
+ <a href="Silicium/Geometry.html#method-i-directing_vector3d">#directing_vector3d</a>
341
+ &mdash;
342
+ <span class="container">Silicium::Geometry</span>
343
+
344
+ <li class="method">
345
+ <a href="Silicium/Geometry.html#method-i-distance_point_line2d">#distance_point_line2d</a>
346
+ &mdash;
347
+ <span class="container">Silicium::Geometry</span>
348
+
349
+ <li class="method">
350
+ <a href="Silicium/Geometry.html#method-i-distance_point_line_equation2d">#distance_point_line_equation2d</a>
351
+ &mdash;
352
+ <span class="container">Silicium::Geometry</span>
353
+
354
+ <li class="method">
355
+ <a href="Silicium/Geometry.html#method-i-distance_point_to_point2d">#distance_point_to_point2d</a>
356
+ &mdash;
357
+ <span class="container">Silicium::Geometry</span>
358
+
359
+ <li class="method">
360
+ <a href="Silicium/Geometry.html#method-i-distance_point_to_point3d">#distance_point_to_point3d</a>
361
+ &mdash;
362
+ <span class="container">Silicium::Geometry</span>
363
+
364
+ <li class="method">
365
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-edge_label_number">#edge_label_number</a>
366
+ &mdash;
367
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
368
+
369
+ <li class="method">
370
+ <a href="Silicium/Graphs/UnorientedGraph.html#method-i-edge_number">#edge_number</a>
371
+ &mdash;
372
+ <span class="container">Silicium::Graphs::UnorientedGraph</span>
373
+
374
+ <li class="method">
375
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-edge_number">#edge_number</a>
376
+ &mdash;
377
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
378
+
379
+ <li class="method">
380
+ <a href="Silicium/Plotter/Image.html#method-i-export">#export</a>
381
+ &mdash;
382
+ <span class="container">Silicium::Plotter::Image</span>
383
+
384
+ <li class="method">
385
+ <a href="Silicium/Combinatorics.html#method-i-fact">#fact</a>
386
+ &mdash;
387
+ <span class="container">Silicium::Combinatorics</span>
388
+
389
+ <li class="method">
390
+ <a href="Silicium/Combinatorics.html#method-i-factorial">#factorial</a>
391
+ &mdash;
392
+ <span class="container">Silicium::Combinatorics</span>
393
+
394
+ <li class="method">
395
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-get_edge_label">#get_edge_label</a>
396
+ &mdash;
397
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
398
+
399
+ <li class="method">
400
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-get_vertex_label">#get_vertex_label</a>
401
+ &mdash;
402
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
403
+
404
+ <li class="method">
405
+ <a href="Silicium/Optimization.html#method-i-half_division">#half_division</a>
406
+ &mdash;
407
+ <span class="container">Silicium::Optimization</span>
408
+
409
+ <li class="method">
410
+ <a href="Silicium/Optimization.html#method-i-half_division_step">#half_division_step</a>
411
+ &mdash;
412
+ <span class="container">Silicium::Optimization</span>
413
+
414
+ <li class="method">
415
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-has_edge-3F">#has_edge?</a>
416
+ &mdash;
417
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
418
+
419
+ <li class="method">
420
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-has_vertex-3F">#has_vertex?</a>
421
+ &mdash;
422
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
423
+
424
+ <li class="method">
425
+ <a href="Silicium/Geometry.html#method-i-height_point_3d">#height_point_3d</a>
426
+ &mdash;
427
+ <span class="container">Silicium::Geometry</span>
428
+
429
+ <li class="method">
430
+ <a href="Silicium/Optimization.html#method-i-hook_jeeves">#hook_jeeves</a>
431
+ &mdash;
432
+ <span class="container">Silicium::Optimization</span>
433
+
434
+ <li class="method">
435
+ <a href="Silicium/Optimization.html#method-i-hook_jeeves_step">#hook_jeeves_step</a>
436
+ &mdash;
437
+ <span class="container">Silicium::Optimization</span>
438
+
439
+ <li class="method">
440
+ <a href="Silicium/Geometry.html#method-i-insert_eq">#insert_eq</a>
441
+ &mdash;
442
+ <span class="container">Silicium::Geometry</span>
443
+
444
+ <li class="method">
445
+ <a href="Silicium/Optimization.html#method-i-integrating_Monte_Carlo_base">#integrating_Monte_Carlo_base</a>
446
+ &mdash;
447
+ <span class="container">Silicium::Optimization</span>
448
+
449
+ <li class="method">
450
+ <a href="Silicium/Graphs/UnorientedGraph.html#method-i-label_edge-21">#label_edge!</a>
451
+ &mdash;
452
+ <span class="container">Silicium::Graphs::UnorientedGraph</span>
453
+
454
+ <li class="method">
455
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-label_edge-21">#label_edge!</a>
456
+ &mdash;
457
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
458
+
459
+ <li class="method">
460
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-label_vertex-21">#label_vertex!</a>
461
+ &mdash;
462
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
463
+
464
+ <li class="method">
465
+ <a href="Silicium/Dice/PolyhedronSet.html#method-i-make_graph_by_plotter">#make_graph_by_plotter</a>
466
+ &mdash;
467
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
468
+
469
+ <li class="method">
470
+ <a href="Silicium/Optimization.html#method-i-middle">#middle</a>
471
+ &mdash;
472
+ <span class="container">Silicium::Optimization</span>
473
+
474
+ <li class="method">
475
+ <a href="Silicium/Geometry.html#method-i-minimal_convex_hull_2d">#minimal_convex_hull_2d</a>
476
+ &mdash;
477
+ <span class="container">Silicium::Geometry</span>
478
+
479
+ <li class="method">
480
+ <a href="Silicium/Geometry.html#method-i-needed_variables_order-3F">#needed_variables_order?</a>
481
+ &mdash;
482
+ <span class="container">Silicium::Geometry</span>
483
+
484
+ <li class="method">
485
+ <a href="Silicium/Geometry.html#method-i-not_polygon-3F">#not_polygon?</a>
486
+ &mdash;
487
+ <span class="container">Silicium::Geometry</span>
488
+
489
+ <li class="method">
490
+ <a href="Silicium/Geometry.html#method-i-oriented_area">#oriented_area</a>
491
+ &mdash;
492
+ <span class="container">Silicium::Geometry</span>
493
+
494
+ <li class="method">
495
+ <a href="Silicium/Dice/PolyhedronSet.html#method-i-percentage">#percentage</a>
496
+ &mdash;
497
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
498
+
499
+ <li class="method">
500
+ <a href="Silicium/Geometry/Line2dCanon.html#method-i-point_is_on_line-3F">#point_is_on_line?</a>
501
+ &mdash;
502
+ <span class="container">Silicium::Geometry::Line2dCanon</span>
503
+
504
+ <li class="method">
505
+ <a href="Silicium/Geometry.html#method-i-point_to_line_distance_3d">#point_to_line_distance_3d</a>
506
+ &mdash;
507
+ <span class="container">Silicium::Geometry</span>
508
+
509
+ <li class="method">
510
+ <a href="Silicium/Geometry.html#method-i-process_cf">#process_cf</a>
511
+ &mdash;
512
+ <span class="container">Silicium::Geometry</span>
513
+
514
+ <li class="method">
515
+ <a href="Silicium/Geometry.html#method-i-process_free_member">#process_free_member</a>
516
+ &mdash;
517
+ <span class="container">Silicium::Geometry</span>
518
+
519
+ <li class="method">
520
+ <a href="Silicium/Geometry.html#method-i-process_line_by_coordinates">#process_line_by_coordinates</a>
521
+ &mdash;
522
+ <span class="container">Silicium::Geometry</span>
523
+
524
+ <li class="method">
525
+ <a href="Silicium/Geometry.html#method-i-put_point_in_part">#put_point_in_part</a>
526
+ &mdash;
527
+ <span class="container">Silicium::Geometry</span>
528
+
529
+ <li class="method">
530
+ <a href="Silicium/Optimization.html#method-i-re_lu">#re_lu</a>
531
+ &mdash;
532
+ <span class="container">Silicium::Optimization</span>
533
+
534
+ <li class="method">
535
+ <a href="Silicium/Plotter/Image.html#method-i-rectangle">#rectangle</a>
536
+ &mdash;
537
+ <span class="container">Silicium::Plotter::Image</span>
538
+
539
+ <li class="method">
540
+ <a href="Silicium/Dice/Polyhedron.html#method-i-sides">#sides</a>
541
+ &mdash;
542
+ <span class="container">Silicium::Dice::Polyhedron</span>
543
+
544
+ <li class="method">
545
+ <a href="Silicium/Optimization.html#method-i-sigmoid">#sigmoid</a>
546
+ &mdash;
547
+ <span class="container">Silicium::Optimization</span>
548
+
549
+ <li class="method">
550
+ <a href="Silicium/Optimization.html#method-i-sorted-3F">#sorted?</a>
551
+ &mdash;
552
+ <span class="container">Silicium::Optimization</span>
553
+
554
+ <li class="method">
555
+ <a href="Silicium/Optimization.html#method-i-switch_step">#switch_step</a>
556
+ &mdash;
557
+ <span class="container">Silicium::Optimization</span>
558
+
559
+ <li class="method">
560
+ <a href="Silicium/Dice/Polyhedron.html#method-i-throw">#throw</a>
561
+ &mdash;
562
+ <span class="container">Silicium::Dice::Polyhedron</span>
563
+
564
+ <li class="method">
565
+ <a href="Silicium/Dice/PolyhedronSet.html#method-i-throw">#throw</a>
566
+ &mdash;
567
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
568
+
569
+ <li class="method">
570
+ <a href="Silicium/Dice/PolyhedronSet.html#method-i-to_s">#to_s</a>
571
+ &mdash;
572
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
573
+
574
+ <li class="method">
575
+ <a href="Silicium/Dice/Polyhedron.html#method-i-to_s">#to_s</a>
576
+ &mdash;
577
+ <span class="container">Silicium::Dice::Polyhedron</span>
578
+
579
+ <li class="method">
580
+ <a href="Silicium/Geometry.html#method-i-vector_length">#vector_length</a>
581
+ &mdash;
582
+ <span class="container">Silicium::Geometry</span>
583
+
584
+ <li class="method">
585
+ <a href="Silicium/Geometry.html#method-i-vectors_product">#vectors_product</a>
586
+ &mdash;
587
+ <span class="container">Silicium::Geometry</span>
588
+
589
+ <li class="method">
590
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-vertex_label_number">#vertex_label_number</a>
591
+ &mdash;
592
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
593
+
594
+ <li class="method">
595
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-vertex_number">#vertex_number</a>
596
+ &mdash;
597
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
598
+
599
+ </ul>
600
+ </main>
601
+
602
+
603
+ <footer id="validator-badges" role="contentinfo">
604
+ <p><a href="https://validator.w3.org/check/referer">Validate</a>
605
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.0.
606
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
607
+ </footer>
608
+