Pajarito is a mixed-integer convex programming (MICP) solver package written in Julia.
MICP problems are convex except for restrictions that some variables take binary or integer values. Pajarito supports both mixed-integer conic programming, which encodes nonlinearities using a small number of predefined cones, and more traditional convex mixed-integer nonlinear programming, which encodes nonlinearities with smooth functions and uses their derivatives.
Pajarito solves MICP problems by constructing sequential lifted polyhedral outer-approximations of the convex feasible set to leverage the power of MILP solvers. The algorithm has theoretical finite-time convergence under reasonable assumptions. Pajarito accesses state-of-the-art MILP solvers and continuous conic or nonlinear programming (NLP) solvers through the MathProgBase interface.
Pajarito can be installed through the Julia package manager:
julia> Pkg.add("Pajarito")
Pajarito has two entirely separate algorithms depending on the form in which the input is provided. The first algorithm is the derivative-based nonlinear (NLP) algorithm, where the approach used is analogous to that of Bonmin (and will perform similarly, with the primary advantage of being able to easily swap-in various mixed-integer and convex subproblem solvers that Bonmin does not support). The second algorithm is the conic algorithm, which is the new approach proposed in the publications describing Pajarito. The conic algorithm currently supports MICP with second-order, rotated second-order, (primal) exponential, and positive semidefinite cones. MISOCP and MISDP are two established sub-classes of MICPs that Pajarito can solve.
There are several convenient ways to model MICPs in Julia and access Pajarito:
JuMP | Convex.jl | MathProgBase | |
---|---|---|---|
NLP model | X | X | |
Conic model | X | X | X |
JuMP and Convex.jl are algebraic modeling interfaces, while MathProgBase is a lower-level interface for providing input in raw callback or matrix form. Convex.jl is perhaps the most user-friendly way to provide input in conic form, since it transparently handles conversion of algebraic expressions. JuMP supports general nonlinear smooth functions, e.g. by using @NLconstraint
. JuMP also supports conic modeling, but requires cones to be explicitly specified, e.g. by using norm(x) <= t
for second-order cone constraints and @SDconstraint
for positive semidefinite constraints. Note that a problem provided in conic form may solve faster than an equivalent problem in NLP form because conic form naturally encodes extended formulations; however, Hijazi et al. suggest manual reformulation techniques which achieve many of the algorithmic benefits of conic form.
Pajarito may be accessed through MathProgBase from outside Julia by using the experimental cmpb interface which provides a C API to the low-level conic input format. The ConicBenchmarkUtilities package provides utilities to read files in the CBF format.
The algorithm implemented by Pajarito itself is relatively simple, and most of the hard work is performed by the MIP outer-approximation model solver and the continuous convex subproblem models solver. The performance of Pajarito depends on these two types of solvers. For best performance, use commercial solvers.
The mixed-integer solver is specified by using the mip_solver
option to PajaritoSolver
, e.g. PajaritoSolver(mip_solver=CplexSolver())
. You must first load the Julia package which provides the mixed-integer solver, e.g. using CPLEX
. This solver is typically a mixed-integer linear solver, but if a conic problem has both second-order cones and other nonlinear cones, or if it has PSD cones, then the MIP solver can be an MISOCP solver and Pajarito can put second-order cones in the outer-approximation model.
The continuous convex solver is specified by using the cont_solver
option, e.g. PajaritoSolver(cont_solver=IpoptSolver())
. When given input in derivative-based nonlinear form, Pajarito requires a derivative-based nonlinear solver, e.g. Ipopt or KNITRO. When given input in conic form, the convex subproblem solver can be either a conic solver which supports the cones used or a derivative-based solver like Ipopt. If a derivative-based solver is provided in this case, then Pajarito will switch to the derivative-based algorithm by using the ConicNonlinearBridge (which does not support PSD cones). Note that using derivative-based solvers for conic problems can cause numerical instability because conic problems are not always smooth.
For conic models, the predefined cones are listed in the MathProgBase documentation. The following conic solvers (O means open-source) can be used by Pajarito to solve mixed-integer conic models with any mixture of the corresponding cones:
Second-order | Rotated second-order | Positive semidefinite | Primal exponential | |
---|---|---|---|---|
CSDP O | X | |||
ECOS O | X | X | X | |
SCS O | X | X | X | X |
Mosek | X | X | X |
MIP and continuous solver parameters must be specified through their corresponding Julia interfaces. For example, to turn off the output of Ipopt solver, use cont_solver=IpoptSolver(print_level=0)
.
The following options can be passed to PajaritoSolver()
to modify its behavior (see solver.jl for default values; C means conic algorithm only):
log_level::Int
Verbosity flag: 0 for quiet, 1 for basic solve info, 2 for iteration info, 3 for detailed timing and cuts and solution feasibility infotimeout::Float64
Time limit for algorithm (in seconds)rel_gap::Float64
Relative optimality gap termination conditionmip_solver_drives::Bool
Let MIP solver manage convergence ("branch and cut")mip_solver::MathProgBase.AbstractMathProgSolver
MIP solver (MILP or MISOCP)mip_subopt_solver::MathProgBase.AbstractMathProgSolver
C MIP solver for suboptimal solves (with appropriate options already passed)mip_subopt_count::Int
C Number of times to usemip_subopt_solver
betweenmip_solver
solvesround_mip_sols::Bool
C Round integer variable values before solving subproblemsuse_mip_starts::Bool
C Use conic subproblem feasible solutions as MIP warm-starts or heuristic solutionscont_solver::MathProgBase.AbstractMathProgSolver
Continuous solver (conic or nonlinear)solve_relax::Bool
C Solve the continuous conic relaxation to add initial subproblem cutssolve_subp::Bool
C Solve the continuous conic subproblems to add subproblem cutsdualize_relax::Bool
C Solve the conic dual of the continuous conic relaxationdualize_subp::Bool
C Solve the conic duals of the continuous conic subproblemssoc_disagg::Bool
C Disaggregate SOC conessoc_abslift::Bool
C Use SOC absolute value liftingsoc_in_mip::Bool
C Use SOC cones in the MIP model (ifmip_solver
supports MISOCP)sdp_eig::Bool
C Use PSD cone eigenvector cutssdp_soc::Bool
C Use PSD cone eigenvector SOC cuts (ifmip_solver
supports MISOCP)init_soc_one::Bool
C Use SOC initial L_1 cutsinit_soc_inf::Bool
C Use SOC initial L_inf cutsinit_exp::Bool
C Use Exp initial cutsinit_sdp_lin::Bool
C Use PSD cone initial linear cutsinit_sdp_soc::Bool
C Use PSD cone initial SOC cuts (ifmip_solver
supports MISOCP)scale_subp_cuts::Bool
C Use scaling for subproblem cutsscale_subp_factor::Float64
C Fixed multiplicative factor for scaled subproblem cutsviol_cuts_only::Bool
C Only add cuts violated by current MIP solutionprim_cuts_only::Bool
C Add primal cuts, do not add subproblem cutsprim_cuts_always::Bool
C Add primal cuts and subproblem cutsprim_cuts_assist::Bool
C Add subproblem cuts, and add primal cuts only subproblem cuts cannot be addedcut_zero_tol::Float64
C Zero tolerance for cut coefficientsprim_cut_feas_tol::Float64
C Absolute feasibility tolerance used for primal cuts (set equal to feasibility tolerance ofmip_solver
)
Pajarito is not yet numerically robust and may require tuning of parameters to improve convergence. If the default parameters don't work for you, please let us know.
Note:
- For the conic algorithm, Pajarito usually returns a solution constructed from one of the conic solver's feasible solutions. Since the conic solver is not subject to the same feasibility tolerances as the MIP solver (which should match the absolute feasibility tolerance
prim_cut_feas_tol
), Pajarito's solution will not necessarily satisfyprim_cut_feas_tol
. - MIP solver integrality tolerance should typically be tightened, for example to
1e-8
, for improved Pajarito performance. viol_cuts_only
defaults totrue
on the MIP-solver-driven algorithm andfalse
on the iterative algorithm.
Please report any issues via the Github issue tracker. All types of issues are welcome and encouraged; this includes bug reports, documentation typos, feature requests, etc. The Optimization (Mathematical) category on Discourse is appropriate for general discussion.
Mixed-integer convex programming is an active area of research, and we are seeking out hard benchmark instances. Please get in touch either by opening an issue or privately if you would like to share any hard instances to be used as benchmarks in future work. Challenging problems will help us determine how to improve Pajarito.
If you find Pajarito useful in your work, we kindly request that you cite the following paper (arXiv preprint):
@Inbook{LubinYamangilBentVielma2016,
author="Lubin, Miles
and Yamangil, Emre
and Bent, Russell
and Vielma, Juan Pablo",
editor="Louveaux, Quentin
and Skutella, Martin",
title="Extended Formulations in Mixed-Integer Convex Programming",
bookTitle="Integer Programming and Combinatorial Optimization: 18th International Conference, IPCO 2016, Li{\`e}ge, Belgium, June 1-3, 2016, Proceedings",
year="2016",
publisher="Springer International Publishing",
address="Cham",
pages="102--113",
isbn="978-3-319-33461-5",
doi="10.1007/978-3-319-33461-5_9",
url="http://dx.doi.org/10.1007/978-3-319-33461-5_9"
}
The paper describes the motivation of Pajarito and is recommended reading for advanced users.