ruby-cbc 0.3.18 → 0.3.19

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1841bce90e3a308876b50017971a87cc63cd681b8688697785f5fb084830578a
4
- data.tar.gz: ef1c7e0e5c696e3866b7ec3d2a9a459adaa50733b4df0acdcbc03adfaf7e8781
3
+ metadata.gz: 1459df7aa1e2ba06770e40ab595f96aa52f17739a6f757cce3e870ea335874b9
4
+ data.tar.gz: 4327f8b90505f8884b1cf9b22a45f88e0a4a1a0358ec34e162c32d8efb8ba3ba
5
5
  SHA512:
6
- metadata.gz: 732e76af5a60df5716a5dc6a810951a61b20f377a5e6250594ba1b0d1d805e17bae30771773cd25a144c5dd4362a8292ec0d3516690691d78a867a65024385a9
7
- data.tar.gz: db62304a8887d97d56be50dab92aa2f9d9bf2b5d0db26de9b9af9e0c1b2951ac5fa4fa8ff0037f06399035f76efe3f34fb2b65f482a48a22c043e3783c9ba959
6
+ metadata.gz: 2017f150a9d7c52ac2b2f0797021ddbed619cf33016c4f06c154ae99c116af1d4cd3b3a8fba6425081279d8f312cfd26c1dc4599899acc071887800645feb6fd
7
+ data.tar.gz: c6a36805f9d9270ee2273fd7d5b82c6242f37550f04f2f6ceb6b210959d699675c55f20922336a062dec0745b46e0c81390a30616eea0066787cf652a0158e23
data/.rubocop.yml CHANGED
@@ -1 +1,3 @@
1
- inherit_from: ".ruby-style.yml"
1
+ inherit_from:
2
+ - .rubocop_todo.yml
3
+ - .ruby-style.yml
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,51 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2018-06-21 09:52:21 +0200 using RuboCop version 0.57.2.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 9
10
+ Metrics/AbcSize:
11
+ Max: 61
12
+
13
+ # Offense count: 3
14
+ # Configuration parameters: CountComments, ExcludedMethods.
15
+ Metrics/BlockLength:
16
+ Max: 120
17
+
18
+ # Offense count: 2
19
+ # Configuration parameters: CountComments.
20
+ Metrics/ClassLength:
21
+ Max: 190
22
+
23
+ # Offense count: 2
24
+ Metrics/CyclomaticComplexity:
25
+ Max: 11
26
+
27
+ # Offense count: 12
28
+ # Configuration parameters: CountComments.
29
+ Metrics/MethodLength:
30
+ Max: 54
31
+
32
+ # Offense count: 2
33
+ Metrics/PerceivedComplexity:
34
+ Max: 11
35
+
36
+ # Offense count: 12
37
+ Style/Documentation:
38
+ Exclude:
39
+ - 'spec/**/*'
40
+ - 'test/**/*'
41
+ - 'lib/ruby-cbc.rb'
42
+ - 'lib/ruby-cbc/conflict_solver.rb'
43
+ - 'lib/ruby-cbc/ilp/constant.rb'
44
+ - 'lib/ruby-cbc/ilp/constraint.rb'
45
+ - 'lib/ruby-cbc/ilp/objective.rb'
46
+ - 'lib/ruby-cbc/ilp/term.rb'
47
+ - 'lib/ruby-cbc/ilp/term_array.rb'
48
+ - 'lib/ruby-cbc/ilp/var.rb'
49
+ - 'lib/ruby-cbc/model.rb'
50
+ - 'lib/ruby-cbc/problem.rb'
51
+ - 'lib/ruby-cbc/utils/compressed_row_storage.rb'