File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -190,20 +190,20 @@ Abstract type interface for stochastic benchmark problems.
190190This type should be used for benchmarks that involve single stage stochastic optimization problems.
191191
192192It follows the same interface as [`AbstractBenchmark`](@ref), with the addition of the following methods:
193- - [`generate_anticipative_solver`](@ref)
193+ - TODO
194194"""
195195abstract type AbstractStochasticBenchmark{exogenous} <: AbstractBenchmark end
196196
197197is_exogenous (:: AbstractStochasticBenchmark{exogenous} ) where {exogenous} = exogenous
198198is_endogenous (:: AbstractStochasticBenchmark{exogenous} ) where {exogenous} = ! exogenous
199199
200200"""
201- generate_anticipative_solver (::AbstractStochasticBenchmark{true}, instance; kwargs...)
201+ generate_scenario (::AbstractStochasticBenchmark{true}, instance; kwargs...)
202202"""
203203function generate_scenario end
204204
205205"""
206- anticipative_policy (::AbstractStochasticBenchmark{true}, instance, scenario; kwargs...)
206+ generate_anticipative_solution (::AbstractStochasticBenchmark{true}, instance, scenario; kwargs...)
207207"""
208208function generate_anticipative_solution end
209209
You can’t perform that action at this time.
0 commit comments