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] remove references to multiobjective optimization being unsupported #3223

Merged
merged 6 commits into from
Feb 20, 2023
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
2 changes: 1 addition & 1 deletion docs/src/developers/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ represent broad themes that we see as areas in which JuMP could be improved.
[https://github.com/jump-dev/JuMP.jl/issues/2227](https://github.com/jump-dev/JuMP.jl/issues/2227)
JuMP has a strong focus on linear, conic and nonlinear optimization problems.
We want to add better support for constraint programming.
- Add support for multiobjective problems:
odow marked this conversation as resolved.
Show resolved Hide resolved
- **Done [#3176](https://github.com/jump-dev/JuMP.jl/pull/3176)** Add support for multiobjective problems:
[https://github.com/jump-dev/JuMP.jl/issues/2099](https://github.com/jump-dev/JuMP.jl/issues/2099)
JuMP is restricted to problems with scalar-valued objectives. We want to
extend this to vector-valued problems.
Expand Down
11 changes: 1 addition & 10 deletions docs/src/should_i_use.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You should use JuMP if you have a constrained optimization problem for which you
can formulate using the language of mathematical programming, that is:

* a set of decision variables
* a scalar objective function
* a scalar- or vector-valued objective function
* a set of constraints.

Key reasons to use JuMP include:
Expand Down Expand Up @@ -110,15 +110,6 @@ Alternatives to consider are:
* [InfiniteOpt.jl](https://github.com/infiniteopt/InfiniteOpt.jl)
* [pyomo.DAE [Python]](https://pyomo.readthedocs.io/en/stable/modeling_extensions/dae.html)

### Multiobjective programs

If your problem has more than one objective, JuMP is not the right tool for the
job. However, [we're working on fixing this!](https://github.com/jump-dev/JuMP.jl/issues/2099).

Alternatives to consider are:

* [vOptGeneric.jl](https://github.com/vOptSolver/vOptGeneric.jl)

### Disciplined convex programming

JuMP does not support [disciplined convex programming (DCP)](https://dcp.stanford.edu).
Expand Down