Skip to content

Commit 075187c

Browse files
committed
Update
1 parent ad64448 commit 075187c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/attributes.jl

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ MOI.get(
811811
)::Vector{MOI.AbstractOptimizerAttribute}
812812
```
813813
814-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
814+
They should not implement [`set`](@ref) or [`supports`](@ref).
815815
"""
816816
struct ListOfOptimizerAttributesSet <: AbstractOptimizerAttribute end
817817

@@ -826,7 +826,7 @@ Optimizers should implement the following methods:
826826
```julia
827827
MOI.get(::Optimizer, ::MOI.SolverName)::String
828828
```
829-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
829+
They should not implement [`set`](@ref) or [`supports`](@ref).
830830
"""
831831
struct SolverName <: AbstractOptimizerAttribute end
832832

@@ -855,7 +855,7 @@ Optimizers should implement the following methods:
855855
```julia
856856
MOI.get(::Optimizer, ::MOI.SolverVersion)::String
857857
```
858-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
858+
They should not implement [`set`](@ref) or [`supports`](@ref).
859859
"""
860860
struct SolverVersion <: AbstractOptimizerAttribute end
861861

@@ -1394,7 +1394,7 @@ Optimizers should implement the following methods:
13941394
MOI.get(::Optimizer, ::MOI.NumberOfVariables)::Int64
13951395
```
13961396
1397-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
1397+
They should not implement [`set`](@ref) or [`supports`](@ref).
13981398
"""
13991399
struct NumberOfVariables <: AbstractModelAttribute end
14001400

@@ -1417,7 +1417,7 @@ Optimizers should implement the following methods:
14171417
```julia
14181418
MOI.get(::Optimizer, ::MOI.ListOfVariableIndices)::Vector{MOI.VariableIndex}
14191419
```
1420-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
1420+
They should not implement [`set`](@ref) or [`supports`](@ref).
14211421
"""
14221422
struct ListOfVariableIndices <: AbstractModelAttribute end
14231423

@@ -1441,7 +1441,7 @@ function MOI.get(
14411441
::MOI.ListOfConstraintIndices{F,S},
14421442
)::Vector{MOI.ConstraintIndex{F,S}} where {F<:MOI.AbstractFunction,MOI.AbstractSet}
14431443
```
1444-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
1444+
They should not implement [`set`](@ref) or [`supports`](@ref).
14451445
"""
14461446
struct ListOfConstraintIndices{F,S} <: AbstractModelAttribute end
14471447

@@ -1474,7 +1474,7 @@ function MOI.get(
14741474
::MOI.NumberOfConstraints{F,S},
14751475
)::Int64 where {F<:MOI.AbstractFunction,MOI.AbstractSet}
14761476
```
1477-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
1477+
They should not implement [`set`](@ref) or [`supports`](@ref).
14781478
"""
14791479
struct NumberOfConstraints{F,S} <: AbstractModelAttribute end
14801480

@@ -1507,7 +1507,7 @@ function MOI.get(
15071507
::MOI.ListOfConstraintTypesPresent,
15081508
)::Vector{Tuple{Type,Type}}
15091509
```
1510-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
1510+
They should not implement [`set`](@ref) or [`supports`](@ref).
15111511
"""
15121512
struct ListOfConstraintTypesPresent <: AbstractModelAttribute end
15131513

@@ -1556,7 +1556,7 @@ function MOI.get(
15561556
::MOI.ObjectiveFunctionType,
15571557
)::Type{<:MOI.AbstractFunction}
15581558
```
1559-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
1559+
They should not implement [`set`](@ref) or [`supports`](@ref).
15601560
15611561
## Example
15621562
@@ -1611,7 +1611,7 @@ function MOI.get(
16111611
::MOI.ObjectiveValue,
16121612
)::Union{T,Vector{T}} where {T<:Real}
16131613
```
1614-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
1614+
They should not implement [`set`](@ref) or [`supports`](@ref).
16151615
"""
16161616
struct ObjectiveValue <: AbstractModelAttribute
16171617
result_index::Int
@@ -1651,7 +1651,7 @@ function MOI.get(
16511651
::MOI.DualObjectiveValue,
16521652
)::Union{T,Vector{T}} where {T<:Real}
16531653
```
1654-
They should not implement [`MOI.set`](@ref) or [`MOI.supports`](@ref).
1654+
They should not implement [`set`](@ref) or [`supports`](@ref).
16551655
"""
16561656
struct DualObjectiveValue <: AbstractModelAttribute
16571657
result_index::Int

0 commit comments

Comments
 (0)