EAGO
A development environment for robust and global optimization
Science Score: 85.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 7 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
✓Committers with academic emails
2 of 11 committers (18.2%) from academic institutions -
✓Institutional organization owner
Organization psorlab has institutional domain (psor.uconn.edu) -
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.6%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
A development environment for robust and global optimization
Basic Info
Statistics
- Stars: 151
- Watchers: 6
- Forks: 17
- Open Issues: 26
- Releases: 20
Topics
Metadata Files
README.md

EAGO - Easy Advanced Global Optimization
EAGO is an open-source development environment for robust and global optimization in Julia.
| PSOR Lab | Build Status |
|:------------:|:-----------------------------------------------------------------------------------------------:|
| |
|
| Documentation | Persistent DOI |
|:-----------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------:|
|
|
|
EAGO's Optimizer Capabilities
EAGO is a deterministic global optimizer designed to address a wide variety of optimization problems, emphasizing nonlinear programs (NLPs), by propagating McCormick relaxations along the factorable structure of each expression in the NLP. Most operators supported by modern automatic differentiation (AD) packages (e.g., +, sin, cosh) are supported by EAGO and a number utilities for sanitizing native Julia code and generating relaxations on a wide variety of user-defined functions have been included. Currently, EAGO supports problems that have a priori variable bounds defined and have differentiable constraints. That is, problems should be specified in the generic form below:
$$ \begin{align} f^{*} = & \min{\mathbf y \in Y \subset \mathbb R^{n{y}}} f(\mathbf y) \ {\rm s.t.} \;\; & \mathbf h(\mathbf y) = \mathbf 0 \ & \mathbf g(\mathbf y) \leq \mathbf 0 \ & Y = [\mathbf y^{\mathbf L}, \mathbf y^{\mathbf U}] \in \mathbb{IR}^{n} \ & \qquad \mathbf y^{\mathbf L}, \mathbf y^{\mathbf U} \in \mathbb R^{n} \end{align} $$
EAGO's Relaxations
For each nonlinear term, EAGO makes use of factorable representations to construct bounds and relaxations. In the case of $f(x) = x (x - 5) \sin(x)$, a list is generated and rules for constructing McCormick relaxations are used to formulate relaxations in the original decision space, $X$ [1]:
- $v_{1} = x$
- $v{2} = v{1} - 5$
- $v{3} = \sin(v{1})$
- $v{4} = v{1} v_{2}$
- $v{5} = v{4} v_{3}$
- $f(x) = v_{5}$

