GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
Sparse-op-decls.h File Reference
#include "octave-config.h"
Include dependency graph for Sparse-op-decls.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)   extern API R OP (const X&, const Y&)
 
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)   extern API SparseBoolMatrix OP (const X&, const Y&)
 
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)   extern API SparseBoolMatrix OP (const X&, const Y&)
 
#define SPARSE_MSM_BIN_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_MSM_BOOL_OP_DECLS(M1, M2, API)
 
#define SPARSE_MSM_CMP_OP_DECLS(M1, M2, API)
 
#define SPARSE_MSM_EQNE_OP_DECLS(M1, M2, API)
 
#define SPARSE_MSM_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SMM_BIN_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SMM_BOOL_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMM_CMP_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMM_EQNE_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMM_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SMS_BIN_OP_DECLS(R1, R2, M, S, API)
 
#define SPARSE_SMS_BOOL_OP_DECLS(M, S, API)
 
#define SPARSE_SMS_CMP_OP_DECLS(M, S, API)
 
#define SPARSE_SMS_EQNE_OP_DECLS(M, S, API)
 
#define SPARSE_SMS_OP_DECLS(R1, R2, M, S, API)
 
#define SPARSE_SMSM_BIN_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SMSM_BOOL_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMSM_CMP_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMSM_EQNE_OP_DECLS(M1, M2, API)
 
#define SPARSE_SMSM_OP_DECLS(R1, R2, M1, M2, API)
 
#define SPARSE_SSM_BIN_OP_DECLS(R1, R2, S, M, API)
 
#define SPARSE_SSM_BOOL_OP_DECLS(S, M, API)
 
#define SPARSE_SSM_CMP_OP_DECLS(S, M, API)
 
#define SPARSE_SSM_EQNE_OP_DECLS(S, M, API)
 
#define SPARSE_SSM_OP_DECLS(R1, R2, S, M, API)
 

Macro Definition Documentation

◆ SPARSE_BIN_OP_DECL

#define SPARSE_BIN_OP_DECL (   R,
  OP,
  X,
  Y,
  API 
)    extern API R OP (const X&, const Y&)

Definition at line 32 of file Sparse-op-decls.h.

◆ SPARSE_BOOL_OP_DECL

#define SPARSE_BOOL_OP_DECL (   OP,
  X,
  Y,
  API 
)    extern API SparseBoolMatrix OP (const X&, const Y&)

Definition at line 38 of file Sparse-op-decls.h.

◆ SPARSE_CMP_OP_DECL

#define SPARSE_CMP_OP_DECL (   OP,
  X,
  Y,
  API 
)    extern API SparseBoolMatrix OP (const X&, const Y&)

Definition at line 35 of file Sparse-op-decls.h.

◆ SPARSE_MSM_BIN_OP_DECLS

#define SPARSE_MSM_BIN_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, M1, M2, API); \
SPARSE_BIN_OP_DECL (R1, operator -, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, product, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, quotient, M1, M2, API);
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 130 of file Sparse-op-decls.h.

◆ SPARSE_MSM_BOOL_OP_DECLS

#define SPARSE_MSM_BOOL_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_BOOL_OP_DECL (mx_el_and, M1, M2, API); \
SPARSE_BOOL_OP_DECL (mx_el_or, M1, M2, API);
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86

Definition at line 148 of file Sparse-op-decls.h.

◆ SPARSE_MSM_CMP_OP_DECLS

#define SPARSE_MSM_CMP_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_lt, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_le, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ge, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_gt, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ne, M1, M2, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 136 of file Sparse-op-decls.h.

◆ SPARSE_MSM_EQNE_OP_DECLS

#define SPARSE_MSM_EQNE_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ne, M1, M2, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 144 of file Sparse-op-decls.h.

◆ SPARSE_MSM_OP_DECLS

#define SPARSE_MSM_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_MSM_BIN_OP_DECLS (R1, R2, M1, M2, API) \
SPARSE_MSM_CMP_OP_DECLS (M1, M2, API) \
SPARSE_MSM_BOOL_OP_DECLS (M1, M2, API)
#define SPARSE_MSM_BIN_OP_DECLS(R1, R2, M1, M2, API)

