SHOGUN  v2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Subset.cpp
Go to the documentation of this file.
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) 2011-2012 Heiko Strathmann
8  * Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society
9  */
10 
11 #include <shogun/features/Subset.h>
12 #include <shogun/base/Parameter.h>
13 
14 using namespace shogun;
15 
17 {
18  init();
19 }
20 
22 {
23  init();
24 
25  m_subset_idx=subset_idx;
26 }
27 
29 }
30 
31 void CSubset::init() {
32  SG_ADD((SGVector<index_t>*)&m_subset_idx, "subset",
33  "Vector of subset indices", MS_NOT_AVAILABLE);
34 
35  m_subset_idx=SGVector<index_t>();
36 }

SHOGUN Machine Learning Toolbox - Documentation