Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] update version of HiGHS and MOI #3855

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ Enzyme = "0.13.7"
ForwardDiff = "0.10"
GLPK = "=1.2.1"
HTTP = "1.5.4"
HiGHS = "=1.9.2"
HiGHS = "=1.10.1"
Interpolations = "0.14"
Ipopt = "=1.6.6"
JSON = "0.21"
JSONSchema = "1"
Literate = "2.8"
MarkdownAST = "0.1"
MathOptInterface = "=1.31.2"
MathOptInterface = "=1.32.0"
MultiObjectiveAlgorithms = "=1.3.3"
PATHSolver = "=1.7.8"
ParametricOptInterface = "0.8.1"
Expand Down
5 changes: 5 additions & 0 deletions docs/src/developers/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,11 @@ Presolving model
0 rows, 0 cols, 0 nonzeros 0s
Presolve: Optimal

Nodes | B&B Tree | Objective Bounds | Dynamic Constraints | Work
Proc. InQueue | Leaves Expl. | BestBound BestSol Gap | Cuts InLp Confl. | LpIters Time

0 0 0 0.00% 2 2 0.00% 0 0 0 0 0.0s

Solving report
Status Optimal
Primal bound 2
Expand Down
24 changes: 12 additions & 12 deletions docs/src/manual/solutions.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ julia> solution_summary(model)
Primal status : FEASIBLE_POINT
Dual status : FEASIBLE_POINT
Objective value : -2.05143e+02
Objective bound : -0.00000e+00
Relative gap : Inf
Objective bound : -2.05143e+02
Relative gap : 1.38546e-16
Dual objective value : -2.05143e+02

* Work counters
Solve time (sec) : 6.70987e-04
Solve time (sec) : 6.01048e-04
Simplex iterations : 2
Barrier iterations : 0
Node count : -1
Expand All @@ -102,8 +102,8 @@ julia> solution_summary(model; verbose = true)
Primal status : FEASIBLE_POINT
Dual status : FEASIBLE_POINT
Objective value : -2.05143e+02
Objective bound : -0.00000e+00
Relative gap : Inf
Objective bound : -2.05143e+02
Relative gap : 1.38546e-16
Dual objective value : -2.05143e+02
Primal solution :
x : 1.54286e+01
Expand All @@ -113,7 +113,7 @@ julia> solution_summary(model; verbose = true)
c1 : 1.71429e+00

* Work counters
Solve time (sec) : 6.70987e-04
Solve time (sec) : 6.01048e-04
Simplex iterations : 2
Barrier iterations : 0
Node count : -1
Expand Down Expand Up @@ -186,8 +186,8 @@ the value of the dual objective can be obtained via
julia> objective_value(model)
-205.14285714285714

julia> objective_bound(model) # HiGHS only implements objective bound for MIPs
-0.0
julia> objective_bound(model)
-205.1428571428571

julia> dual_objective_value(model)
-205.1428571428571
Expand Down Expand Up @@ -423,7 +423,7 @@ julia> set_upper_bound(x, 1)

julia> x_val = value(x)
┌ Warning: The model has been modified since the last call to `optimize!` (or `optimize!` has not been called yet). If you are iteratively querying solution information and modifying a model, query all the results first, then modify the model.
└ @ JuMP ~/work/JuMP.jl/JuMP.jl/src/optimizer_interface.jl:712
└ @ JuMP ~/.julia/dev/JuMP/src/optimizer_interface.jl:1085
ERROR: OptimizeNotCalled()
Stacktrace:
[...]
Expand Down Expand Up @@ -716,11 +716,11 @@ julia> solution_summary(model; result = 1)
Dual status : NO_SOLUTION
Objective value : [0.00000e+00,0.00000e+00]
Objective bound : [0.00000e+00,-9.00000e+00]
Relative gap : Inf
Dual objective value : -9.00000e+00
Relative gap : 0.00000e+00
Dual objective value : -3.33067e-16

* Work counters
Solve time (sec) : 1.82720e-03
Solve time (sec) : 5.34880e-01
Simplex iterations : 0
Barrier iterations : 0
Node count : -1
Expand Down
Loading