Either these original relaxations, differentiable McCormick relaxations [2], or affine relaxations thereof can be used to construct relaxations of optimization problems useful in branch and bound routines for global optimization. Utilities are included to combine these with algorithms for relaxing implicit functions [3] and forward-reverse propagation of McCormick arithmetic [4].
Sample Usage
EAGO makes use of the JuMP algebraic modeling language to improve the user's experience in setting up optimization models. Consider the familiar "process" problem instance [5]:
$$ \begin{align} & \max{\mathbf x \in X} 0.063 x{4} x{7} - 5.04 x{1} - 0.035 x{2} - 10 x{3} - 3.36 x{2} \ {\rm s.t.} \;\; & x{1} (1.12 + 0.13167 x{8} - 0.00667 x{8}^{2}) + x{4} = 0 \ & -0.001 x{4} x{9} x{6} / (98 - x{6}) + x{3} = 0 \ & -(1.098 x{8} - 0.038 x{8}^{2}) - 0.325 x{6} + x{7} = 0 \ & -(x{2} + x{5}) / x{1} + x{8} = 0 \ & -x{1} + 1.22 x{4} - x{5} = 0 \ & x{9} + 0.222 x{10} - 35.82 = 0 \ & -3.0 x{7} + x_{10} + 133.0 = 0 \ & X = [10, 2000] \times [0, 16000] \times [0, 120] \times [0, 5000] \ & \qquad \times [0, 2000] \times [85, 93] \times [90,9 5] \times [3, 12] \times [1.2, 4] \times [145, 162] \end{align} $$
This model can be formulated using JuMP code as:
```julia using JuMP, EAGO
model = Model(EAGO.Optimizer)
Define bounded variables
xL = [10.0; 0.0; 0.0; 0.0; 0.0; 85.0; 90.0; 3.0; 1.2; 145.0] xU = [2000.0; 16000.0; 120.0; 5000.0; 2000.0; 93.0; 95.0; 12.0; 4.0; 162.0] @variable(model, xL[i] <= x[i=1:10] <= xU[i])
Define constraints
@constraint(model, e1, -x[1](1.12 + 0.13167x[8] - 0.00667(x[8])^2) + x[4] == 0.0) @constraint(model, e2, -x[1] + 1.22x[4] - x[5] == 0.0) @constraint(model, e3, -0.001x[4]x[9]x[6]/(98.0 - x[6]) + x[3] == 0.0) @constraint(model, e4, -(1.098x[8] - 0.038(x[8])^2) - 0.325x[6] + x[7] == 57.425) @constraint(model, e5, -(x[2] + x[5])/x[1] + x[8] == 0.0) @constraint(model, e6, x[9] + 0.222x[10] == 35.82) @constraint(model, e7, -3.0x[7] + x[10] == -133.0)
Define objective
@objective(model, Max, 0.063x[4]x[7] - 5.04x[1] - 0.035x[2] - 10x[3] - 3.36x[5])
Solve the optimization problem
JuMP.optimize!(model) ```
A Cautionary Note on Global Optimization
As a global optimization platform, EAGO's solvers can be used to find solutions of general nonconvex problems with a guaranteed certificate of optimality. However, global solvers suffer from the curse of dimensionality and therefore their performance is outstripped by convex/local solvers. For users interested in large-scale applications, be warned that problems generally larger than a few variables may prove challenging for certain types of global optimization problems.
Package Capabilities
The EAGO package has numerous features: a solver accessible from JuMP/MathOptInterface (MOI), domain reduction routines, McCormick relaxations, and specialized nonconvex semi-infinite program solvers. A full description of all EAGO features is available on the documentation website. A series of example have been provided in the form of Jupyter Notebooks in the separate EAGO-notebooks repository.
Recent News
v0.8.3 (May 1, 2025)
- Added support for
MOI.UserDefinedFunction. - Updated bounds in
unbounded_checkfrom +/- 1E10 to +/- 1E6. - Bumped requirement for Ipopt.jl to 1.10 for type stability: https://github.com/jump-dev/Ipopt.jl?tab=readme-ov-file#type-stability.
- Updated display.
v0.8.2 (October 27, 2024)
- Added support for
MOI.ScalarNonlinearFunction.- Users can now define all constraints using
@constraintinstead of needing to use@NLconstraint. This applies to@objectiveas well.
- Users can now define all constraints using
- Added support for variable names.
- Updated display.
v0.8.1 (June 15, 2023)
- Resolved an issue where integer and binary variables would sometimes throw a
MathOptInterface.UpperBoundAlreadySeterror. - Added the function
unbounded_check!which warns users if they are missing variable bounds and sets them to +/- 1E10 by default.- Added an EAGO parameter
unbounded_checkwhich defaults totrueand enablesunbounded_check!.
- Added an EAGO parameter
- Bumped requirement for PrettyTables.jl to v2+ to accommodate the latest version of DataFrames.jl.
v0.8.0 (June 12, 2023)
- Updated EAGO for compatibility with the nonlinear expression API changes introduced in JuMP v1.2: https://discourse.julialang.org/t/ann-upcoming-refactoring-of-jumps-nonlinear-api/83052.
- EAGO now uses the
MOI.Nonlinearsubmodule instead ofJuMP._Derivatives. - Models, nodes, expressions, constraints, and operators are now compatible with MOI.
- EAGO now uses the
- Added logic and comparison operators to
EAGO.OperatorRegistry.
For a full list of EAGO release news, click here.
Installing EAGO
EAGO is a registered Julia package and it can be installed using the Julia package manager. From the Julia REPL, type ] to enter the Package manager (Pkg) mode and run the following command:
jldoctest
pkg> add EAGO
Currently, EAGO is compatible with version 1.12 of JuMP. This allows a replication of some of the internal features shared by EAGO and JuMP's AD scheme, e.g., generation of Wengert Tapes, passing evaluators between JuMP and EAGO, etc.
jldoctest
pkg> add JuMP
EAGO v0.8.1 is the current tagged version and requires Julia 1.6+ for full functionality (however Julia 1.0+ versions support partial functionality). Use with version 1.8 is recommended as the majority of in-house testing has occurred using this version of Julia. The user is directed to the High-Performance Configuration for instructions on how to install a high performance version of EAGO (rather than the basic entirely open-source version). If any issues are encountered when loading EAGO (or when using it), please submit an issue using the GitHub issue tracker.
Bug Reporting, Support, and Feature Requests
Please report bugs or feature requests by opening an issue using the GitHub issue tracker. All manners of feedback are encouraged.
Current Limitations
- Nonlinear handling assumes that box-constraints of nonlinear terms are available or can be inferred from bounds-tightening.
- Only currently supports continuous functions. Support for mixed-integer problems is forthcoming.
Work in Progress
- Extensions for nonconvex dynamic global & robust optimization.
- Provide support for mixed-integer problems.
- Update EAGO to support nonsmooth problems (requires: a nonsmooth local nlp optimizer or lexicographic AD, support for relaxations is already included).
- Performance assessment of nonlinear (differentiable) relaxations and incorporation into main EAGO routine.
- Evaluation and incorporation of implicit relaxation routines in basic solver.
Citing EAGO
Please cite the following paper when using EAGO. In plain text form this is:
Wilhelm, M.E. and Stuber, M.D. EAGO.jl: easy advanced global optimization in Julia.
Optimization Methods and Software. 37(2): 425-450 (2022). DOI: 10.1080/10556788.2020.1786566
A BibTeX entry is given below and a corresponding .bib file is given in citation.bib.
bibtex
@article{doi:10.1080/10556788.2020.1786566,
author = {Wilhelm, M.E. and Stuber, M.D.},
title = {EAGO.jl: easy advanced global optimization in Julia},
journal = {Optimization Methods and Software},
volume = {37},
number = {2},
pages = {425-450},
year = {2022},
publisher = {Taylor & Francis},
doi = {10.1080/10556788.2020.1786566},
URL = {https://doi.org/10.1080/10556788.2020.1786566},
eprint = {https://doi.org/10.1080/10556788.2020.1786566}
}
Related Packages
- ValidatedNumerics.jl: A Julia library for validated interval calculations, including basic interval extensions, constraint programming, and interval contractors
- MAiNGO: An open-source mixed-integer nonlinear programming package in C++ that utilizes MC++ for relaxations
- MC++: A mature McCormick relaxation package in C++ that also includes McCormick-Taylor, Chebyshev Polyhedral, and Ellipsoidal arithmetics
References
- Mitsos, A., Chachuat, B., and Barton, P.I. McCormick-based relaxations of algorithms. SIAM Journal on Optimization. 20(2): 573–601 (2009).
- Khan, K.A., Watson, H.A.J., and Barton, P.I. Differentiable McCormick relaxations. Journal of Global Optimization. 67(4): 687-729 (2017).
- Stuber, M.D., Scott, J.K., and Barton, P.I.: Convex and concave relaxations of implicit functions. Optimization Methods and Software 30(3): 424–460 (2015).
- Wechsung, A., Scott, J.K., Watson, H.A.J., and Barton, P.I. Reverse propagation of McCormick relaxations. Journal of Global Optimization 63(1): 1-36 (2015).
- Bracken, J., and McCormick, G.P. Selected Applications of Nonlinear Programming. John Wiley and Sons, New York (1968).
Owner
- Name: Process Systems and Operations Research Laboratory
- Login: PSORLab
- Kind: organization
- Email: stuber@uconn.edu
- Location: University of Connecticut, Storrs, CT, USA
- Website: https://psor.uconn.edu
- Repositories: 9
- Profile: https://github.com/PSORLab
The PSOR Laboratory at UConn develops numerical analysis methods and software for model-based systems engineering applications.
Citation (citation.bib)
@article{doi:10.1080/10556788.2020.1786566,
author = {Wilhelm, M.E. and Stuber, M.D.},
title = {EAGO.jl: easy advanced global optimization in Julia},
journal = {Optimization Methods and Software},
volume = {37},
number = {2},
pages = {425-450},
year = {2022},
publisher = {Taylor & Francis},
doi = {10.1080/10556788.2020.1786566},
URL = {https://doi.org/10.1080/10556788.2020.1786566},
eprint = {https://doi.org/10.1080/10556788.2020.1786566}
}
GitHub Events
Total
- Create event: 3
- Commit comment event: 4
- Issues event: 4
- Release event: 2
- Watch event: 8
- Delete event: 1
- Issue comment event: 13
- Push event: 21
- Pull request review comment event: 4
- Pull request event: 19
- Pull request review event: 12
Last Year
- Create event: 3
- Commit comment event: 4
- Issues event: 4
- Release event: 2
- Watch event: 8
- Delete event: 1
- Issue comment event: 13
- Push event: 21
- Pull request review comment event: 4
- Pull request event: 19
- Pull request review event: 12
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Matthew Wilhelm | m****m@u****u | 796 |
| Dimitri Alston | 1****n | 75 |
| Matthew Wilhelm | w****e@g****m | 60 |
| Robert Gottlieb | R****b@u****u | 16 |
| Oscar Dowson | o****w | 7 |
| Matthew Stuber | 3****r | 3 |
| Shun Ueda | h****e@g****m | 2 |
| evrenmturan | 6****n | 1 |
| Simeon Schaub | s****9@g****m | 1 |
| Miles Lubin | m****n@g****m | 1 |
| Benoît Legat | b****t@g****m | 1 |
Committer Domains (Top 20 + Academic)
Packages
- Total packages: 1
-
Total downloads:
- julia 14 total
- Total dependent packages: 0
- Total dependent repositories: 2
- Total versions: 20
juliahub.com: EAGO
A development environment for robust and global optimization
- Documentation: https://docs.juliahub.com/General/EAGO/stable/
- License: MIT
-
Latest release: 0.8.3
published 8 months ago
Rankings
Dependencies
- Calculus 0.4.1+
- Cassette 0.2.1
- DiffRules 0.0.5+
- GLPK 0.9.1
- IntervalArithmetic 0.15+
- IntervalContractors 0.3+
- Ipopt 0.5.1
- JuMP 0.19.0
- MathOptInterface 0.8.1
- Reexport 0.2.0
- StaticArrays 0.8.3
- julia 0.7