# Mixed integer non-linear problem + three objectives

**URL:** https://discourse.julialang.org/t/mixed-integer-non-linear-problem-three-objectives/11140
**Category:** Optimization (Mathematical)
**Tags:** question
**Created:** [May 25, 2018, 9:10am UTC](https://discourse.julialang.org/t/mixed-integer-non-linear-problem-three-objectives/11140 "2018-05-25T09:10:59Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![UserMorocco](https://avatars.discourse-cdn.com/v4/letter/u/ee59a6/32.png) [@UserMorocco](https://discourse.julialang.org/u/UserMorocco)
#### Post date: [May 25, 2018, 9:11am UTC](https://discourse.julialang.org/t/mixed-integer-non-linear-problem-three-objectives/11140/1 "2018-05-25T09:11:00Z")

</div>

Hello everybody,

I’m looking for a julia package to solve : **mixed integer nonlinear problem with three objectives.**

thank you.

---

<div class="post-metadata">

### Author: ![mbesancon](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mbesancon/32/6528_2.png) [@mbesancon](https://discourse.julialang.org/u/mbesancon)
#### Post date: [May 26, 2018, 5:08pm UTC](https://discourse.julialang.org/t/mixed-integer-non-linear-problem-three-objectives/11140/2 "2018-05-26T17:08:55Z")

</div>

Hi there,

you can take a look at [https://github.com/anriseth/MultiJuMP.jl](https://github.com/anriseth/MultiJuMP.jl), an extension of JuMP to multiple objectives. Combine that with a MIP solver and it should do it.

Your other solution would be to program yourself a multi-objective optimization technique, such as \epsilon -constraint, which I believe can build your whole Pareto front for three objectives in most situations.
