rbbt-dm 1.1.0 → 1.1.1

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 (3) hide show
  1. checksums.yaml +8 -8
  2. data/lib/rbbt/statistics/fdr.rb +3 -3
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZGQzNzI5ZWRiMzBkMTRjNGIxZmUxYTEwMDAyZDEyZjA1NTI0NTI1NQ==
4
+ ZmUyMjZiODkyY2RmODNkMmNkMGJmYWZiYWFmMThkMDIzOGIzZDE5OA==
5
5
  data.tar.gz: !binary |-
6
- YTQwYjdlNzU0NGY4ODUzMTBjNDgzMjcxMTAwOWY1OTY2OGM2YjY0Ng==
6
+ MTQ4MjdiZDY3YTljZTU2ZTViODVjNjA1NTdmYTY1MDQ2OWMxYmIzNg==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZDFkMTZiMjMxYWE2NjYxZDFlYzFmNjZmMmQzZDhlNWQ5YzhlYzlhNDEzMmI0
10
- OGIzYzJkNGFkMjYyMjdjYjVmMjNiNTk4ZTdhYTQzOGJkNjM2MjEwZWJhOTgz
11
- YWViMDA3NTY2MDE2NTM0YjRhOWMwYjk2Y2RlMGMxMzU4MjQ2YjE=
9
+ MjBjZGUxNzk2Y2M1NDU1MzNmZmI1MTk3ODdhOTMxMjA4Njk5NzhkNGM4Mjhh
10
+ ODZmZmNiOWRjZGQ2ZjBlYTMzMDliZDM2ZDBkYjMzNDA2MThkNjdmNzJmOTNh
11
+ MmRmN2Y5MzEzOGM0MDUwNWQzYzE2YmVjYTdjMmMzMzk0MTNhNjQ=
12
12
  data.tar.gz: !binary |-
13
- MjhmNjc2ODQ5MTZhOWZjNmE0YTQxYzJkN2UzZWQyYjNhZmZkMGJjNjliYTc2
14
- NjQwOTk0YjZiMjRmNjFkZjQzZGM3OTAwYmYxZWJhOTM1MTI5ZmNmNzVlNTE3
15
- MTE4YThkZmE2ZjVkMjViNzY5ZWI0NmZiMmYwYTY4Y2Y2NDFjMzU=
13
+ NTZkZGFiODMwZTljNDNhYzEyMWJiYzljNGE4OWYzNTFkNjg2OGRjY2Q1ZDQ5
14
+ Y2QwZjMwNzgzNmUyYzI1NmJjNzkyYjhhZDU2M2ZmZjU0ZWY4Mjg3NGYxOGU4
15
+ YTNmN2ZhYzhkMGQ1NWYxNjhjY2FkMzIzOGQwMWI5M2M0ZDE4NzU=
@@ -52,7 +52,7 @@ module FDR
52
52
  c_code = <<-EOC_CODE
53
53
  double step_up_fast(VALUE ps, double rate){
54
54
  long idx;
55
- int total = RARRAY_LEN(ps);
55
+ int total = (int) RARRAY_LEN(ps);
56
56
 
57
57
  double last_value = 0;
58
58
  for (idx = 0; idx < total; idx++){
@@ -74,7 +74,7 @@ module FDR
74
74
  VALUE adjust_fast_self(VALUE ps){
75
75
  long idx;
76
76
 
77
- int total = RARRAY_LEN(ps);
77
+ int total = (int) RARRAY_LEN(ps);
78
78
 
79
79
  VALUE new = rb_ary_new();
80
80
 
@@ -99,7 +99,7 @@ module FDR
99
99
  VALUE adjust_fast(VALUE ps){
100
100
  long idx;
101
101
 
102
- int total = RARRAY_LEN(ps);
102
+ int total = (int) RARRAY_LEN(ps);
103
103
 
104
104
  VALUE new = rb_ary_new();
105
105
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbbt-dm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Vazquez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-21 00:00:00.000000000 Z
11
+ date: 2013-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rbbt-util