From b7b754a1c6d215b2499227c8f7dae258afb9324c Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 8 Sep 2023 15:34:08 +1200 Subject: [PATCH] Update README with support attributes (#224) --- README.md | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5bd2c1a..953c304 100644 --- a/README.md +++ b/README.md @@ -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