gsl 1.14.6 → 1.14.7
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.
- data/VERSION +1 -1
- data/ext/gsl_narray.c +2 -2
- metadata +4 -4
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1.14. | 
| 1 | 
            +
            1.14.7
         | 
    
        data/ext/gsl_narray.c
    CHANGED
    
    | @@ -278,7 +278,7 @@ gsl_vector* na_to_gv(VALUE na) | |
| 278 278 | 
             
              if(NA_TYPE(na) != NA_DFLOAT) {
         | 
| 279 279 | 
             
                nary = na_change_type(na, NA_DFLOAT);
         | 
| 280 280 | 
             
              }
         | 
| 281 | 
            -
              memcpy(v->data, NA_PTR_TYPE( | 
| 281 | 
            +
              memcpy(v->data, NA_PTR_TYPE(nary,double*), v->size*sizeof(double));
         | 
| 282 282 | 
             
              return v;
         | 
| 283 283 | 
             
            }
         | 
| 284 284 |  | 
| @@ -306,7 +306,7 @@ gsl_vector_complex* na_to_gv_complex(VALUE na) | |
| 306 306 | 
             
              if(NA_TYPE(na) != NA_DCOMPLEX) {
         | 
| 307 307 | 
             
                nary = na_change_type(na, NA_DCOMPLEX);
         | 
| 308 308 | 
             
              }
         | 
| 309 | 
            -
              memcpy(v->data, NA_PTR_TYPE( | 
| 309 | 
            +
              memcpy(v->data, NA_PTR_TYPE(nary,gsl_complex*), v->size*sizeof(gsl_complex));
         | 
| 310 310 | 
             
              return v;
         | 
| 311 311 | 
             
            }
         | 
| 312 312 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,13 +1,13 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 2 | 
             
            name: gsl
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            -
              hash:  | 
| 4 | 
            +
              hash: 33
         | 
| 5 5 | 
             
              prerelease: false
         | 
| 6 6 | 
             
              segments: 
         | 
| 7 7 | 
             
              - 1
         | 
| 8 8 | 
             
              - 14
         | 
| 9 | 
            -
              -  | 
| 10 | 
            -
              version: 1.14. | 
| 9 | 
            +
              - 7
         | 
| 10 | 
            +
              version: 1.14.7
         | 
| 11 11 | 
             
            platform: ruby
         | 
| 12 12 | 
             
            authors: 
         | 
| 13 13 | 
             
            - Yoshiki Tsunesada
         | 
| @@ -16,7 +16,7 @@ autorequire: | |
| 16 16 | 
             
            bindir: bin
         | 
| 17 17 | 
             
            cert_chain: []
         | 
| 18 18 |  | 
| 19 | 
            -
            date: 2011-02- | 
| 19 | 
            +
            date: 2011-02-25 00:00:00 -08:00
         | 
| 20 20 | 
             
            default_executable: 
         | 
| 21 21 | 
             
            dependencies: 
         | 
| 22 22 | 
             
            - !ruby/object:Gem::Dependency 
         |