silicium 0.0.15 → 0.0.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +4 -0
- data/.gitignore +3 -1
- data/.travis.yml +12 -1
- data/Gemfile +4 -0
- data/Makefile +269 -0
- data/README.md +2 -0
- data/Rakefile +7 -0
- data/docs/Object.html +117 -0
- data/docs/README_md.html +142 -0
- data/docs/Silicium.html +101 -0
- data/docs/Silicium/Combinatorics.html +270 -0
- data/docs/Silicium/Dice.html +99 -0
- data/docs/Silicium/Dice/Polyhedron.html +315 -0
- data/docs/Silicium/Dice/PolyhedronSet.html +321 -0
- data/docs/Silicium/Error.html +106 -0
- data/docs/Silicium/Geometry.html +940 -0
- data/docs/Silicium/Geometry/Line2dCanon.html +243 -0
- data/docs/Silicium/Geometry/VariablesOrderException.html +106 -0
- data/docs/Silicium/Graphs.html +164 -0
- data/docs/Silicium/Graphs/GraphError.html +106 -0
- data/docs/Silicium/Graphs/OrientedGraph.html +775 -0
- data/docs/Silicium/Graphs/UnorientedGraph.html +284 -0
- data/docs/Silicium/IntegralDoesntExistError.html +106 -0
- data/docs/Silicium/NumericalIntegration.html +521 -0
- data/docs/Silicium/Optimization.html +639 -0
- data/docs/Silicium/Plotter.html +186 -0
- data/docs/Silicium/Plotter/Image.html +297 -0
- data/docs/created.rid +9 -0
- data/docs/css/fonts.css +167 -0
- data/docs/css/rdoc.css +619 -0
- data/docs/fonts/Lato-Light.ttf +0 -0
- data/docs/fonts/Lato-LightItalic.ttf +0 -0
- data/docs/fonts/Lato-Regular.ttf +0 -0
- data/docs/fonts/Lato-RegularItalic.ttf +0 -0
- data/docs/fonts/SourceCodePro-Bold.ttf +0 -0
- data/docs/fonts/SourceCodePro-Regular.ttf +0 -0
- data/docs/images/add.png +0 -0
- data/docs/images/arrow_up.png +0 -0
- data/docs/images/brick.png +0 -0
- data/docs/images/brick_link.png +0 -0
- data/docs/images/bug.png +0 -0
- data/docs/images/bullet_black.png +0 -0
- data/docs/images/bullet_toggle_minus.png +0 -0
- data/docs/images/bullet_toggle_plus.png +0 -0
- data/docs/images/date.png +0 -0
- data/docs/images/delete.png +0 -0
- data/docs/images/find.png +0 -0
- data/docs/images/loadingAnimation.gif +0 -0
- data/docs/images/macFFBgHack.png +0 -0
- data/docs/images/package.png +0 -0
- data/docs/images/page_green.png +0 -0
- data/docs/images/page_white_text.png +0 -0
- data/docs/images/page_white_width.png +0 -0
- data/docs/images/plugin.png +0 -0
- data/docs/images/ruby.png +0 -0
- data/docs/images/tag_blue.png +0 -0
- data/docs/images/tag_green.png +0 -0
- data/docs/images/transparent.png +0 -0
- data/docs/images/wrench.png +0 -0
- data/docs/images/wrench_orange.png +0 -0
- data/docs/images/zoom.png +0 -0
- data/docs/index.html +132 -0
- data/docs/js/darkfish.js +84 -0
- data/docs/js/navigation.js +105 -0
- data/docs/js/navigation.js.gz +0 -0
- data/docs/js/search.js +110 -0
- data/docs/js/search_index.js +1 -0
- data/docs/js/search_index.js.gz +0 -0
- data/docs/js/searcher.js +229 -0
- data/docs/js/searcher.js.gz +0 -0
- data/docs/table_of_contents.html +608 -0
- data/lib/geometry.rb +236 -0
- data/lib/graph.rb +164 -0
- data/lib/numerical_integration.rb +147 -0
- data/lib/optimization.rb +144 -0
- data/lib/plotter.rb +96 -0
- data/lib/silicium.rb +0 -1
- data/lib/silicium/version.rb +1 -1
- data/lib/theory_of_probability.rb +227 -0
- data/silicium.gemspec +4 -2
- metadata +90 -3
data/silicium.gemspec
CHANGED
@@ -18,10 +18,10 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
19
19
|
|
20
20
|
spec.metadata["homepage_uri"] = spec.homepage
|
21
|
-
|
21
|
+
|
22
22
|
spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
23
23
|
=end
|
24
|
-
|
24
|
+
spec.metadata["source_code_uri"] = 'https://github.com/mmcs-ruby/silicium'
|
25
25
|
# Specify which files should be added to the gem when it is released.
|
26
26
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
27
27
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
@@ -34,4 +34,6 @@ Gem::Specification.new do |spec|
|
|
34
34
|
spec.add_development_dependency "bundler", "~> 2.0"
|
35
35
|
spec.add_development_dependency "rake", "~> 10.0"
|
36
36
|
spec.add_development_dependency "minitest", "~> 5.0"
|
37
|
+
spec.add_development_dependency 'simplecov'
|
38
|
+
|
37
39
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: silicium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mmcs-ruby
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '5.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simplecov
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
55
69
|
description: Long list of applied functions
|
56
70
|
email:
|
57
71
|
- poganesyan@sfedu.ru
|
@@ -59,22 +73,95 @@ executables: []
|
|
59
73
|
extensions: []
|
60
74
|
extra_rdoc_files: []
|
61
75
|
files:
|
76
|
+
- ".codeclimate.yml"
|
62
77
|
- ".gitignore"
|
63
78
|
- ".travis.yml"
|
64
79
|
- CODE_OF_CONDUCT.md
|
65
80
|
- Gemfile
|
66
81
|
- LICENSE.txt
|
82
|
+
- Makefile
|
67
83
|
- README.md
|
68
84
|
- Rakefile
|
69
85
|
- bin/console
|
70
86
|
- bin/setup
|
87
|
+
- docs/Object.html
|
88
|
+
- docs/README_md.html
|
89
|
+
- docs/Silicium.html
|
90
|
+
- docs/Silicium/Combinatorics.html
|
91
|
+
- docs/Silicium/Dice.html
|
92
|
+
- docs/Silicium/Dice/Polyhedron.html
|
93
|
+
- docs/Silicium/Dice/PolyhedronSet.html
|
94
|
+
- docs/Silicium/Error.html
|
95
|
+
- docs/Silicium/Geometry.html
|
96
|
+
- docs/Silicium/Geometry/Line2dCanon.html
|
97
|
+
- docs/Silicium/Geometry/VariablesOrderException.html
|
98
|
+
- docs/Silicium/Graphs.html
|
99
|
+
- docs/Silicium/Graphs/GraphError.html
|
100
|
+
- docs/Silicium/Graphs/OrientedGraph.html
|
101
|
+
- docs/Silicium/Graphs/UnorientedGraph.html
|
102
|
+
- docs/Silicium/IntegralDoesntExistError.html
|
103
|
+
- docs/Silicium/NumericalIntegration.html
|
104
|
+
- docs/Silicium/Optimization.html
|
105
|
+
- docs/Silicium/Plotter.html
|
106
|
+
- docs/Silicium/Plotter/Image.html
|
107
|
+
- docs/created.rid
|
108
|
+
- docs/css/fonts.css
|
109
|
+
- docs/css/rdoc.css
|
110
|
+
- docs/fonts/Lato-Light.ttf
|
111
|
+
- docs/fonts/Lato-LightItalic.ttf
|
112
|
+
- docs/fonts/Lato-Regular.ttf
|
113
|
+
- docs/fonts/Lato-RegularItalic.ttf
|
114
|
+
- docs/fonts/SourceCodePro-Bold.ttf
|
115
|
+
- docs/fonts/SourceCodePro-Regular.ttf
|
116
|
+
- docs/images/add.png
|
117
|
+
- docs/images/arrow_up.png
|
118
|
+
- docs/images/brick.png
|
119
|
+
- docs/images/brick_link.png
|
120
|
+
- docs/images/bug.png
|
121
|
+
- docs/images/bullet_black.png
|
122
|
+
- docs/images/bullet_toggle_minus.png
|
123
|
+
- docs/images/bullet_toggle_plus.png
|
124
|
+
- docs/images/date.png
|
125
|
+
- docs/images/delete.png
|
126
|
+
- docs/images/find.png
|
127
|
+
- docs/images/loadingAnimation.gif
|
128
|
+
- docs/images/macFFBgHack.png
|
129
|
+
- docs/images/package.png
|
130
|
+
- docs/images/page_green.png
|
131
|
+
- docs/images/page_white_text.png
|
132
|
+
- docs/images/page_white_width.png
|
133
|
+
- docs/images/plugin.png
|
134
|
+
- docs/images/ruby.png
|
135
|
+
- docs/images/tag_blue.png
|
136
|
+
- docs/images/tag_green.png
|
137
|
+
- docs/images/transparent.png
|
138
|
+
- docs/images/wrench.png
|
139
|
+
- docs/images/wrench_orange.png
|
140
|
+
- docs/images/zoom.png
|
141
|
+
- docs/index.html
|
142
|
+
- docs/js/darkfish.js
|
143
|
+
- docs/js/navigation.js
|
144
|
+
- docs/js/navigation.js.gz
|
145
|
+
- docs/js/search.js
|
146
|
+
- docs/js/search_index.js
|
147
|
+
- docs/js/search_index.js.gz
|
148
|
+
- docs/js/searcher.js
|
149
|
+
- docs/js/searcher.js.gz
|
150
|
+
- docs/table_of_contents.html
|
151
|
+
- lib/geometry.rb
|
152
|
+
- lib/graph.rb
|
153
|
+
- lib/numerical_integration.rb
|
154
|
+
- lib/optimization.rb
|
155
|
+
- lib/plotter.rb
|
71
156
|
- lib/silicium.rb
|
72
157
|
- lib/silicium/version.rb
|
158
|
+
- lib/theory_of_probability.rb
|
73
159
|
- silicium.gemspec
|
74
160
|
homepage:
|
75
161
|
licenses:
|
76
162
|
- MIT
|
77
|
-
metadata:
|
163
|
+
metadata:
|
164
|
+
source_code_uri: https://github.com/mmcs-ruby/silicium
|
78
165
|
post_install_message:
|
79
166
|
rdoc_options: []
|
80
167
|
require_paths:
|