Feat C++ API
A feature engineering automation tool
selection_operator.cc
Go to the documentation of this file.
1 /* FEWTWO
2 copyright 2017 William La Cava
3 license: GNU/GPL v3
4 */
5 
6 #include "selection_operator.h"
7 
8 namespace FT{
9 namespace Sel{
10 
12 
14  const Parameters& p, const Data& d)
15 {
16  THROW_INVALID_ARGUMENT("Undefined select() operation");
17  return vector<size_t>();
18 }
19 
21  const Parameters& p, const Data& d)
22 {
23  THROW_INVALID_ARGUMENT("Undefined select() operation");
24  return vector<size_t>();
25 }
26 
27 }
28 
29 }
30 
data holding X, y, and Z data
Definition: data.h:42
#define THROW_INVALID_ARGUMENT(err)
Definition: error.h:31
T pop(vector< T > *v)
Definition: auto_backprop.h:49
main Feat namespace
Definition: data.cc:13
holds the hyperparameters for Feat.
Definition: params.h:25
Defines a population of programs and functions for constructing them.
Definition: population.h:28
virtual vector< size_t > survive(Population &pop, const Parameters &p, const Data &d)
virtual vector< size_t > select(Population &pop, const Parameters &p, const Data &d)