Optimization Algorithms
-
Global and Local Multiobjective Optimization using Direct Search (MultiGLODS)
MultiGLODS is a solver suited for global multiobjective constrained optimization which does not use any derivatives of the objective functions. Using direct search of directional type, the algorithm alternates between a search step, where potentially good regions are located, and a poll step where the previously located promising regions are explored. Components of the objective function are not aggregated and new points are accepted using the concept of Pareto dominance. The initialized searches are not all conducted until the end, merging when they start to be close to each other, keeping affordable computational budgets in terms of number of function evaluations. In the end of the optimization process, the set of all active points will define the approximations to the Pareto fronts of the problem (local and global).
MultiGLODS (Version 0.1, December 2016) is written in MATLAB.
Version 0.1 (December 2016) of MultiGLODS can be obtained by sending an e-mail request to Dr. A. L. Custódio.
MultiGLODS is freely available for research, educational, or commercial use, under a GNU Lesser General Public License.
Reference: A. L. Custódio and J. F. A. Madeira, MultiGLODS: Global and Local Multiobjective Optimization using Direct Search, Journal of Global Optimization, 72 (2018), 323–345.
The MultiGLODS team: Ana Luísa Custódio (Universidade Nova de Lisboa) and José F. Aguilar Madeira (ISEL and IDMEC-IST, Lisbon).
Keywords: MultiGLODS algorithm, global multi-objective optimization, derivative-free optimization, Pareto front, direct search methods, Decision Sciences -
Global and Local Optimization using Direct Search (GLODS)
GLODS is a solver suited for global constrained optimization which does not use any derivatives of the objective functions. Using direct search of directional type, the algorithm alternates between a search step, where potentially good regions are located, and a poll step where the previously located promising regions are explored. Differently from a simple multistart strategy, direct searches will merge when sufficiently close. The goal is to end with as many direct searches as the number of local minimizers, which would easily allow locating the global extreme value.
GLODS (Version 0.3, February 2016) is written in MATLAB.
Version 0.3 (February 2016) of GLODS can be obtained by sending an e-mail request to Dr. A. L. Custódio.
GLODS is freely available for research, educational, or commercial use, under a GNU Lesser General Public License.
Reference: A. L. Custódio and J. F. A. Madeira, GLODS: Global and Local Optimization using Direct Search, Journal of Global Optimization, 62 (2015), 1–28.
For references and complementary material visit GLODS site.
The GLODS team: Ana Luísa Custódio (NOVA School of Sciences and Technology) and José F. Aguilar Madeira (ISEL and IDMEC-IST, Lisbon).
Keywords: GLODS algorithm, global optimization, derivative-free optimization, direct search methods, single-objective optimization, Decision Sciences -
Direct MultiSearch (DMS)
DMS is a solver for multiobjective optimization problems which does not use any derivatives of the objective functions. It is based on a novel technique called direct multisearch, developed by extending direct search from single to multiobjective optimization. The current version can deal with any type of constraints (all that is required from the user is a function indicating whether a point is feasible or not).
DMS (Version 0.3, January 2015) is written in MATLAB.
Version 0.3 (January 2015) of DMS can be obtained by sending an e-mail.
DMS is freely available for research, educational, or commercial use, under a GNU Lesser General Public License.
Reference: A. L. Custódio, J. F. A. Madeira, A. I. F. Vaz, and L. N. Vicente, Direct Multisearch for Multiobjective Optimization, SIAM Journal on Optimization, 21 (2011) 1109–1140.
For references and complementary material visit DMS site.
The DMS team: Ana Luísa Custódio (New University of Lisbon), José F. Aguilar Madeira (ISEL and IDMEC-IST, Lisbon), A. Ismael F. Vaz (University of Minho), and Luís Nunes Vicente (University of Coimbra).
Keywords: DMS algorithm, multi-objective optimization, derivative-free optimization, Pareto front, direct search methods, constrained optimization, Decision Sciences
Educational Codes
-
Topology Optimization using Python
This project is an adaptation of Ole Sigmund's 99-line topology optimization code from MATLAB to Python. The goal is to optimize the material distribution within a given design space subject to specific constraints and objectives, such as minimizing compliance (maximizing stiffness) for a given volume fraction of material.
The Python code is available and ready to run on Google Colab:
https://github.com/aguilarmadeira/OT/blob/main/top.ipynb
For more details about the original MATLAB code by Ole Sigmund, visit: A 99 line topology optimization code written in MATLAB.
Keywords: topology optimization, Python, structural design, compliance minimization, educational code