Skip to content

Commit

Permalink
Update README with support attributes (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Sep 8, 2023
1 parent e0ee32b commit b7b754a
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,41 @@ List of supported constraint types:

List of supported model attributes:

* [`MOI.ObjectiveSense()`](@ref)
* `Cbc.Status`
* `Cbc.SecondaryStatus`
* [`MOI.DualStatus`](@ref)
* [`MOI.NodeCount`](@ref)
* [`MOI.NumberOfVariables`](@ref)
* [`MOI.ObjectiveBound`](@ref)
* [`MOI.ObjectiveSense`](@ref)
* [`MOI.ObjectiveValue`](@ref)
* [`MOI.PrimalStatus`](@ref)
* [`MOI.RelativeGap`](@ref)
* [`MOI.ResultCount`](@ref)
* [`MOI.SolveTimeSec`](@ref)
* [`MOI.TerminationStatus`](@ref)

List of supported optimizer attributes:

* `Cbc.SetVariableNames`
* [`MOI.AbsoluteGapTolerance`](@ref)
* [`MOI.NumberOfThreads`](@ref)
* [`MOI.RawOptimizerAttribute`](@ref)
* [`MOI.RelativeGapTolerance`](@ref)
* [`MOI.Silent`](@ref)
* [`MOI.SolverName`](@ref)
* [`MOI.SolverVersion`](@ref)
* [`MOI.TimeLimitSec`](@ref)

List of supported variable attributes:

* [`MOI.VariablePrimal`](@ref)
* [`MOI.VariablePrimalStart`](@ref)
* [`MOI.VariableName`](@ref)

List of supported constraint attributes:

* [`MOI.ConstraintPrimal`](@ref)

## Options

Expand Down

2 comments on commit b7b754a

@odow
Copy link
Member Author

@odow odow commented on b7b754a Sep 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/91036

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.2.0 -m "<description of version>" b7b754a1c6d215b2499227c8f7dae258afb9324c
git push origin v1.2.0

Please sign in to comment.