📄 newet-macros.h
字号:
asExpr<sca >::T_expr, \ applic<_bz_typename asExpr<T>::T_expr::T_numtype,sca > > \ (asExpr<T>::getExpr(d1.unwrap()), \ asExpr<sca >::getExpr(d2)); \}/* * Array expression templates: the macro BZ_DECLARE_ARRAY_ET_TERNARY(X,Y) * declares a function or operator which takes three operands. * X is the function name (or operator), and Y is the functor object * which implements the operation. */#define BZ_DECLARE_ARRAY_ET_TERNARY(name, applic) \ \template<typename T1, typename T2, typename T3> \_bz_inline_et \_bz_ArrayExpr<_bz_ArrayExprTernaryOp< \ _bz_typename asExpr<T1>::T_expr, \ _bz_typename asExpr<T2>::T_expr, \ _bz_typename asExpr<T3>::T_expr, \ applic<_bz_typename asExpr<T1>::T_expr::T_numtype, \ _bz_typename asExpr<T2>::T_expr::T_numtype, \ _bz_typename asExpr<T3>::T_expr::T_numtype> > > \name(const ETBase<T1>& d1, const ETBase<T2>& d2, const ETBase<T3>& d3) \{ \ return _bz_ArrayExpr<_bz_ArrayExprTernaryOp< \ _bz_typename asExpr<T1>::T_expr, \ _bz_typename asExpr<T2>::T_expr, \ _bz_typename asExpr<T3>::T_expr, \ applic<_bz_typename asExpr<T1>::T_expr::T_numtype, \ _bz_typename asExpr<T2>::T_expr::T_numtype, \ _bz_typename asExpr<T3>::T_expr::T_numtype> > > \ (asExpr<T1>::getExpr(d1.unwrap()), \ asExpr<T2>::getExpr(d2.unwrap()), \ asExpr<T3>::getExpr(d3.unwrap())); \}#endif /* BZ_HAVE_TEMPLATES_AS_TEMPLATE_ARGUMENTS *//* * User-defined expression template routines */#define BZ_DECLARE_FUNCTION(name) \template <typename P_numtype> \struct name ## _impl { \ typedef P_numtype T_numtype; \ static inline T_numtype apply(P_numtype x) { return name(x); } \ template <typename T> \ static void prettyPrint(BZ_STD_SCOPE(string) &str, \ prettyPrintFormat& format, \ const T& a) { \ str += #name; \ str += "("; \ a.prettyPrint(str,format); \ str += ")"; \ } \}; \ \BZ_DECLARE_ARRAY_ET_UNARY(name,name ## _impl)#define BZ_DECLARE_FUNCTION_RET(name,return_type) \template <typename P_numtype> \struct name ## _impl { \ typedef return_type T_numtype; \ static inline T_numtype apply(P_numtype x) { return name(x); } \ template <typename T> \ static void prettyPrint(BZ_STD_SCOPE(string) &str, \ prettyPrintFormat& format, \ const T& a) { \ str += #name; \ str += "("; \ a.prettyPrint(str,format); \ str += ")"; \ } \}; \ \BZ_DECLARE_ARRAY_ET_UNARY(name,name ## _impl)#define BZ_DECLARE_FUNCTION2(name) \template <typename P_numtype1,typename P_numtype2> \struct name ## _impl { \ typedef BZ_PROMOTE(P_numtype1,P_numtype2) T_numtype; \ static inline T_numtype apply(P_numtype1 x,P_numtype2 y) { \ return name(x,y); \ } \ template <typename T1,typename T2> \ static void prettyPrint(BZ_STD_SCOPE(string) &str, \ prettyPrintFormat& format, \ const T1& a,const T2& b) { \ str += #name; \ str += "("; \ a.prettyPrint(str,format); \ str += ","; \ b.prettyPrint(str,format); \ str += ")"; \ } \}; \ \BZ_DECLARE_ARRAY_ET_BINARY(name, name ## _impl)#define BZ_DECLARE_FUNCTION2_RET(name, return_type) \template <typename P_numtype1,typename P_numtype2> \struct name ## _impl { \ typedef return_type T_numtype; \ static inline T_numtype apply(P_numtype1 x,P_numtype2 y) { \ return name(x,y); \ } \ template <typename T1,typename T2> \ static void prettyPrint(BZ_STD_SCOPE(string) &str, \ prettyPrintFormat& format, \ const T1& a,const T2& b) { \ str += #name; \ str += "("; \ a.prettyPrint(str,format); \ str += ","; \ b.prettyPrint(str,format); \ str += ")"; \ } \}; \ \BZ_DECLARE_ARRAY_ET_BINARY(name, name ## _impl)#define BZ_DECLARE_FUNCTION2_SCALAR(name, sca) \ \BZ_DECLARE_ARRAY_ET_BINARY_SCALAR(name, name ## _impl, sca)#define BZ_DECLARE_FUNCTION3(name) \template <typename P_numtype1, typename P_numtype2, typename P_numtype3> \struct name ## _impl { \ typedef BZ_PROMOTE(P_numtype1, \ BZ_PROMOTE(P_numtype2,P_numtype3)) T_numtype; \ static inline T_numtype \ apply(P_numtype1 x, P_numtype2 y, P_numtype3 z) { \ return name(x,y,z); \ } \ template <typename T1, typename T2, typename T3> \ static void prettyPrint(BZ_STD_SCOPE(string) &str, \ prettyPrintFormat& format, \ const T1& a,const T2& b, const T3& c) { \ str += #name; \ str += "("; \ a.prettyPrint(str,format); \ str += ","; \ b.prettyPrint(str,format); \ str += ","; \ c.prettyPrint(str,format); \ str += ")"; \ } \}; \ \BZ_DECLARE_ARRAY_ET_TERNARY(name, name ## _impl) #define BZ_DECLARE_FUNCTION3_RET(name, return_type) \template <typename P_numtype1, typename P_numtype2, typename P_numtype3> \struct name ## _impl { \ typedef return_type T_numtype; \ static inline T_numtype \ apply(P_numtype1 x, P_numtype2 y, P_numtype3 z) { \ return name(x,y,z); \ } \ template <typename T1, typename T2, typename T3> \ static void prettyPrint(BZ_STD_SCOPE(string) &str, \ prettyPrintFormat& format, \ const T1& a, const T2& b, const T3& c) { \ str += #name; \ str += "("; \ a.prettyPrint(str,format); \ str += ","; \ b.prettyPrint(str,format); \ str += ","; \ c.prettyPrint(str,format); \ str += ")"; \ } \}; \ \BZ_DECLARE_ARRAY_ET_TERNARY(name, name ## _impl)BZ_NAMESPACE_END#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -