Skip to content

Commit fd0e247

Browse files
committed
fix doc (again)
1 parent d9eaa8f commit fd0e247

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Utils/interface.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,20 +190,20 @@ Abstract type interface for stochastic benchmark problems.
190190
This type should be used for benchmarks that involve single stage stochastic optimization problems.
191191
192192
It follows the same interface as [`AbstractBenchmark`](@ref), with the addition of the following methods:
193-
- [`generate_anticipative_solver`](@ref)
193+
- TODO
194194
"""
195195
abstract type AbstractStochasticBenchmark{exogenous} <: AbstractBenchmark end
196196

197197
is_exogenous(::AbstractStochasticBenchmark{exogenous}) where {exogenous} = exogenous
198198
is_endogenous(::AbstractStochasticBenchmark{exogenous}) where {exogenous} = !exogenous
199199

200200
"""
201-
generate_anticipative_solver(::AbstractStochasticBenchmark{true}, instance; kwargs...)
201+
generate_scenario(::AbstractStochasticBenchmark{true}, instance; kwargs...)
202202
"""
203203
function generate_scenario end
204204

205205
"""
206-
anticipative_policy(::AbstractStochasticBenchmark{true}, instance, scenario; kwargs...)
206+
generate_anticipative_solution(::AbstractStochasticBenchmark{true}, instance, scenario; kwargs...)
207207
"""
208208
function generate_anticipative_solution end
209209

0 commit comments

Comments
 (0)