SHOGUN
v3.2.0
首页
模块
类
文件
文件列表
文件成员
全部
类
命名空间
文件
函数
变量
类型定义
枚举
枚举值
友元
宏定义
组
src
shogun
lib
StructuredDataTypes.h
浏览该文件的文档.
1
/*
2
* This program is free software; you can redistribute it and/or modify
3
* it under the terms of the GNU General Public License as published by
4
* the Free Software Foundation; either version 3 of the License, or
5
* (at your option) any later version.
6
*
7
* Written (W) 2012 Fernando José Iglesias García
8
* Copyright (C) 2012 Fernando José Iglesias García
9
*/
10
11
#ifndef _STRUCTURED_DATA_TYPES__H__
12
#define _STRUCTURED_DATA_TYPES__H__
13
14
namespace
shogun
{
15
17
enum
EStructuredDataType
18
{
19
SDT_UNKNOWN
= 0,
20
SDT_REAL
= 1,
21
SDT_SEQUENCE
= 2,
22
SDT_FACTOR_GRAPH
= 3
23
};
24
25
#define STRUCTURED_DATA_TYPE(SDT) \
26
\
30
virtual EStructuredDataType get_structured_data_type() const { return SDT; }
31
}
32
33
#endif
/* _STRUCTURED_DATA_TYPES__H__ */
shogun::SDT_SEQUENCE
Definition:
StructuredDataTypes.h:21
shogun::SDT_REAL
Definition:
StructuredDataTypes.h:20
shogun::EStructuredDataType
EStructuredDataType
Definition:
StructuredDataTypes.h:17
shogun
all of classes and functions are contained in the shogun namespace
Definition:
class_list.h:16
shogun::SDT_FACTOR_GRAPH
Definition:
StructuredDataTypes.h:22
shogun::SDT_UNKNOWN
Definition:
StructuredDataTypes.h:19
SHOGUN
Machine Learning Toolbox - Documentation