Definition at line 152 of file Sparse-op-decls.h.

◆ SPARSE_SMM_BIN_OP_DECLS

#define SPARSE_SMM_BIN_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, M1, M2, API); \
SPARSE_BIN_OP_DECL (R1, operator -, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, product, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, quotient, M1, M2, API);
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 159 of file Sparse-op-decls.h.

◆ SPARSE_SMM_BOOL_OP_DECLS

#define SPARSE_SMM_BOOL_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_BOOL_OP_DECL (mx_el_and, M1, M2, API); \
SPARSE_BOOL_OP_DECL (mx_el_or, M1, M2, API);
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86

Definition at line 177 of file Sparse-op-decls.h.

◆ SPARSE_SMM_CMP_OP_DECLS

#define SPARSE_SMM_CMP_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_lt, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_le, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ge, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_gt, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ne, M1, M2, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 165 of file Sparse-op-decls.h.

◆ SPARSE_SMM_EQNE_OP_DECLS

#define SPARSE_SMM_EQNE_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ne, M1, M2, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 173 of file Sparse-op-decls.h.

◆ SPARSE_SMM_OP_DECLS

#define SPARSE_SMM_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_SMM_BIN_OP_DECLS (R1, R2, M1, M2, API) \
SPARSE_SMM_CMP_OP_DECLS (M1, M2, API) \
SPARSE_SMM_BOOL_OP_DECLS (M1, M2, API)
#define SPARSE_SMM_BIN_OP_DECLS(R1, R2, M1, M2, API)

Definition at line 181 of file Sparse-op-decls.h.

◆ SPARSE_SMS_BIN_OP_DECLS

#define SPARSE_SMS_BIN_OP_DECLS (   R1,
  R2,
  M,
  S,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, M, S, API); \
SPARSE_BIN_OP_DECL (R1, operator -, M, S, API); \
SPARSE_BIN_OP_DECL (R2, operator *, M, S, API); \
SPARSE_BIN_OP_DECL (R2, operator /, M, S, API);
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 43 of file Sparse-op-decls.h.

◆ SPARSE_SMS_BOOL_OP_DECLS

#define SPARSE_SMS_BOOL_OP_DECLS (   M,
  S,
  API 
)
Value:
SPARSE_BOOL_OP_DECL (mx_el_or, M, S, API);
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M

Definition at line 61 of file Sparse-op-decls.h.

◆ SPARSE_SMS_CMP_OP_DECLS

#define SPARSE_SMS_CMP_OP_DECLS (   M,
  S,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_le, M, S, API); \
SPARSE_CMP_OP_DECL (mx_el_ge, M, S, API); \
SPARSE_CMP_OP_DECL (mx_el_gt, M, S, API); \
SPARSE_CMP_OP_DECL (mx_el_eq, M, S, API); \
SPARSE_CMP_OP_DECL (mx_el_ne, M, S, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 49 of file Sparse-op-decls.h.

◆ SPARSE_SMS_EQNE_OP_DECLS

#define SPARSE_SMS_EQNE_OP_DECLS (   M,
  S,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_ne, M, S, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 57 of file Sparse-op-decls.h.

◆ SPARSE_SMS_OP_DECLS

#define SPARSE_SMS_OP_DECLS (   R1,
  R2,
  M,
  S,
  API 
)
Value:
SPARSE_SMS_BIN_OP_DECLS (R1, R2, M, S, API) \
SPARSE_SMS_CMP_OP_DECLS (M, S, API) \
SPARSE_SMS_BOOL_OP_DECLS (M, S, API)
#define SPARSE_SMS_BIN_OP_DECLS(R1, R2, M, S, API)
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M

Definition at line 65 of file Sparse-op-decls.h.

◆ SPARSE_SMSM_BIN_OP_DECLS

#define SPARSE_SMSM_BIN_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, M1, M2, API); \
SPARSE_BIN_OP_DECL (R1, operator -, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, product, M1, M2, API); \
SPARSE_BIN_OP_DECL (R2, quotient, M1, M2, API);
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:150
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 101 of file Sparse-op-decls.h.

