Feat C++ API
A feature engineering automation tool
n_not.h
Go to the documentation of this file.
1 /* FEAT
2 copyright 2017 William La Cava
3 license: GNU/GPL v3
4 */
5 #ifndef NODE_NOT
6 #define NODE_NOT
7 
8 #include "../node.h"
9 
10 namespace FT{
11 
12 
13  namespace Pop{
14  namespace Op{
15  class NodeNot : public Node
16  {
17  public:
18 
19  NodeNot();
20 
22  void evaluate(const Data& data, State& state);
23 
25  void eval_eqn(State& state);
26 
27  protected:
28  NodeNot* clone_impl() const override;
29 
30  NodeNot* rnd_clone_impl() const override;
31  };
32  }
33  }
34 
35 }
36 
37 #endif
data holding X, y, and Z data
Definition: data.h:42
NodeNot * rnd_clone_impl() const override
Definition: n_not.cc:41
NodeNot * clone_impl() const override
Definition: n_not.cc:39
void eval_eqn(State &state)
Evaluates the node symbolically.
Definition: n_not.cc:34
void evaluate(const Data &data, State &state)
Evaluates the node and updates the state states.
Definition: n_not.cc:22
Represents nodes in a program.
Definition: node.h:54
main Feat namespace
Definition: data.cc:13
contains various types of State actually used by feat
Definition: state.h:102