Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/attributes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -920,8 +920,11 @@ most recent call to [`compute_conflict!`](@ref).
Possible values are:
* `COMPUTE_CONFLICT_NOT_CALLED`: the function [`compute_conflict!`](@ref) has
not yet been called
* `NO_CONFLICT_EXISTS`: there is no conflict because the problem is feasible
* `NO_CONFLICT_FOUND`: the solver could not find a conflict
* `NO_CONFLICT_EXISTS`: there is no conflict available, because the solver could
prove that the problem is feasible (i.e. there are no conflicts)
* `NO_CONFLICT_FOUND`: there is no conflict available, because the function
[`compute_conflict!`](@ref) has failed to completely execute (e.g., because it
met a time limit)
* `CONFLICT_FOUND`: at least one conflict could be found
"""
@enum ConflictStatusCode begin
Expand Down