Go to the source code of this file.
Defines | |
#define | BIN_OP_DECL(R, OP, X, Y, API) extern API R OP (const X&, const Y&) |
#define | BOOL_OP_DECL(OP, X, Y, API) extern API boolMatrix OP (const X&, const Y&) |
#define | CMP_OP_DECL(OP, X, Y, API) extern API boolMatrix OP (const X&, const Y&) |
#define | DMDM_BIN_OP_DECLS(R, DM1, DM2, API) |
#define | DMDM_OP_DECLS(R, DM1, DM2, API) DMDM_BIN_OP_DECLS (R, DM1, DM2, API) |
#define | DMM_BIN_OP_DECLS(R, DM, M, API) |
#define | DMM_OP_DECLS(R, DM, M, API) DMM_BIN_OP_DECLS(R, DM, M, API) |
#define | DMS_BIN_OP_DECLS(R, DM, S, API) |
#define | DMS_OP_DECLS(R, DM, S, API) DMS_BIN_OP_DECLS(R, DM, S, API) |
#define | MDM_BIN_OP_DECLS(R, M, DM, API) |
#define | MDM_OP_DECLS(R, M, DM, API) MDM_BIN_OP_DECLS(R, M, DM, API) |
#define | MINMAX_DECLS(T, S, API) |
#define | MM_BIN_OP_DECLS(R, M1, M2, API) |
#define | MM_BOOL_OP_DECLS(M1, M2, API) |
#define | MM_CMP_OP_DECLS(M1, M2, API) |
#define | MM_OP_DECLS(R, M1, M2, API) |
#define | MPM_BIN_OP_DECLS(R, M, PM, API) BIN_OP_DECL (R, operator *, M, PM, API); |
#define | MS_BIN_OP_DECLS(R, M, S, API) |
#define | MS_BOOL_OP_DECLS(M, S, API) |
#define | MS_CMP_OP_DECLS(M, S, API) |
#define | MS_OP_DECLS(R, M, S, API) |
#define | NDBOOL_OP_DECL(OP, X, Y, API) extern API boolNDArray OP (const X&, const Y&) |
#define | NDCMP_OP_DECL(OP, X, Y, API) extern API boolNDArray OP (const X&, const Y&) |
#define | NDND_BIN_OP_DECLS(R, ND1, ND2, API) |
#define | NDND_BOOL_OP_DECLS(ND1, ND2, API) |
#define | NDND_CMP_OP_DECLS(ND1, ND2, API) |
#define | NDND_OP_DECLS(R, ND1, ND2, API) |
#define | NDS_BIN_OP_DECLS(R, ND, S, API) |
#define | NDS_BOOL_OP_DECLS(ND, S, API) |
#define | NDS_CMP_OP_DECLS(ND, S, API) |
#define | NDS_OP_DECLS(R, ND, S, API) |
#define | PMM_BIN_OP_DECLS(R, PM, M, API) BIN_OP_DECL (R, operator *, PM, M, API); |
#define | SDM_BIN_OP_DECLS(R, S, DM, API) BIN_OP_DECL (R, operator *, S, DM, API); \ |
#define | SDM_OP_DECLS(R, S, DM, API) SDM_BIN_OP_DECLS(R, S, DM, API) |
#define | SM_BIN_OP_DECLS(R, S, M, API) |
#define | SM_BOOL_OP_DECLS(S, M, API) |
#define | SM_CMP_OP_DECLS(S, M, API) |
#define | SM_OP_DECLS(R, S, M, API) |
#define | SND_BIN_OP_DECLS(R, S, ND, API) |
#define | SND_BOOL_OP_DECLS(S, ND, API) |
#define | SND_CMP_OP_DECLS(S, ND, API) |
#define | SND_OP_DECLS(R, S, ND, API) |
#define | SV_BIN_OP_DECLS(R, S, V, API) |
#define | SV_OP_DECLS(R, S, V, API) SV_BIN_OP_DECLS(R, S, V, API) |
#define | VS_BIN_OP_DECLS(R, V, S, API) |
#define | VS_OP_DECLS(R, V, S, API) VS_BIN_OP_DECLS(R, V, S, API) |
#define | VV_BIN_OP_DECLS(R, V1, V2, API) |
#define | VV_OP_DECLS(R, V1, V2, API) VV_BIN_OP_DECLS(R, V1, V2, API) |
#define BIN_OP_DECL | ( | R, | ||
OP, | ||||
X, | ||||
Y, | ||||
API | ||||
) | extern API R OP (const X&, const Y&) |
Definition at line 28 of file mx-op-decl.h.
#define BOOL_OP_DECL | ( | OP, | ||
X, | ||||
Y, | ||||
API | ||||
) | extern API boolMatrix OP (const X&, const Y&) |
Definition at line 40 of file mx-op-decl.h.
#define CMP_OP_DECL | ( | OP, | ||
X, | ||||
Y, | ||||
API | ||||
) | extern API boolMatrix OP (const X&, const Y&) |
Definition at line 34 of file mx-op-decl.h.
#define DMDM_BIN_OP_DECLS | ( | R, | ||
DM1, | ||||
DM2, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, DM1, DM2, API); \ BIN_OP_DECL (R, operator -, DM1, DM2, API); \ BIN_OP_DECL (R, product, DM1, DM2, API);
Definition at line 276 of file mx-op-decl.h.
#define DMDM_OP_DECLS | ( | R, | ||
DM1, | ||||
DM2, | ||||
API | ||||
) | DMDM_BIN_OP_DECLS (R, DM1, DM2, API) |
Definition at line 281 of file mx-op-decl.h.
#define DMM_BIN_OP_DECLS | ( | R, | ||
DM, | ||||
M, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, DM, M, API); \ BIN_OP_DECL (R, operator -, DM, M, API); \ BIN_OP_DECL (R, operator *, DM, M, API);
Definition at line 266 of file mx-op-decl.h.
Definition at line 271 of file mx-op-decl.h.
#define DMS_BIN_OP_DECLS | ( | R, | ||
DM, | ||||
S, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator *, DM, S, API); \ BIN_OP_DECL (R, operator /, DM, S, API);
Definition at line 247 of file mx-op-decl.h.
#define DMS_OP_DECLS | ( | R, | ||
DM, | ||||
S, | ||||
API | ||||
) | DMS_BIN_OP_DECLS(R, DM, S, API) |
Definition at line 251 of file mx-op-decl.h.
#define MDM_BIN_OP_DECLS | ( | R, | ||
M, | ||||
DM, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, M, DM, API); \ BIN_OP_DECL (R, operator -, M, DM, API); \ BIN_OP_DECL (R, operator *, M, DM, API);
Definition at line 256 of file mx-op-decl.h.
Definition at line 261 of file mx-op-decl.h.
#define MINMAX_DECLS | ( | T, | ||
S, | ||||
API | ||||
) |
#define MM_BIN_OP_DECLS | ( | R, | ||
M1, | ||||
M2, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, M1, M2, API); \ BIN_OP_DECL (R, operator -, M1, M2, API); \ BIN_OP_DECL (R, product, M1, M2, API); \ BIN_OP_DECL (R, quotient, M1, M2, API);
Definition at line 131 of file mx-op-decl.h.
#define MM_BOOL_OP_DECLS | ( | M1, | ||
M2, | ||||
API | ||||
) |
BOOL_OP_DECL (mx_el_and, M1, M2, API); \ BOOL_OP_DECL (mx_el_or, M1, M2, API);
Definition at line 145 of file mx-op-decl.h.
#define MM_CMP_OP_DECLS | ( | M1, | ||
M2, | ||||
API | ||||
) |
CMP_OP_DECL (mx_el_lt, M1, M2, API); \ CMP_OP_DECL (mx_el_le, M1, M2, API); \ CMP_OP_DECL (mx_el_ge, M1, M2, API); \ CMP_OP_DECL (mx_el_gt, M1, M2, API); \ CMP_OP_DECL (mx_el_eq, M1, M2, API); \ CMP_OP_DECL (mx_el_ne, M1, M2, API);
Definition at line 137 of file mx-op-decl.h.
#define MM_OP_DECLS | ( | R, | ||
M1, | ||||
M2, | ||||
API | ||||
) |
MM_BIN_OP_DECLS (R, M1, M2, API) \ MM_CMP_OP_DECLS (M1, M2, API) \ MM_BOOL_OP_DECLS (M1, M2, API)
Definition at line 149 of file mx-op-decl.h.
Definition at line 299 of file mx-op-decl.h.
#define MS_BIN_OP_DECLS | ( | R, | ||
M, | ||||
S, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, M, S, API); \ BIN_OP_DECL (R, operator -, M, S, API); \ BIN_OP_DECL (R, operator *, M, S, API); \ BIN_OP_DECL (R, operator /, M, S, API);
Definition at line 81 of file mx-op-decl.h.
#define MS_BOOL_OP_DECLS | ( | M, | ||
S, | ||||
API | ||||
) |
BOOL_OP_DECL (mx_el_and, M, S, API); \ BOOL_OP_DECL (mx_el_or, M, S, API); \
Definition at line 95 of file mx-op-decl.h.
#define MS_CMP_OP_DECLS | ( | M, | ||
S, | ||||
API | ||||
) |
CMP_OP_DECL (mx_el_lt, M, S, API); \ CMP_OP_DECL (mx_el_le, M, S, API); \ CMP_OP_DECL (mx_el_ge, M, S, API); \ CMP_OP_DECL (mx_el_gt, M, S, API); \ CMP_OP_DECL (mx_el_eq, M, S, API); \ CMP_OP_DECL (mx_el_ne, M, S, API);
Definition at line 87 of file mx-op-decl.h.
#define MS_OP_DECLS | ( | R, | ||
M, | ||||
S, | ||||
API | ||||
) |
MS_BIN_OP_DECLS (R, M, S, API) \ MS_CMP_OP_DECLS (M, S, API) \ MS_BOOL_OP_DECLS (M, S, API) \
Definition at line 99 of file mx-op-decl.h.
#define NDBOOL_OP_DECL | ( | OP, | ||
X, | ||||
Y, | ||||
API | ||||
) | extern API boolNDArray OP (const X&, const Y&) |
Definition at line 43 of file mx-op-decl.h.
#define NDCMP_OP_DECL | ( | OP, | ||
X, | ||||
Y, | ||||
API | ||||
) | extern API boolNDArray OP (const X&, const Y&) |
Definition at line 37 of file mx-op-decl.h.
#define NDND_BIN_OP_DECLS | ( | R, | ||
ND1, | ||||
ND2, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, ND1, ND2, API); \ BIN_OP_DECL (R, operator -, ND1, ND2, API); \ BIN_OP_DECL (R, product, ND1, ND2, API); \ BIN_OP_DECL (R, quotient, ND1, ND2, API);
Definition at line 210 of file mx-op-decl.h.
#define NDND_BOOL_OP_DECLS | ( | ND1, | ||
ND2, | ||||
API | ||||
) |
NDBOOL_OP_DECL (mx_el_and, ND1, ND2, API); \ NDBOOL_OP_DECL (mx_el_or, ND1, ND2, API); \ NDBOOL_OP_DECL (mx_el_and_not, ND1, ND2, API); \ NDBOOL_OP_DECL (mx_el_or_not, ND1, ND2, API); \ NDBOOL_OP_DECL (mx_el_not_and, ND1, ND2, API); \ NDBOOL_OP_DECL (mx_el_not_or, ND1, ND2, API);
Definition at line 224 of file mx-op-decl.h.
#define NDND_CMP_OP_DECLS | ( | ND1, | ||
ND2, | ||||
API | ||||
) |
NDCMP_OP_DECL (mx_el_lt, ND1, ND2, API); \ NDCMP_OP_DECL (mx_el_le, ND1, ND2, API); \ NDCMP_OP_DECL (mx_el_ge, ND1, ND2, API); \ NDCMP_OP_DECL (mx_el_gt, ND1, ND2, API); \ NDCMP_OP_DECL (mx_el_eq, ND1, ND2, API); \ NDCMP_OP_DECL (mx_el_ne, ND1, ND2, API);
Definition at line 216 of file mx-op-decl.h.
#define NDND_OP_DECLS | ( | R, | ||
ND1, | ||||
ND2, | ||||
API | ||||
) |
NDND_BIN_OP_DECLS (R, ND1, ND2, API) \ NDND_CMP_OP_DECLS (ND1, ND2, API) \ NDND_BOOL_OP_DECLS (ND1, ND2, API)
Definition at line 232 of file mx-op-decl.h.
#define NDS_BIN_OP_DECLS | ( | R, | ||
ND, | ||||
S, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, ND, S, API); \ BIN_OP_DECL (R, operator -, ND, S, API); \ BIN_OP_DECL (R, operator *, ND, S, API); \ BIN_OP_DECL (R, operator /, ND, S, API);
Definition at line 156 of file mx-op-decl.h.
#define NDS_BOOL_OP_DECLS | ( | ND, | ||
S, | ||||
API | ||||
) |
NDBOOL_OP_DECL (mx_el_and, ND, S, API); \ NDBOOL_OP_DECL (mx_el_or, ND, S, API); \ NDBOOL_OP_DECL (mx_el_not_and, ND, S, API); \ NDBOOL_OP_DECL (mx_el_not_or, ND, S, API);
Definition at line 170 of file mx-op-decl.h.
#define NDS_CMP_OP_DECLS | ( | ND, | ||
S, | ||||
API | ||||
) |
NDCMP_OP_DECL (mx_el_lt, ND, S, API); \ NDCMP_OP_DECL (mx_el_le, ND, S, API); \ NDCMP_OP_DECL (mx_el_ge, ND, S, API); \ NDCMP_OP_DECL (mx_el_gt, ND, S, API); \ NDCMP_OP_DECL (mx_el_eq, ND, S, API); \ NDCMP_OP_DECL (mx_el_ne, ND, S, API);
Definition at line 162 of file mx-op-decl.h.
#define NDS_OP_DECLS | ( | R, | ||
ND, | ||||
S, | ||||
API | ||||
) |
NDS_BIN_OP_DECLS (R, ND, S, API) \ NDS_CMP_OP_DECLS (ND, S, API) \ NDS_BOOL_OP_DECLS (ND, S, API)
Definition at line 176 of file mx-op-decl.h.
Definition at line 296 of file mx-op-decl.h.
#define SDM_BIN_OP_DECLS | ( | R, | ||
S, | ||||
DM, | ||||
API | ||||
) | BIN_OP_DECL (R, operator *, S, DM, API); \ |
Definition at line 239 of file mx-op-decl.h.
#define SDM_OP_DECLS | ( | R, | ||
S, | ||||
DM, | ||||
API | ||||
) | SDM_BIN_OP_DECLS(R, S, DM, API) |
Definition at line 242 of file mx-op-decl.h.
#define SM_BIN_OP_DECLS | ( | R, | ||
S, | ||||
M, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, S, M, API); \ BIN_OP_DECL (R, operator -, S, M, API); \ BIN_OP_DECL (R, operator *, S, M, API); \ BIN_OP_DECL (R, operator /, S, M, API);
Definition at line 106 of file mx-op-decl.h.
#define SM_BOOL_OP_DECLS | ( | S, | ||
M, | ||||
API | ||||
) |
BOOL_OP_DECL (mx_el_and, S, M, API); \ BOOL_OP_DECL (mx_el_or, S, M, API); \
Definition at line 120 of file mx-op-decl.h.
#define SM_CMP_OP_DECLS | ( | S, | ||
M, | ||||
API | ||||
) |
CMP_OP_DECL (mx_el_lt, S, M, API); \ CMP_OP_DECL (mx_el_le, S, M, API); \ CMP_OP_DECL (mx_el_ge, S, M, API); \ CMP_OP_DECL (mx_el_gt, S, M, API); \ CMP_OP_DECL (mx_el_eq, S, M, API); \ CMP_OP_DECL (mx_el_ne, S, M, API);
Definition at line 112 of file mx-op-decl.h.
#define SM_OP_DECLS | ( | R, | ||
S, | ||||
M, | ||||
API | ||||
) |
SM_BIN_OP_DECLS (R, S, M, API) \ SM_CMP_OP_DECLS (S, M, API) \ SM_BOOL_OP_DECLS (S, M, API) \
Definition at line 124 of file mx-op-decl.h.
#define SND_BIN_OP_DECLS | ( | R, | ||
S, | ||||
ND, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, S, ND, API); \ BIN_OP_DECL (R, operator -, S, ND, API); \ BIN_OP_DECL (R, operator *, S, ND, API); \ BIN_OP_DECL (R, operator /, S, ND, API);
Definition at line 183 of file mx-op-decl.h.
#define SND_BOOL_OP_DECLS | ( | S, | ||
ND, | ||||
API | ||||
) |
NDBOOL_OP_DECL (mx_el_and, S, ND, API); \ NDBOOL_OP_DECL (mx_el_or, S, ND, API); \ NDBOOL_OP_DECL (mx_el_and_not, S, ND, API); \ NDBOOL_OP_DECL (mx_el_or_not, S, ND, API);
Definition at line 197 of file mx-op-decl.h.
#define SND_CMP_OP_DECLS | ( | S, | ||
ND, | ||||
API | ||||
) |
NDCMP_OP_DECL (mx_el_lt, S, ND, API); \ NDCMP_OP_DECL (mx_el_le, S, ND, API); \ NDCMP_OP_DECL (mx_el_ge, S, ND, API); \ NDCMP_OP_DECL (mx_el_gt, S, ND, API); \ NDCMP_OP_DECL (mx_el_eq, S, ND, API); \ NDCMP_OP_DECL (mx_el_ne, S, ND, API);
Definition at line 189 of file mx-op-decl.h.
#define SND_OP_DECLS | ( | R, | ||
S, | ||||
ND, | ||||
API | ||||
) |
SND_BIN_OP_DECLS (R, S, ND, API) \ SND_CMP_OP_DECLS (S, ND, API) \ SND_BOOL_OP_DECLS (S, ND, API)
Definition at line 203 of file mx-op-decl.h.
#define SV_BIN_OP_DECLS | ( | R, | ||
S, | ||||
V, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, S, V, API); \ BIN_OP_DECL (R, operator -, S, V, API); \ BIN_OP_DECL (R, operator *, S, V, API); \ BIN_OP_DECL (R, operator /, S, V, API);
Definition at line 59 of file mx-op-decl.h.
Definition at line 65 of file mx-op-decl.h.
#define VS_BIN_OP_DECLS | ( | R, | ||
V, | ||||
S, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, V, S, API); \ BIN_OP_DECL (R, operator -, V, S, API); \ BIN_OP_DECL (R, operator *, V, S, API); \ BIN_OP_DECL (R, operator /, V, S, API);
Definition at line 48 of file mx-op-decl.h.
Definition at line 54 of file mx-op-decl.h.
#define VV_BIN_OP_DECLS | ( | R, | ||
V1, | ||||
V2, | ||||
API | ||||
) |
BIN_OP_DECL (R, operator +, V1, V2, API); \ BIN_OP_DECL (R, operator -, V1, V2, API); \ BIN_OP_DECL (R, product, V1, V2, API); \ BIN_OP_DECL (R, quotient, V1, V2, API);
Definition at line 70 of file mx-op-decl.h.
#define VV_OP_DECLS | ( | R, | ||
V1, | ||||
V2, | ||||
API | ||||
) | VV_BIN_OP_DECLS(R, V1, V2, API) |
Definition at line 76 of file mx-op-decl.h.