SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
宏定义
SGVector.cpp 文件参考

浏览源代码.

宏定义

#define COMPLEX128_ERROR_NOARG(function)
 
#define BOOL_ERROR_ONEARG(function)
 
#define COMPLEX128_ERROR_ONEARG(function)
 
#define COMPLEX128_ERROR_TWOARGS(function)
 
#define COMPLEX128_ERROR_THREEARGS(function)
 
#define UNDEFINED(function, type)
 

宏定义说明

#define BOOL_ERROR_ONEARG (   function)
值:
template <> \
void SGVector<bool>::function(bool a) \
{ \
SG_SERROR("SGVector::%s():: Not supported for bool\n",\
#function);\
}
#define SG_SERROR(...)
Definition: SGIO.h:179

在文件 SGVector.cpp37 行定义.

#define COMPLEX128_ERROR_NOARG (   function)
值:
template <> \
void SGVector<complex128_t>::function() \
{ \
SG_SERROR("SGVector::%s():: Not supported for complex128_t\n",\
#function);\
}
#define SG_SERROR(...)
Definition: SGIO.h:179

在文件 SGVector.cpp29 行定义.

#define COMPLEX128_ERROR_ONEARG (   function)
值:
template <> \
void SGVector<complex128_t>::function(complex128_t a) \
{ \
SG_SERROR("SGVector::%s():: Not supported for complex128_t\n",\
#function);\
}
std::complex< float64_t > complex128_t
Definition: common.h:67
#define SG_SERROR(...)
Definition: SGIO.h:179

在文件 SGVector.cpp45 行定义.

#define COMPLEX128_ERROR_THREEARGS (   function)
值:
template <> \
void SGVector<complex128_t>::function(complex128_t a, complex128_t b,\
{ \
SG_SERROR("SGVector::%s():: Not supported for complex128_t\n",\
#function);\
}
std::complex< float64_t > complex128_t
Definition: common.h:67
#define SG_SERROR(...)
Definition: SGIO.h:179

在文件 SGVector.cpp61 行定义.

#define COMPLEX128_ERROR_TWOARGS (   function)
值:
template <> \
void SGVector<complex128_t>::function(complex128_t a, complex128_t b) \
{ \
SG_SERROR("SGVector::%s():: Not supported for complex128_t\n",\
#function);\
}
std::complex< float64_t > complex128_t
Definition: common.h:67
#define SG_SERROR(...)
Definition: SGIO.h:179

在文件 SGVector.cpp53 行定义.

#define UNDEFINED (   function,
  type 
)
值:
template <> \
SGVector<float64_t> SGVector<type>::function() \
{ \
SG_SERROR("SGVector::%s():: Not supported for %s\n", \
#function, #type); \
SGVector<float64_t> ret(vlen); \
return ret; \
}
#define SG_SERROR(...)
Definition: SGIO.h:179

在文件 SGVector.cpp938 行定义.


SHOGUN 机器学习工具包 - 项目文档