Types

Equations

Equations are specified as binary trees with the Node type. Operators defined in Base are re-defined for Node types, so that one can use, e.g., t=Node(1) * 3f0 to create a tree.

Missing docstring.

Missing docstring for Node(op::Int, l::Union{AbstractFloat, Int}). Check Documenter's build log for details.

Missing docstring.

Missing docstring for Node(op::Int, l::Union{AbstractFloat, Int}, r::Node). Check Documenter's build log for details.

Missing docstring.

Missing docstring for Node(op::Int, l::Node, r::Union{AbstractFloat, Int}). Check Documenter's build log for details.

Population

Groups of equations are given as a population, which is an array of trees tagged with score, loss, and birthdate–-these values are given in the PopMember.

Population members

Missing docstring.

Missing docstring for PopMember(t::Node, score::T, loss::T) where {T<:Real}. Check Documenter's build log for details.

Missing docstring.

Missing docstring for PopMember(dataset::Dataset{T}, baseline::T, t::Node, options::Options) where {T<:Real}. Check Documenter's build log for details.

Hall of Fame

Missing docstring.

Missing docstring for HallOfFame(options::Options). Check Documenter's build log for details.

Dataset