silicium 0.0.20 → 0.0.21

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +3 -3
  3. data/.gitignore +13 -13
  4. data/.rakeTasks +8 -0
  5. data/.travis.yml +28 -25
  6. data/CODE_OF_CONDUCT.md +74 -74
  7. data/Gemfile +8 -8
  8. data/LICENSE.txt +21 -21
  9. data/Makefile +269 -269
  10. data/README.md +588 -46
  11. data/Rakefile +16 -16
  12. data/bin/console +14 -14
  13. data/bin/setup +8 -8
  14. data/docs/Object.html +117 -117
  15. data/docs/README_md.html +142 -142
  16. data/docs/Silicium/Combinatorics.html +270 -270
  17. data/docs/Silicium/Dice/Polyhedron.html +315 -315
  18. data/docs/Silicium/Dice/PolyhedronSet.html +321 -321
  19. data/docs/Silicium/Dice.html +99 -99
  20. data/docs/Silicium/Error.html +106 -106
  21. data/docs/Silicium/Geometry/Line2dCanon.html +243 -243
  22. data/docs/Silicium/Geometry/VariablesOrderException.html +106 -106
  23. data/docs/Silicium/Geometry.html +940 -940
  24. data/docs/Silicium/GraphVisualizer.html +226 -0
  25. data/docs/Silicium/Graphs/GraphError.html +106 -106
  26. data/docs/Silicium/Graphs/OrientedGraph.html +901 -775
  27. data/docs/Silicium/Graphs/UnorientedGraph.html +237 -284
  28. data/docs/Silicium/Graphs.html +374 -164
  29. data/docs/Silicium/IntegralDoesntExistError.html +106 -106
  30. data/docs/Silicium/NumericalIntegration.html +521 -521
  31. data/docs/Silicium/Optimization.html +629 -639
  32. data/docs/Silicium/Plotter/Image.html +297 -297
  33. data/docs/Silicium/Plotter.html +186 -186
  34. data/docs/Silicium.html +101 -101
  35. data/docs/created.rid +9 -9
  36. data/docs/css/fonts.css +167 -167
  37. data/docs/css/rdoc.css +619 -619
  38. data/docs/index.html +134 -132
  39. data/docs/js/darkfish.js +84 -84
  40. data/docs/js/navigation.js +105 -105
  41. data/docs/js/search.js +110 -110
  42. data/docs/js/search_index.js +1 -1
  43. data/docs/js/search_index.js.gz +0 -0
  44. data/docs/js/searcher.js +229 -229
  45. data/docs/table_of_contents.html +697 -608
  46. data/lib/algebra.rb +452 -0
  47. data/lib/algebra_diff.rb +258 -0
  48. data/lib/geometry/figure.rb +62 -0
  49. data/lib/geometry.rb +290 -236
  50. data/lib/geometry3d.rb +270 -0
  51. data/lib/graph/dfs.rb +42 -0
  52. data/lib/graph/kruskal.rb +36 -0
  53. data/lib/graph/scc.rb +97 -0
  54. data/lib/graph.rb +350 -164
  55. data/lib/graph_visualizer.rb +287 -0
  56. data/lib/ml_algorithms.rb +181 -0
  57. data/lib/numerical_integration.rb +184 -147
  58. data/lib/optimization.rb +209 -144
  59. data/lib/plotter.rb +256 -96
  60. data/lib/polynomial_division.rb +132 -0
  61. data/lib/polynomial_interpolation.rb +94 -0
  62. data/lib/regression.rb +120 -0
  63. data/lib/silicium/adding.rb +37 -0
  64. data/lib/silicium/conversions.rb +23 -0
  65. data/lib/silicium/multi.rb +82 -0
  66. data/lib/silicium/sparse.rb +76 -0
  67. data/lib/silicium/sugar.rb +37 -0
  68. data/lib/silicium/trans.rb +26 -0
  69. data/lib/silicium/version.rb +3 -3
  70. data/lib/silicium.rb +5 -5
  71. data/lib/theory_of_probability.rb +240 -226
  72. data/lib/topological_sort.rb +50 -0
  73. data/oriented_graph.png +0 -0
  74. data/plot.png +0 -0
  75. data/silicium.gemspec +38 -39
  76. metadata +38 -16
