SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
VectorResult.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) 2013 Soumyajit De
8  */
9 
10 #ifndef VECTOR_RESULT_H_
11 #define VECTOR_RESULT_H_
12 
13 #include <shogun/lib/config.h>
14 
15 #include <shogun/lib/SGVector.h>
17 #include <shogun/base/SGObject.h>
18 
19 namespace shogun
20 {
24 template<class T> class CVectorResult : public CJobResult
25 {
27 typedef bool supports_complex128_t;
28 
29 public:
32  : CJobResult()
33  {
34  init();
35  }
36 
40  CVectorResult(SGVector<T> vector_result)
41  : CJobResult()
42  {
43  init();
44 
45  m_result = vector_result;
46  }
47 
49  virtual ~CVectorResult()
50  {
51  }
52 
54  virtual const char* get_name() const
55  {
56  return "VectorResult";
57  }
58 
61  {
62  return m_result;
63  }
64 
65 protected:
68 
69 private:
71  void init()
72  {
73  set_generic<T>();
74 
75  SG_ADD(&m_result, "vector_result",
76  "The result vector", MS_NOT_AVAILABLE);
77  }
78 };
79 }
80 
81 #endif // VECTOR_RESULT_H_
Base class that stores the result of an independent job.
Definition: JobResult.h:21
SGVector< T > m_result
Definition: VectorResult.h:67
shogun vector
SGVector< T > get_result() const
Definition: VectorResult.h:60
virtual ~CVectorResult()
Definition: VectorResult.h:49
virtual const char * get_name() const
Definition: VectorResult.h:54
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
#define SG_ADD(...)
Definition: SGObject.h:81
CVectorResult(SGVector< T > vector_result)
Definition: VectorResult.h:40

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