9 lines
218 B
Julia
9 lines
218 B
Julia
|
"""
|
||
|
GreedyOptimizer
|
||
|
|
||
|
An implementation of the greedy optimization algorithm, simply choosing the best next option evaluated with the given estimator.
|
||
|
"""
|
||
|
struct GreedyOptimizer
|
||
|
estimator::AbstractEstimator
|
||
|
end
|