◆ SPARSE_SMSM_BOOL_OP_DECLS

#define SPARSE_SMSM_BOOL_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_BOOL_OP_DECL (mx_el_and, M1, M2, API); \
SPARSE_BOOL_OP_DECL (mx_el_or, M1, M2, API);
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86

Definition at line 119 of file Sparse-op-decls.h.

◆ SPARSE_SMSM_CMP_OP_DECLS

#define SPARSE_SMSM_CMP_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_lt, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_le, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ge, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_gt, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ne, M1, M2, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 107 of file Sparse-op-decls.h.

◆ SPARSE_SMSM_EQNE_OP_DECLS

#define SPARSE_SMSM_EQNE_OP_DECLS (   M1,
  M2,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_eq, M1, M2, API); \
SPARSE_CMP_OP_DECL (mx_el_ne, M1, M2, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 115 of file Sparse-op-decls.h.

◆ SPARSE_SMSM_OP_DECLS

#define SPARSE_SMSM_OP_DECLS (   R1,
  R2,
  M1,
  M2,
  API 
)
Value:
SPARSE_SMSM_BIN_OP_DECLS (R1, R2, M1, M2, API) \
SPARSE_SMSM_CMP_OP_DECLS (M1, M2, API) \
SPARSE_SMSM_BOOL_OP_DECLS (M1, M2, API)
#define SPARSE_SMSM_BIN_OP_DECLS(R1, R2, M1, M2, API)

Definition at line 123 of file Sparse-op-decls.h.

◆ SPARSE_SSM_BIN_OP_DECLS

#define SPARSE_SSM_BIN_OP_DECLS (   R1,
  R2,
  S,
  M,
  API 
)
Value:
SPARSE_BIN_OP_DECL (R1, operator +, S, M, API); \
SPARSE_BIN_OP_DECL (R1, operator -, S, M, API); \
SPARSE_BIN_OP_DECL (R2, operator *, S, M, API); \
SPARSE_BIN_OP_DECL (R2, operator /, S, M, API);
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
#define SPARSE_BIN_OP_DECL(R, OP, X, Y, API)

Definition at line 72 of file Sparse-op-decls.h.

◆ SPARSE_SSM_BOOL_OP_DECLS

#define SPARSE_SSM_BOOL_OP_DECLS (   S,
  M,
  API 
)
Value:
SPARSE_BOOL_OP_DECL (mx_el_or, S, M, API); \
#define SPARSE_BOOL_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:86
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M

Definition at line 90 of file Sparse-op-decls.h.

◆ SPARSE_SSM_CMP_OP_DECLS

#define SPARSE_SSM_CMP_OP_DECLS (   S,
  M,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_le, S, M, API); \
SPARSE_CMP_OP_DECL (mx_el_ge, S, M, API); \
SPARSE_CMP_OP_DECL (mx_el_gt, S, M, API); \
SPARSE_CMP_OP_DECL (mx_el_eq, S, M, API); \
SPARSE_CMP_OP_DECL (mx_el_ne, S, M, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 78 of file Sparse-op-decls.h.

◆ SPARSE_SSM_EQNE_OP_DECLS

#define SPARSE_SSM_EQNE_OP_DECLS (   S,
  M,
  API 
)
Value:
SPARSE_CMP_OP_DECL (mx_el_ne, S, M, API);
#define SPARSE_CMP_OP_DECL(OP, X, Y, API)
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:89

Definition at line 86 of file Sparse-op-decls.h.

◆ SPARSE_SSM_OP_DECLS

#define SPARSE_SSM_OP_DECLS (   R1,
  R2,
  S,
  M,
  API 
)
Value:
SPARSE_SSM_BIN_OP_DECLS (R1, R2, S, M, API) \
SPARSE_SSM_CMP_OP_DECLS (S, M, API) \
SPARSE_SSM_BOOL_OP_DECLS (S, M, API) \
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT & M
#define SPARSE_SSM_BIN_OP_DECLS(R1, R2, S, M, API)

Definition at line 94 of file Sparse-op-decls.h.