Sha256: c52de892944bb7d04e42862c7fd6b99f1bececfdd71858ea1509bd8b8e857a48

Contents?: true

Size: 986 Bytes

Versions: 11

Compression:

Stored size: 986 Bytes

Contents

#ifndef ___RB_TENSOR_H___
#define ___RB_TENSOR_H___

#ifdef HAVE_TENSOR_TENSOR_H
#include "rb_gsl.h"
#include <tensor/tensor.h>

EXTERN VALUE cgsl_tensor, cgsl_tensor_int;

enum {
  TENSOR_ADD,
  TENSOR_SUB,
  TENSOR_MUL_ELEMENTS,
  TENSOR_DIV_ELEMENTS,
  TENSOR_SCALE,
  TENSOR_ADD_CONSTANT,
  TENSOR_ADD_DIAGONAL,
  TENSOR_PRODUCT,
  TENSOR_CONTRACT,
};

typedef gsl_permutation tensor_indices;

typedef struct __rbgsl_tensor {
  /*  tensor *tensor;
      tensor_indices *indices;*/
  tensor *tensor;
  tensor_indices *indices;
} rbgsl_tensor;

typedef struct __rbgsl_tensor_int {
  /*  tensor_int *tensor;
      tensor_indices *indices;*/
  tensor_int *tensor;
  tensor_indices *indices;
} rbgsl_tensor_int;

rbgsl_tensor* rbgsl_tensor_alloc(const unsigned int rank, const size_t dimension);
rbgsl_tensor_int* rbgsl_tensor_int_alloc(const unsigned int rank, const size_t dimension);
void rbgsl_tensor_free(rbgsl_tensor*);
void rbgsl_tensor_int_free(rbgsl_tensor_int*);
#endif
#endif

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
gsl-2.1.0.3 ext/gsl_native/include/rb_gsl_tensor.h
gsl-2.1.0.2 ext/gsl_native/include/rb_gsl_tensor.h
gsl-2.1.0.1 ext/gsl_native/include/rb_gsl_tensor.h
gsl-2.1.0 ext/gsl_native/include/rb_gsl_tensor.h
gsl-1.16.0.6 ext/gsl_native/include/rb_gsl_tensor.h
rb-gsl-1.16.0.5 ext/gsl_native/include/rb_gsl_tensor.h
rb-gsl-1.16.0.4 ext/gsl/include/rb_gsl_tensor.h
rb-gsl-1.16.0.3 ext/gsl/include/rb_gsl_tensor.h
rb-gsl-1.16.0.3.rc1 ext/gsl/include/rb_gsl_tensor.h
rb-gsl-1.16.0.2 ext/gsl/include/rb_gsl_tensor.h
rb-gsl-1.16.0.1 ext/gsl/include/rb_gsl_tensor.h