| 217 | static inline bool isReciprocal(const MatExpr& e) { return isBin(e,'/') && (!e.b.data || e.beta == 0); } |
| 218 | static inline bool isT(const MatExpr& e) { return e.op == &g_MatOp_T; } |
| 219 | static inline bool isInv(const MatExpr& e) { return e.op == &g_MatOp_Invert; } |
| 220 | static inline bool isSolve(const MatExpr& e) { return e.op == &g_MatOp_Solve; } |
| 221 | static inline bool isGEMM(const MatExpr& e) { return e.op == &g_MatOp_GEMM; } |
| 222 | static inline bool isMatProd(const MatExpr& e) { return e.op == &g_MatOp_GEMM && (!e.c.data || e.beta == 0); } |