@@ -1,608 +1,697 @@
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
-
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
+ <li class="class">
160
+ <a href="Silicium/GraphVisualizer.html">Silicium::GraphVisualizer</a>
161
+
162
+ </li>
163
+
164
+ </ul>
165
+
166
+ <h2 id="methods">Methods</h2>
167
+ <ul>
168
+
169
+ <li class="method">
170
+ <a href="Silicium/NumericalIntegration.html#method-c-left_rect_integration">::left_rect_integration</a>
171
+ &mdash;
172
+ <span class="container">Silicium::NumericalIntegration</span>
173
+
174
+ <li class="method">
175
+ <a href="Silicium/NumericalIntegration.html#method-c-left_rect_integration_n">::left_rect_integration_n</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">::middle_rectangles</a>
181
+ &mdash;
182
+ <span class="container">Silicium::NumericalIntegration</span>
183
+
184
+ <li class="method">
185
+ <a href="Silicium/NumericalIntegration.html#method-c-middle_rectangles_with_a_segment">::middle_rectangles_with_a_segment</a>
186
+ &mdash;
187
+ <span class="container">Silicium::NumericalIntegration</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/Plotter/Image.html#method-c-new">::new</a>
196
+ &mdash;
197
+ <span class="container">Silicium::Plotter::Image</span>
198
+
199
+ <li class="method">
200
+ <a href="Silicium/Graphs/OrientedGraph.html#method-c-new">::new</a>
201
+ &mdash;
202
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
203
+
204
+ <li class="method">
205
+ <a href="Silicium/Dice/Polyhedron.html#method-c-new">::new</a>
206
+ &mdash;
207
+ <span class="container">Silicium::Dice::Polyhedron</span>
208
+
209
+ <li class="method">
210
+ <a href="Silicium/Geometry/Line2dCanon.html#method-c-new">::new</a>
211
+ &mdash;
212
+ <span class="container">Silicium::Geometry::Line2dCanon</span>
213
+
214
+ <li class="method">
215
+ <a href="Silicium/NumericalIntegration.html#method-c-simpson_integration">::simpson_integration</a>
216
+ &mdash;
217
+ <span class="container">Silicium::NumericalIntegration</span>
218
+
219
+ <li class="method">
220
+ <a href="Silicium/NumericalIntegration.html#method-c-simpson_integration_with_a_segment">::simpson_integration_with_a_segment</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">::three_eights_integration</a>
226
+ &mdash;
227
+ <span class="container">Silicium::NumericalIntegration</span>
228
+
229
+ <li class="method">
230
+ <a href="Silicium/NumericalIntegration.html#method-c-three_eights_integration_n">::three_eights_integration_n</a>
231
+ &mdash;
232
+ <span class="container">Silicium::NumericalIntegration</span>
233
+
234
+ <li class="method">
235
+ <a href="Silicium/NumericalIntegration.html#method-c-trapezoid">::trapezoid</a>
236
+ &mdash;
237
+ <span class="container">Silicium::NumericalIntegration</span>
238
+
239
+ <li class="method">
240
+ <a href="Silicium/NumericalIntegration.html#method-c-trapezoid_with_a_segment">::trapezoid_with_a_segment</a>
241
+ &mdash;
242
+ <span class="container">Silicium::NumericalIntegration</span>
243
+
244
+ <li class="method">
245
+ <a href="Silicium/Optimization.html#method-i-accuracy">#accuracy</a>
246
+ &mdash;
247
+ <span class="container">Silicium::Optimization</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/UnorientedGraph.html#method-i-add_edge-21">#add_edge!</a>
256
+ &mdash;
257
+ <span class="container">Silicium::Graphs::UnorientedGraph</span>
258
+
259
+ <li class="method">
260
+ <a href="Silicium/Graphs.html#method-i-add_to_queue">#add_to_queue</a>
261
+ &mdash;
262
+ <span class="container">Silicium::Graphs</span>
263
+
264
+ <li class="method">
265
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-add_vertex-21">#add_vertex!</a>
266
+ &mdash;
267
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
268
+
269
+ <li class="method">
270
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-adjacted_with">#adjacted_with</a>
271
+ &mdash;
272
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
273
+
274
+ <li class="method">
275
+ <a href="Silicium/Combinatorics.html#method-i-arrangement">#arrangement</a>
276
+ &mdash;
277
+ <span class="container">Silicium::Combinatorics</span>
278
+
279
+ <li class="method">
280
+ <a href="Silicium/Plotter/Image.html#method-i-bar_chart">#bar_chart</a>
281
+ &mdash;
282
+ <span class="container">Silicium::Plotter::Image</span>
283
+
284
+ <li class="method">
285
+ <a href="Silicium/Optimization.html#method-i-bogosort">#bogosort</a>
286
+ &mdash;
287
+ <span class="container">Silicium::Optimization</span>
288
+
289
+ <li class="method">
290
+ <a href="Silicium/Optimization.html#method-i-bogosort-21">#bogosort!</a>
291
+ &mdash;
292
+ <span class="container">Silicium::Optimization</span>
293
+
294
+ <li class="method">
295
+ <a href="Silicium/Graphs.html#method-i-breadth_first_search-3F">#breadth_first_search?</a>
296
+ &mdash;
297
+ <span class="container">Silicium::Graphs</span>
298
+
299
+ <li class="method">
300
+ <a href="Silicium/Geometry.html#method-i-clockwise">#clockwise</a>
301
+ &mdash;
302
+ <span class="container">Silicium::Geometry</span>
303
+
304
+ <li class="method">
305
+ <a href="Silicium/Plotter.html#method-i-color">#color</a>
306
+ &mdash;
307
+ <span class="container">Silicium::Plotter</span>
308
+
309
+ <li class="method">
310
+ <a href="Silicium/Combinatorics.html#method-i-combination">#combination</a>
311
+ &mdash;
312
+ <span class="container">Silicium::Combinatorics</span>
313
+
314
+ <li class="method">
315
+ <a href="Silicium/Graphs.html#method-i-connected-3F">#connected?</a>
316
+ &mdash;
317
+ <span class="container">Silicium::Graphs</span>
318
+
319
+ <li class="method">
320
+ <a href="Silicium/Geometry.html#method-i-counter_clockwise">#counter_clockwise</a>
321
+ &mdash;
322
+ <span class="container">Silicium::Geometry</span>
323
+
324
+ <li class="method">
325
+ <a href="Silicium/Dice/Polyhedron.html#method-i-csides">#csides</a>
326
+ &mdash;
327
+ <span class="container">Silicium::Dice::Polyhedron</span>
328
+
329
+ <li class="method">
330
+ <a href="Silicium/Geometry.html#method-i-cut_by_eq">#cut_by_eq</a>
331
+ &mdash;
332
+ <span class="container">Silicium::Geometry</span>
333
+
334
+ <li class="method">
335
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-delete_edge-21">#delete_edge!</a>
336
+ &mdash;
337
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
338
+
339
+ <li class="method">
340
+ <a href="Silicium/Graphs/UnorientedGraph.html#method-i-delete_edge-21">#delete_edge!</a>
341
+ &mdash;
342
+ <span class="container">Silicium::Graphs::UnorientedGraph</span>
343
+
344
+ <li class="method">
345
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-delete_vertex-21">#delete_vertex!</a>
346
+ &mdash;
347
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
348
+
349
+ <li class="method">
350
+ <a href="Silicium/Graphs.html#method-i-dfu">#dfu</a>
351
+ &mdash;
352
+ <span class="container">Silicium::Graphs</span>
353
+
354
+ <li class="method">
355
+ <a href="Silicium/Graphs.html#method-i-dijkstra_algorythm">#dijkstra_algorythm</a>
356
+ &mdash;
357
+ <span class="container">Silicium::Graphs</span>
358
+
359
+ <li class="method">
360
+ <a href="Silicium/Geometry.html#method-i-directing_vector3d">#directing_vector3d</a>
361
+ &mdash;
362
+ <span class="container">Silicium::Geometry</span>
363
+
364
+ <li class="method">
365
+ <a href="Silicium/Geometry.html#method-i-distance_point_line2d">#distance_point_line2d</a>
366
+ &mdash;
367
+ <span class="container">Silicium::Geometry</span>
368
+
369
+ <li class="method">
370
+ <a href="Silicium/Geometry.html#method-i-distance_point_line_equation2d">#distance_point_line_equation2d</a>
371
+ &mdash;
372
+ <span class="container">Silicium::Geometry</span>
373
+
374
+ <li class="method">
375
+ <a href="Silicium/Geometry.html#method-i-distance_point_to_point2d">#distance_point_to_point2d</a>
376
+ &mdash;
377
+ <span class="container">Silicium::Geometry</span>
378
+
379
+ <li class="method">
380
+ <a href="Silicium/Geometry.html#method-i-distance_point_to_point3d">#distance_point_to_point3d</a>
381
+ &mdash;
382
+ <span class="container">Silicium::Geometry</span>
383
+
384
+ <li class="method">
385
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-edge_label_number">#edge_label_number</a>
386
+ &mdash;
387
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
388
+
389
+ <li class="method">
390
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-edge_number">#edge_number</a>
391
+ &mdash;
392
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
393
+
394
+ <li class="method">
395
+ <a href="Silicium/Plotter/Image.html#method-i-export">#export</a>
396
+ &mdash;
397
+ <span class="container">Silicium::Plotter::Image</span>
398
+
399
+ <li class="method">
400
+ <a href="Silicium/Combinatorics.html#method-i-fact">#fact</a>
401
+ &mdash;
402
+ <span class="container">Silicium::Combinatorics</span>
403
+
404
+ <li class="method">
405
+ <a href="Silicium/Combinatorics.html#method-i-factorial">#factorial</a>
406
+ &mdash;
407
+ <span class="container">Silicium::Combinatorics</span>
408
+
409
+ <li class="method">
410
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-get_edge_label">#get_edge_label</a>
411
+ &mdash;
412
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
413
+
414
+ <li class="method">
415
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-get_vertex_label">#get_vertex_label</a>
416
+ &mdash;
417
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
418
+
419
+ <li class="method">
420
+ <a href="Silicium/Optimization.html#method-i-half_division">#half_division</a>
421
+ &mdash;
422
+ <span class="container">Silicium::Optimization</span>
423
+
424
+ <li class="method">
425
+ <a href="Silicium/Optimization.html#method-i-half_division_step">#half_division_step</a>
426
+ &mdash;
427
+ <span class="container">Silicium::Optimization</span>
428
+
429
+ <li class="method">
430
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-has_edge-3F">#has_edge?</a>
431
+ &mdash;
432
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
433
+
434
+ <li class="method">
435
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-has_vertex-3F">#has_vertex?</a>
436
+ &mdash;
437
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
438
+
439
+ <li class="method">
440
+ <a href="Silicium/Geometry.html#method-i-height_point_3d">#height_point_3d</a>
441
+ &mdash;
442
+ <span class="container">Silicium::Geometry</span>
443
+
444
+ <li class="method">
445
+ <a href="Silicium/Optimization.html#method-i-hook_jeeves">#hook_jeeves</a>
446
+ &mdash;
447
+ <span class="container">Silicium::Optimization</span>
448
+
449
+ <li class="method">
450
+ <a href="Silicium/Optimization.html#method-i-hook_jeeves_step">#hook_jeeves_step</a>
451
+ &mdash;
452
+ <span class="container">Silicium::Optimization</span>
453
+
454
+ <li class="method">
455
+ <a href="Silicium/Geometry.html#method-i-insert_eq">#insert_eq</a>
456
+ &mdash;
457
+ <span class="container">Silicium::Geometry</span>
458
+
459
+ <li class="method">
460
+ <a href="Silicium/Optimization.html#method-i-integrating_Monte_Carlo_base">#integrating_Monte_Carlo_base</a>
461
+ &mdash;
462
+ <span class="container">Silicium::Optimization</span>
463
+
464
+ <li class="method">
465
+ <a href="Silicium/Graphs/UnorientedGraph.html#method-i-label_edge-21">#label_edge!</a>
466
+ &mdash;
467
+ <span class="container">Silicium::Graphs::UnorientedGraph</span>
468
+
469
+ <li class="method">
470
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-label_edge-21">#label_edge!</a>
471
+ &mdash;
472
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
473
+
474
+ <li class="method">
475
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-label_vertex-21">#label_vertex!</a>
476
+ &mdash;
477
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
478
+
479
+ <li class="method">
480
+ <a href="Silicium/Dice/PolyhedronSet.html#method-i-make_graph_by_plotter">#make_graph_by_plotter</a>
481
+ &mdash;
482
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
483
+
484
+ <li class="method">
485
+ <a href="Silicium/Optimization.html#method-i-middle">#middle</a>
486
+ &mdash;
487
+ <span class="container">Silicium::Optimization</span>
488
+
489
+ <li class="method">
490
+ <a href="Silicium/Geometry.html#method-i-minimal_convex_hull_2d">#minimal_convex_hull_2d</a>
491
+ &mdash;
492
+ <span class="container">Silicium::Geometry</span>
493
+
494
+ <li class="method">
495
+ <a href="Silicium/Geometry.html#method-i-needed_variables_order-3F">#needed_variables_order?</a>
496
+ &mdash;
497
+ <span class="container">Silicium::Geometry</span>
498
+
499
+ <li class="method">
500
+ <a href="Silicium/Geometry.html#method-i-not_polygon-3F">#not_polygon?</a>
501
+ &mdash;
502
+ <span class="container">Silicium::Geometry</span>
503
+
504
+ <li class="method">
505
+ <a href="Silicium/Graphs.html#method-i-number_of_connected">#number_of_connected</a>
506
+ &mdash;
507
+ <span class="container">Silicium::Graphs</span>
508
+
509
+ <li class="method">
510
+ <a href="Silicium/Geometry.html#method-i-oriented_area">#oriented_area</a>
511
+ &mdash;
512
+ <span class="container">Silicium::Geometry</span>
513
+
514
+ <li class="method">
515
+ <a href="Silicium/Dice/PolyhedronSet.html#method-i-percentage">#percentage</a>
516
+ &mdash;
517
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
518
+
519
+ <li class="method">
520
+ <a href="Silicium/Geometry/Line2dCanon.html#method-i-point_is_on_line-3F">#point_is_on_line?</a>
521
+ &mdash;
522
+ <span class="container">Silicium::Geometry::Line2dCanon</span>
523
+
524
+ <li class="method">
525
+ <a href="Silicium/Geometry.html#method-i-point_to_line_distance_3d">#point_to_line_distance_3d</a>
526
+ &mdash;
527
+ <span class="container">Silicium::Geometry</span>
528
+
529
+ <li class="method">
530
+ <a href="Silicium/Geometry.html#method-i-process_cf">#process_cf</a>
531
+ &mdash;
532
+ <span class="container">Silicium::Geometry</span>
533
+
534
+ <li class="method">
535
+ <a href="Silicium/Geometry.html#method-i-process_free_member">#process_free_member</a>
536
+ &mdash;
537
+ <span class="container">Silicium::Geometry</span>
538
+
539
+ <li class="method">
540
+ <a href="Silicium/Geometry.html#method-i-process_line_by_coordinates">#process_line_by_coordinates</a>
541
+ &mdash;
542
+ <span class="container">Silicium::Geometry</span>
543
+
544
+ <li class="method">
545
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-protected_add_edge-21">#protected_add_edge!</a>
546
+ &mdash;
547
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
548
+
549
+ <li class="method">
550
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-protected_delete_edge-21">#protected_delete_edge!</a>
551
+ &mdash;
552
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
553
+
554
+ <li class="method">
555
+ <a href="Silicium/Geometry.html#method-i-put_point_in_part">#put_point_in_part</a>
556
+ &mdash;
557
+ <span class="container">Silicium::Geometry</span>
558
+
559
+ <li class="method">
560
+ <a href="Silicium/Optimization.html#method-i-re_lu">#re_lu</a>
561
+ &mdash;
562
+ <span class="container">Silicium::Optimization</span>
563
+
564
+ <li class="method">
565
+ <a href="Silicium/Plotter/Image.html#method-i-rectangle">#rectangle</a>
566
+ &mdash;
567
+ <span class="container">Silicium::Plotter::Image</span>
568
+
569
+ <li class="method">
570
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-reverse-21">#reverse!</a>
571
+ &mdash;
572
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
573
+
574
+ <li class="method">
575
+ <a href="Silicium/Dice/Polyhedron.html#method-i-sides">#sides</a>
576
+ &mdash;
577
+ <span class="container">Silicium::Dice::Polyhedron</span>
578
+
579
+ <li class="method">
580
+ <a href="Silicium/Optimization.html#method-i-sigmoid">#sigmoid</a>
581
+ &mdash;
582
+ <span class="container">Silicium::Optimization</span>
583
+
584
+ <li class="method">
585
+ <a href="Silicium/Optimization.html#method-i-sorted-3F">#sorted?</a>
586
+ &mdash;
587
+ <span class="container">Silicium::Optimization</span>
588
+
589
+ <li class="method">
590
+ <a href="Silicium/Optimization.html#method-i-switch_step">#switch_step</a>
591
+ &mdash;
592
+ <span class="container">Silicium::Optimization</span>
593
+
594
+ <li class="method">
595
+ <a href="Silicium/Dice/Polyhedron.html#method-i-throw">#throw</a>
596
+ &mdash;
597
+ <span class="container">Silicium::Dice::Polyhedron</span>
598
+
599
+ <li class="method">
600
+ <a href="Silicium/Dice/PolyhedronSet.html#method-i-throw">#throw</a>
601
+ &mdash;
602
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
603
+
604
+ <li class="method">
605
+ <a href="Silicium/Dice/PolyhedronSet.html#method-i-to_s">#to_s</a>
606
+ &mdash;
607
+ <span class="container">Silicium::Dice::PolyhedronSet</span>
608
+
609
+ <li class="method">
610
+ <a href="Silicium/Dice/Polyhedron.html#method-i-to_s">#to_s</a>
611
+ &mdash;
612
+ <span class="container">Silicium::Dice::Polyhedron</span>
613
+
614
+ <li class="method">
615
+ <a href="Silicium/Geometry.html#method-i-vector_length">#vector_length</a>
616
+ &mdash;
617
+ <span class="container">Silicium::Geometry</span>
618
+
619
+ <li class="method">
620
+ <a href="Silicium/Geometry.html#method-i-vectors_product">#vectors_product</a>
621
+ &mdash;
622
+ <span class="container">Silicium::Geometry</span>
623
+
624
+ <li class="method">
625
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-vertex_label_number">#vertex_label_number</a>
626
+ &mdash;
627
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
628
+
629
+ <li class="method">
630
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-vertex_number">#vertex_number</a>
631
+ &mdash;
632
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
633
+
634
+ <li class="method">
635
+ <a href="Silicium/Graphs/OrientedGraph.html#method-i-vertices">#vertices</a>
636
+ &mdash;
637
+ <span class="container">Silicium::Graphs::OrientedGraph</span>
638
+
639
+ <li class="method">
640
+ <a href="Silicium/GraphVisualizer.html#change_window_size">#change_window_size</a>
641
+ &mdash;
642
+ <span class="container">Silicium::GraphVisualizer</span>
643
+
644
+ <li class="method">
645
+ <a href="Silicium/GraphVisualizer.html#change_edge_width">#change_edge_width</a>
646
+ &mdash;
647
+ <span class="container">Silicium::GraphVisualizer</span>
648
+
649
+ <li class="method">
650
+ <a href="Silicium/GraphVisualizer.html#change_vertices_radius">#change_vertices_radius</a>
651
+ &mdash;
652
+ <span class="container">Silicium::GraphVisualizer</span>
653
+
654
+ <li class="method">
655
+ <a href="Silicium/GraphVisualizer.html#change_label_size">#change_label_size</a>
656
+ &mdash;
657
+ <span class="container">Silicium::GraphVisualizer</span>
658
+
659
+ <li class="method">
660
+ <a href="Silicium/GraphVisualizer.html#change_label_color">#change_label_color</a>
661
+ &mdash;
662
+ <span class="container">Silicium::GraphVisualizer</span>
663
+
664
+ <li class="method">
665
+ <a href="Silicium/GraphVisualizer.html#change_vertex_color">#change_vertex_color</a>
666
+ &mdash;
667
+ <span class="container">Silicium::GraphVisualizer</span>
668
+
669
+ <li class="method">
670
+ <a href="Silicium/GraphVisualizer.html#set_graph">#set_graph</a>
671
+ &mdash;
672
+ <span class="container">Silicium::GraphVisualizer</span>
673
+
674
+ <li class="method">
675
+ <a href="Silicium/GraphVisualizer.html#clear_window">#clear_window</a>
676
+ &mdash;
677
+ <span class="container">Silicium::GraphVisualizer</span>
678
+
679
+ <li class="method">
680
+ <a href="Silicium/GraphVisualizer.html#close_window">#close_window</a>
681
+ &mdash;
682
+ <span class="container">Silicium::GraphVisualizer</span>
683
+
684
+ <li class="method">
685
+ <a href="Silicium/GraphVisualizer.html#show_window">#show_window</a>
686
+ &mdash;
687
+ <span class="container">Silicium::GraphVisualizer</span>
688
+ </ul>
689
+ </main>
690
+
691
+
692
+ <footer id="validator-badges" role="contentinfo">
693
+ <p><a href="https://validator.w3.org/check/referer">Validate</a>
694
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.0.
695
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
696
+ </footer>
697
+