File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -1891,6 +1891,14 @@ attribute_value_type(::ConflictStatus) = ConflictStatusCode
18911891
18921892An [`AbstractModelAttribute`](@ref) for the number of conflicts found by the
18931893solver in the most recent call to [`compute_conflict!`](@ref).
1894+
1895+ ## Implementation
1896+
1897+ Optimizers should implement the following methods:
1898+ ```julia
1899+ MOI.get(::Optimizer, ::MOI.ConflictCount)::Int
1900+ ```
1901+ They should not implement [`set`](@ref) or [`supports`](@ref).
18941902"""
18951903struct ConflictCount <: AbstractModelAttribute end
18961904
@@ -2745,7 +2753,11 @@ will throw a [`ResultIndexBoundsError`](@ref).
27452753
27462754Optimizers should implement the following methods:
27472755```julia
2748- MOI.get(::Optimizer, ::MOI.ConstraintConflictStatus, ::MOI.ConstraintIndex)::T
2756+ MOI.get(
2757+ ::Optimizer,
2758+ ::MOI.ConstraintConflictStatus,
2759+ ::MOI.ConstraintIndex,
2760+ )::ConflictParticipationStatusCode
27492761```
27502762They should not implement [`set`](@ref) or [`supports`](@ref).
27512763"""
You can’t perform that action at this time.
0 commit comments