class holding the data for a node in a tree.
More...
#include <node.h>
class holding the data for a node in a tree.
Definition at line 84 of file node.h.
◆ HashTuple
Initial value: std::tuple<
size_t,
bool,
string,
bool,
int
>
std::underlying_type_t< NodeType > UnderlyingNodeType
tuple type for hashing
Definition at line 111 of file node.h.
◆ Node() [1/2]
◆ Node() [2/2]
template<typename S>
Brush::Node::Node |
( |
NodeType | type, |
|
|
S | signature, |
|
|
bool | weighted = false, |
|
|
string | feature_name = "" ) |
|
inlineexplicitnoexcept |
Constructor used by search space.
- Template Parameters
-
- Parameters
-
type | node type |
feature_name | name of the terminal |
signature | signature |
Definition at line 131 of file node.h.
◆ args_type()
std::size_t Brush::Node::args_type |
( |
| ) |
const |
|
inline |
◆ get_arg_count()
size_t Brush::Node::get_arg_count |
( |
| ) |
const |
|
inline |
◆ get_arg_types()
auto Brush::Node::get_arg_types |
( |
| ) |
const |
|
inline |
◆ get_feature()
string Brush::Node::get_feature |
( |
| ) |
const |
|
inline |
◆ get_is_weighted()
bool Brush::Node::get_is_weighted |
( |
| ) |
const |
|
inline |
◆ get_model()
◆ get_name()
auto Brush::Node::get_name |
( |
bool | include_weight = true | ) |
const |
|
noexcept |
gets a string version of the node for printing.
get the name of the node.
- Parameters
-
include_weight | whether to include the node's weight in the output. |
- Returns
- string version of the node.
-
name
Definition at line 20 of file node.cpp.
◆ get_node_hash()
size_t Brush::Node::get_node_hash |
( |
| ) |
const |
|
inline |
◆ get_prob_change()
float Brush::Node::get_prob_change |
( |
| ) |
const |
|
inline |
◆ get_prob_keep()
float Brush::Node::get_prob_keep |
( |
| ) |
const |
|
inline |
◆ get_ret_type()
DataType Brush::Node::get_ret_type |
( |
| ) |
const |
|
inline |
◆ init()
void Brush::Node::init |
( |
| ) |
|
|
inline |
◆ operator!=()
auto Brush::Node::operator!= |
( |
const Node & | rhs | ) |
const -> bool
|
|
inlinenoexcept |
◆ operator<()
auto Brush::Node::operator< |
( |
const Node & | rhs | ) |
const -> bool
|
|
inlinenoexcept |
◆ operator<=()
auto Brush::Node::operator<= |
( |
const Node & | rhs | ) |
const -> bool
|
|
inlinenoexcept |
◆ operator==()
auto Brush::Node::operator== |
( |
const Node & | rhs | ) |
const -> bool
|
|
inlinenoexcept |
◆ operator>()
auto Brush::Node::operator> |
( |
const Node & | rhs | ) |
const -> bool
|
|
inlinenoexcept |
◆ operator>=()
auto Brush::Node::operator>= |
( |
const Node & | rhs | ) |
const -> bool
|
|
inlinenoexcept |
◆ set_feature()
void Brush::Node::set_feature |
( |
string | f | ) |
|
|
inline |
◆ set_is_weighted()
void Brush::Node::set_is_weighted |
( |
bool | is_weighted | ) |
|
|
inline |
◆ set_prob_change()
void Brush::Node::set_prob_change |
( |
float | w | ) |
|
|
inline |
◆ set_signature()
template<typename S>
void Brush::Node::set_signature |
( |
| ) |
|
|
inline |
◆ arg_types
std::vector<DataType> Brush::Node::arg_types |
argument data types
Definition at line 103 of file node.h.
◆ center_op
bool Brush::Node::center_op |
whether to center the operator in pretty printing
Definition at line 89 of file node.h.
◆ feature
feature name for terminals or splitting nodes
Definition at line 256 of file node.h.
◆ fixed
whether node is modifiable
Definition at line 93 of file node.h.
◆ is_weighted
bool Brush::Node::is_weighted |
whether this node is weighted
Definition at line 105 of file node.h.
◆ name
full name of the node, with types
Definition at line 87 of file node.h.
◆ node_type
the node type
Definition at line 95 of file node.h.
◆ prob_change
float Brush::Node::prob_change |
chance of node being selected for variation
Definition at line 91 of file node.h.
◆ ret_type
return data type
Definition at line 101 of file node.h.
◆ sig_dual_hash
std::size_t Brush::Node::sig_dual_hash |
a hash of the dual of the signature (for NLS)
Definition at line 99 of file node.h.
◆ sig_hash
std::size_t Brush::Node::sig_hash |
a hash of the signature
Definition at line 97 of file node.h.
the weights of the node. also used for splitting thresholds.
Definition at line 107 of file node.h.
The documentation for this struct was generated from the following files: