Pith. sign in

REVIEW 2 major objections 6 minor 129 references

System Architecture Optimization Strategies: Dealing with Expensive Hierarchical Problems

T0 review · 2 major / 6 minor · reviewed 2026-08-09 · deepseek-v4-flash

Pith's one-line read This paper claims that hierarchy-aware Bayesian optimization finds the same jet engine architecture optimum as NSGA-II using 92% fewer function evaluations.

desk verdict Solid toolkit for hierarchical architecture optimization with a plausible but uncontrolled 10x speedup claim that needs a matched NSGA-II rerun or explicit comparability argument. read the letter →

arxiv 2502.00838 v1 pith:EAA3NCF7 submitted 2025-02-02 math.OC cs.DMstat.AP

classification math.OCcs.DMstat.AP MSC 90C2690C29
keywords systemarchitectureoptimizationBayesianhierarchicaldesignspacesGaussianprocesskernelssamplingNSGA-IIjetenginehiddenconstraints
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper claims that Bayesian Optimization, when given information about the hierarchical structure of a design space, can solve realistic system architecture optimization problems with one order of magnitude fewer function evaluations than evolutionary algorithms. The demonstration case is a jet engine architecting problem where the BO algorithm reaches essentially the same optimal thrust-specific fuel consumption in 300 evaluations that NSGA-II reaches in 3250, a 92% reduction. For this to work, the paper develops three things: metrics that quantify how much of a design space is missing or redundant because of hierarchy, a Gaussian process kernel that handles hierarchical categorical variables, and a sampling scheme that corrects for uneven representation of architecture groups. It also shows experimentally that for BO, the more hierarchy information integrated, the better the optimization results.

What carries the argument

The argument rests on four devices. First, four new metrics: imputation ratio (declared vs valid design space size), correction ratio (declared vs correct size), correction fraction (share of hierarchy due to value constraints), and max rate diversity (imbalance in how often discrete values occur). Second, a hierarchical Gaussian process kernel for categorical conditionally-active variables, built by one-hot encoding with a modified Gower distance that treats inactive levels as distance zero between inactive pairs and as a penalized distance between active and inactive pairs. Third, a hierarchical sampling algorithm that groups all valid discrete design vectors by their active variable sets and weights groups to mitigate rate diversity, then fills continuous variables with Sobol' sampling. Fourth, a set of eager and lazy correction algorithms that repair invalid design vectors.

What would settle it

Re-run the simple jet engine problem in the same SBArchOpt framework: run NSGA-II for 3250 evaluations and the proposed BO algorithm for 300 evaluations under identical initial design-of-experiments and termination settings. If NSGA-II's final TSFC is more than 0.2% below BO's, or if BO cannot reach the reference TSFC value within 300 evaluations, the 92% claim is refuted.

Watch

Extended reading notes

Core claim

The central claim is that hierarchy-aware Bayesian Optimization is a practical solver for expensive, black-box, mixed-discrete, constrained, multi-objective architecture optimization problems. On the jet engine benchmark, the BO algorithm with activeness information reaches a median optimal TSFC of 6.633 g/kNs within 300 evaluations, compared with 6.640 g/kNs for NSGA-II at 3250 evaluations, which the authors describe as 92% fewer function evaluations for the same result. The paper further establishes that integrating hierarchy information through hierarchical sampling and, to a lesser extent, hierarchical Gaussian process kernels improves BO performance, while the level of hierarchy integration has little influence on NSGA-II.

Load-bearing premise

The comparison assumes the NSGA-II result at 3250 evaluations from the authors' earlier work is directly comparable to the BO runs here, with the same problem formulation, evaluation function, termination logic, and cost model.

Editorial extensions

If this is right

  • Bayesian Optimization can replace evolutionary algorithms on expensive architecture problems, cutting evaluation budgets by roughly an order of magnitude.
  • Problem-agnostic eager correction performs close to problem-specific correction, so hierarchy-aware optimizers need not hand-code repair logic.
  • For BO, hierarchical sampling consistently beats non-hierarchical sampling, while hierarchical GP kernels did not help on the tested smooth problems; the paper keeps both for harder cases.
  • The metrics IR, CR, CRF, and MRD give a standard way to characterize how much hierarchy matters before choosing an optimization strategy.
  • All algorithms and test problems are released open-source in SBArchOpt, enabling direct replication.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • If the 92% savings transfer to other expensive MDAO problems, the practical bottleneck shifts from evaluation count to GP training and infill search time, which become the dominant costs.
  • The hierarchical kernel's active-to-inactive distance rule suggests a natural way to extend BO to graph-based architectures: define similarity between architecture instances directly instead of through one-hot relaxed variables.
  • The paper's own comparison suggests a sharper test: run NSGA-II and BO on the same problem with identical initial populations and termination criteria; the 10x claim would then be directly quantified rather than inherited from a prior run.
  • On problems with rougher, more discontinuous objectives than the rocket and GNC tests, hierarchical GP kernels should show larger gains; that is a testable prediction of the paper's reasoning.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

2 major / 6 minor

Summary. The paper proposes methods for system architecture optimization (SAO) with expensive, hierarchical, mixed-discrete, constrained, multi-objective problems. It introduces metrics (imputation/correction ratios, correction fraction, max rate diversity), a new Gaussian process kernel for hierarchical categorical variables, hierarchical sampling and correction algorithms, and a comparison of hierarchy integration strategies in NSGA-II and Bayesian optimization (BO). The central empirical claim is that the proposed BO algorithm reaches a TSFC of about 6.63-6.65 g/kNs in 300 function evaluations, which is 92% fewer than the 3250 evaluations reportedly needed by NSGA-II for a comparable or slightly worse result (Section 7, Table 19).

Significance. If substantiated, the paper provides a compelling demonstration that BO can reduce evaluation counts by an order of magnitude on realistic SAO problems, and it contributes reusable open-source components (SBArchOpt) and a dataset with experiment code. The new hierarchy metrics and the kernel for categorical hierarchical variables address a real gap in surrogate-based architecture optimization. The strengths include the reproducible experimental pipeline, the explicit statistical ranking procedure, and the careful discussion of when hierarchical GP models help or hurt.

major comments (2)
  1. [Section 7, Table 19] The central 92% claim rests on an uncontrolled cross-paper comparison. The NSGA-II result at 3250 evaluations is taken from prior work [46] and is not re-run under the same conditions as the BO runs in this paper (problem formulation, correction mechanism, hierarchical sampling, constraint handling, and termination logic). Table 19 reports no variance for this baseline and explicitly states that '∆HV regret was not available for NSGA-II with 3250 evaluations'. To support the headline claim, the authors should re-run NSGA-II at both 300 and 3250 evaluations under the present settings, reporting distributions, or else clearly qualify the claim as a comparison to a previously published result rather than a controlled experimental finding.
  2. [Section 4, Eqs. (12)-(14)] The proposed hierarchical categorical kernel is not proven to be positive semi-definite. The text states that '[Φ(Θi)] is a chosen symmetric positive definite parameterization', but this does not by itself guarantee that the correlation matrices defined by Eqs. (12)-(14) are PSD for arbitrary collections of points. Since a valid GP kernel requires PSD, the paper should provide a proof or a precise citation for the PSD property of this hierarchical kernel, or present it as an empirical/heuristic construction with the associated caveat. This is load-bearing for the paper's kernel contribution.
minor comments (6)
  1. [Section 8] The sentence 'The developed BO algorithm is implemented as as ArchSBO in SBArchOpt' contains a duplicated 'as' and should be corrected.
  2. [Table 13 caption] The caption reads 'running NGSA-II', which should be 'NSGA-II'.
  3. [Section 5.2, Table 10] The label 'Hier.' for the non-grouping hierarchical sampler is ambiguous: it could be confused with 'Hierarchical sampling' generally. The table should clarify that this row is the hierarchical sampler without grouping or weighting.
  4. [Section 4, Eq. (12)] Equation (12) writes the exponent as `exp(-√2[Φ(Θi)]_ℓ_i^r,ℓ_i^r - √2[Φ(Θi)]_ℓ_i^s,ℓ_i^s)`, which is not a standard distance-based correlation form; please verify the intended expression and correct any typographical error.
  5. [Appendix A] The ranking procedure uses a 10% significance level for the two-sample t-test without justification; please state why this threshold was chosen or cite a reference for this practice.
  6. [Abstract] The abstract's statement that 'integrating more hierarchy information in the optimization algorithms yields better optimization results for BO algorithms' is too strong in view of Table 18, where the Activeness configuration (hierarchical GP) has a 20% penalty relative to Hierarchical sampling, and Table 19, where Activeness has higher ∆HV regret than Hierarchical sampling. The abstract should include the exception noted in Section 6.

Circularity Check

0 steps flagged · score 1.0 of 10

No circular reduction: the BO-vs-NSGA-II 92% claim is an empirical comparison, though its baseline is a self-cited prior result that is not re-verified here.

full rationale

The paper's central derivation chain is not circular. The new hierarchical categorical GP kernel is explicitly built on earlier kernels and is then tested on externally defined problems; the number of function evaluations, TSFC values, and Delta-HV regrets are measured quantities, not parameters fitted to the claims they support. The selection of hierarchical sampling and correction strategies in Sections 5 and 6 is a ranking exercise on benchmark problems, and the jet engine application in Section 7 is evaluated against a physical pyCycle-based model with a known optimum, giving the central BO result independent content. The headline claim that BO finds the same result in 92% fewer evaluations does rely on the NSGA-II result at 3250 evaluations reported in the authors' own prior work [46]: the paper states 'The previously-found optimum was found with NSGA-II and an evaluation budget of 3250; BO therefore can be considered to be able to find the same result in 92% less function evaluations.' This is a load-bearing self-citation, and the comparison is not fully controlled because the paper does not re-run NSGA-II at that budget, reports no variance for the 3250 baseline, and does not demonstrate identical problem settings, correction logic, or termination criteria. However, this is a verification and comparability weakness rather than a definitional circularity: the NSGA-II value is not an input to the BO algorithm, and the BO result is independently measured against the physical evaluation function. No equation in the paper reduces to its own inputs, and no fitted parameter is renamed as a prediction. Accordingly, no specific circular step can be exhibited, and the appropriate finding is no significant circularity, with a small score reflecting the self-referential benchmark ecosystem and the unverified baseline.

Assumptions & free parameters 5 free parameters · 5 assumptions · 0 invented entities

The method depends on enumerable design spaces, discrete-only activeness, deterministic evaluations, and a surrogate-based test suite whose representativeness is assumed. Hand-chosen algorithm settings (RDmin, weighting factors, thresholds) are listed as free parameters; no new physical entities are introduced, so the invented-entity ledger is empty. The most consequential assumption is that the prior NSGA-II baseline is a valid comparison point.

free parameters (5)
  • RDmin = 80%
    Threshold for grouping by high rate-diversity variables in hierarchical sampling (Section 5.2); hand-chosen as a compromise.
  • Correction distance weighting factors = 1.1 to 1.0
    Linear weighting favoring changes on the right side of the design vector in eager and lazy similar correction (Section 5.3); hand-chosen.
  • PoV threshold = 25%
    Minimum probability of viability enforced during infill search for hidden constraints (Section 3.2); default setting.
  • KPLS components nkpls = 10
    Number of PLS components used by KPLS when the design space has more than 10 variables (Section 3.2); default setting.
  • Hierarchical sampling group weights = w=1, nact, sqrt(nx,grp)
    Options for weighting groups in hierarchical sampling; no single best, selected based on experiments (Section 5.2).
assumptions (5)
  • domain assumption Activeness of continuous variables is determined only by discrete variables (Eq. 2).
    Used in IR_c and CR_c definitions and sampling; excludes cases where continuous variables control activeness, as noted via Zaefferer and Horn.
  • domain assumption xvalid,discr can be enumerated in memory and time for the problems considered.
    Hierarchical sampling and eager correction require full enumeration; the paper notes this fails for design spaces above hundreds of millions of vectors (Section 5.2).
  • domain assumption Objective and constraint evaluations are deterministic, and hidden-constraint failures are deterministic.
    Stated in Section 2.2; BO and GP models and the ranking procedure assume no stochastic noise.
  • domain assumption The random-forest emulator Jet SM behaves like the real pyCycle evaluation for the jet engine problem.
    Test problems use Jet SM to compare strategies (Section 5.1); transfer of conclusions to the real evaluation is assumed.
  • ad hoc to paper The NSGA-II result at 3250 evaluations from prior work [46] is a valid and comparable baseline.
    Section 7 and Table 19 use this single prior data point to support the 92% reduction claim without re-running NSGA-II at that budget.

how reviews work

0 comments
Cite this review

Pith. "Pith review of System Architecture Optimization Strategies: Dealing with Expensive Hierarchical Problems." pith.science (2026). https://pith.science/paper/EAA3NCF7

@misc{pith2026250200838,
  author       = {Pith},
  title        = {Pith review of: System Architecture Optimization Strategies: Dealing with Expensive Hierarchical Problems},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/EAA3NCF7}},
  note         = {Machine review of arXiv:2502.00838}
}
read the original abstract

Choosing the right system architecture for the problem at hand is challenging due to the large design space and high uncertainty in the early stage of the design process. Formulating the architecting process as an optimization problem may mitigate some of these challenges. This work investigates strategies for solving System Architecture Optimization (SAO) problems: expensive, black-box, hierarchical, mixed-discrete, constrained, multi-objective problems that may be subject to hidden constraints. Imputation ratio, correction ratio, correction fraction, and max rate diversity metrics are defined for characterizing hierar chical design spaces. This work considers two classes of optimization algorithms for SAO: Multi-Objective Evolutionary Algorithms (MOEA) such as NSGA-II, and Bayesian Optimization (BO) algorithms. A new Gaussian process kernel is presented that enables modeling hierarchical categorical variables, extending previous work on modeling continuous and integer hierarchical variables. Next, a hierarchical sampling algorithm that uses design space hierarchy to group design vectors by active design variables is developed. Then, it is demonstrated that integrating more hierarchy information in the optimization algorithms yields better optimization results for BO algorithms. Several realistic single-objective and multi-objective test problems are used for investigations. Finally, the BO algorithm is applied to a jet engine architecture optimization problem. This work shows that the developed BO algorithm can effectively solve the problem with one order of magnitude less function evaluations than NSGA-II. The algorithms and problems used in this work are implemented in the open-source Python library SBArchOpt.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

129 extracted references · 46 canonical work pages

  1. [46]

    In: AIAA A VIATION 2021 FORUM, Virtual Event (2021)

    Bussemaker, J.H., De Smedt, T., La Rocca, G., Ciampa, P.D., Nagel, B.: System architecture optimization: An open source multidisciplinary aircraft jet engine architecting problem. In: AIAA A VIATION 2021 FORUM, Virtual Event (2021). https://doi.org/10.2514/6.2021-3078

  2. [1]

    Pearson Education, England (2015)

    Crawley, E., Cameron, B., Selva, D.: System Architecture: Strategy and Product Development for Complex Systems. Pearson Education, England (2015). https: //doi.org/10.1007/978-1-4020-4399-4

  3. [2]

    In: International 9https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.ttest ind from stats.html 45 Conference on Advanced Information Systems Engineering (2022)

    Chan, A., Pires, A.F., Polacsek, T., Roussel, S.: The aircraft and its manu- facturing system: From early requirements to global design. In: International 9https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.ttest ind from stats.html 45 Conference on Advanced Information Systems Engineering (2022). https://doi. org/10.1007/978-3-031-07472-1 10

  4. [3]

    PhD thesis, Georgia Institute of Technology (2012)

    Iacobucci, J.V.: Rapid architecture alternative modeling (raam): a framework for capability-based analysis of system of systems architectures. PhD thesis, Georgia Institute of Technology (2012)

  5. [4]

    In: 30th Annual INCOSE International Symposium, Virtual Event (2020)

    McDermott, T.A., Folds, D.J., Hallo, L.: Addressing cognitive bias in systems engineering teams. In: 30th Annual INCOSE International Symposium, Virtual Event (2020). https://doi.org/10.1002/j.2334-5837.2020.00721.x

  6. [5]

    Engineering Computations 33(5), 1327–1352 (2016) https://doi.org/10.1108/EC-02-2014-0033

    Judt, D.M., Lawson, C.P.: Development of an automated aircraft subsystem architecture generation and analysis tool. Engineering Computations 33(5), 1327–1352 (2016) https://doi.org/10.1108/EC-02-2014-0033

  7. [6]

    In: AIAA A VIATION 2021 FORUM, Virtual Event (2021)

    Bussemaker, J.H., Bartoli, N., Lefebvre, T., Ciampa, P.D., Nagel, B.: Effec- tiveness of surrogate-based optimization algorithms for system architecture optimization. In: AIAA A VIATION 2021 FORUM, Virtual Event (2021). https: //doi.org/10.2514/6.2021-3095

  8. [7]

    In: Proceedings of the Sixth International Workshop on Variability Modeling of Software-Intensive Systems - VaMoS'12

    Czarnecki, K., Gr¨ unbacher, P., Rabiser, R., Schmid, K., Wasowski, A.: Cool fea- tures and tough decisions. In: Proceedings of the Sixth International Workshop on Variability Modeling of Software-Intensive Systems - VaMoS'12. ACM Press, Leipzig, Germany (2012). https://doi.org/10.1145/2110147.2110167

Show all 129 references
  1. [8]

    Concurrent Engineering 21(1), 39–53 (2012) https://doi.org/10.1177/1063293x12469216

    Gedell, S., Johannesson, H.: Design rationale and system description aspects in product platform design: Focusing reuse in the design lifecycle phase. Concurrent Engineering 21(1), 39–53 (2012) https://doi.org/10.1177/1063293x12469216

  2. [9]

    In: 46th AIAA Aerospace Sciences Meeting and Exhibit, pp

    Mavris, D., de Tenorio, C., Armstrong, M.: Methodology for aircraft system architecture definition. In: 46th AIAA Aerospace Sciences Meeting and Exhibit, pp. 1–14. American Institute of Aeronautics and Astronautics, Reston, Virigina (2008). https://doi.org/10.2514/6.2008-149

  3. [10]

    In: 54th AIAA Aerospace Sci- ences Meeting, vol

    Chakraborty, I., Mavris, D.N.: Integrated Assessment of Aircraft and Novel Subsystem Architectures in Early Design. In: 54th AIAA Aerospace Sci- ences Meeting, vol. 54, pp. 1268–1282. American Institute of Aeronautics and Astronautics, Reston, Virginia (2016). https://doi.org/...

  4. [11]

    PhD thesis, Massachusetts Institute of Technology (2008)

    Simmons, W.L.: A framework for decision support in systems architecting. PhD thesis, Massachusetts Institute of Technology (2008)

  5. [12]

    In: Volume 11A: 46th Design Automation Conference (DAC)

    Herber, D.R.: Enhancements to the perfect matching approach for graph enumeration-based engineering challenges. In: Volume 11A: 46th Design Automation Conference (DAC). American Society of Mechanical Engineers, ??? (2020). https://doi.org/10.1115/detc2020-22774 46

  6. [13]

    In: AIAA A VIATION 2024 FORUM, Las Vegas, NV, USA (2024)

    Bussemaker, J.H., Boggero, L., Nagel, B.: System architecture design space exploration: Integration with computational environments and efficient opti- mization. In: AIAA A VIATION 2024 FORUM, Las Vegas, NV, USA (2024). https://doi.org/10.2514/6.2024-4647

  7. [14]

    Sobieszczanski-Sobieski, J., Morris, A., van Tooren, M.J.L.: Multidisciplinary Design Optimization Supported by Knowledge Based Engineering, pp. 1–378. John Wiley & Sons, Ltd, West Sussex, UK (2015). https://doi.org/10.1002/ 9781118897072

  8. [15]

    IEEE, ??? (2021)

    Chaudemar, J.-C., Saqui-Sannes, P.: MBSE and MDAO for early validation of design decisions: a bibliography survey. IEEE, ??? (2021). https://doi.org/10. 1109/syscon48628.2021.9447140

  9. [16]

    In: The Complex Systems Deisgn & Management Conference (CSD&M 2022) (2022)

    Helle, P., Schramm, G., Klostermann, S., Feo-Arenis, S.: Enabling multidisciplinary-analysis of SysML models in a heterogeneous tool land- scape using parametric analysis models. In: The Complex Systems Deisgn & Management Conference (CSD&M 2022) (2022)

  10. [17]

    In: 32nd Annual INCOSE International Symposium, Detroit, MI, USA (2022)

    Bussemaker, J.H., Boggero, L., Ciampa, P.D.: From system architecting to sys- tem design and optimization: A link between MBSE and MDAO. In: 32nd Annual INCOSE International Symposium, Detroit, MI, USA (2022). https: //doi.org/10.1002/iis2.12935

  11. [18]

    Sonneveld, J.S., Berg, T., La Rocca, G., Valencia-Ib´ a˜ nez, S., Manen, B., Brugge- man, A.M.R.M.: Dynamic workflow generation applied to aircraft moveable architecture optimization (2023) https://doi.org/10.13009/EUCASS2023-544

  12. [19]

    In: AIAA SCITECH 2024 Forum

    Bruggeman, A., Nikitin, M., La Rocca, G., Bergsma, O.: Model-based approach for the simultaneous design of airframe components and their production process using dynamic mdao workflows. In: AIAA SCITECH 2024 Forum. American Institute of Aeronautics and Astronautics, Orlando, F...

  13. [20]

    In: AIAA A VIATION 2024 FORUM, Las Vegas, NV, USA (2024)

    Garg, S., Garc ´ ıa S´ anchez, R., Bussemaker, J.H., Boggero, L., Nagel, B.: Dynamic formulation and excecution of MDAO workflows for architecture optimization. In: AIAA A VIATION 2024 FORUM, Las Vegas, NV, USA (2024). https://doi. org/10.2514/6.2024-4402

  14. [21]

    In: 57th AIAA/ASCE/AHS/ASC Structures, Structural Dynamics, and Materials Conference, Reston, Virginia, pp

    Frank, C.P., Marlier, R., Pinon-Fischer, O.J., Mavris, D.N.: An evolutionary multi-architecture multi-objective optimization algorithm for design space explo- ration. In: 57th AIAA/ASCE/AHS/ASC Structures, Structural Dynamics, and Materials Conference, Reston, Virginia, pp. 1–...

  15. [22]

    In: 41st Computers and Infor- mation in Engineering Conference (CIE)

    Apaza, G., Selva, D.: Automatic composition of encoding scheme and search 47 operators in system architecture optimization. In: 41st Computers and Infor- mation in Engineering Conference (CIE). American Society of Mechanical Engineers, Virtual (2021). https://doi.org/10.1115/d...

  16. [23]

    In: AIAA A VIATION 2024 FORUM, Las Vegas, NV, USA (2024)

    Bussemaker, J.H., Saves, P., Bartoli, N., Lefebvre, T., Nagel, B.: Surrogate- based optimization of system architectures subject to hidden constraints. In: AIAA A VIATION 2024 FORUM, Las Vegas, NV, USA (2024). https://doi.org/ 10.2514/6.2024-4401

  17. [24]

    In: Automated Machine Learning, pp

    Feurer, M., Hutter, F.: Hyperparameter optimization. In: Automated Machine Learning, pp. 3–33. Springer, Switzerland (2019). https://doi.org/10.1007/ 978-3-030-05318-5 1

  18. [25]

    WIREs Data Mining and Knowledge Discovery 13(2) (2023) https://doi.org/ 10.1002/widm.1484

    Bischl, B., Binder, M., Lang, M., Pielok, T., Richter, J., Coors, S., Thomas, J., Ullmann, T., Becker, M., Boulesteix, A., Deng, D., Lindauer, M.: Hyperparam- eter optimization: Foundations, algorithms, best practices, and open challenges. WIREs Data Mining and Knowledge Disco...

  19. [26]

    Cambridge University Press, Cambridge (2022)

    Martins, J.R.R.A., Ning, A.: Engineering Design Optimization. Cambridge University Press, Cambridge (2022). https://mdobook.github.io/

  20. [27]

    In: AeroBest 2021 (2021)

    Saves, P., Bartoli, N., Diouane, Y., Lefebvre, T., Morlier, J., David, C., , Nguyen Van, E., Defoort, S.: Constrained bayesian optimization over mixed categorical variables, with application to aircraft design. In: AeroBest 2021 (2021). https: //hal.science/hal-03346341v1/file...

  21. [28]

    Neurocomputing 550, 126472 (2023) https://doi.org/10.1016/j.neucom.2023.126472

    Saves, P., Diouane, Y., Bartoli, N., Lefebvre, T., Morlier, J.: A mixed-categorical correlation kernel for gaussian process. Neurocomputing 550, 126472 (2023) https://doi.org/10.1016/j.neucom.2023.126472

  22. [29]

    In: Madni, A.M., Augustine, N., Sievers, M

    Bussemaker, J.H., Ciampa, P.D.: MBSE in architecture design space exploration. In: Madni, A.M., Augustine, N., Sievers, M. (eds.) Handbook of Model-Based Systems Engineering. Springer, Switzerland (2022). https://doi.org/10.1007/ 978-3-030-27486-3 36-1

  23. [30]

    Optimization and Engineering (2020) https://doi.org/10.1007/s11081-020-09520-z

    Pelamatti, J., Brevault, L., Balesdent, M., Talbi, E., Guerin, Y.: Bayesian opti- mization of variable-size design space problems. Optimization and Engineering (2020) https://doi.org/10.1007/s11081-020-09520-z

  24. [31]

    In: 26th Congress of International Council of the Aeronautical Sciences, Anchorage, Alaska, USA (2008)

    Armstrong, M., Tenorio, C., Garcia, E., Mavris, D.: Function based architec- ture design space definition and exploration. In: 26th Congress of International Council of the Aeronautical Sciences, Anchorage, Alaska, USA (2008). https: //doi.org/10.2514/6.2008-8928

  25. [32]

    In: Parallel Problem Solving from Nature, PPSN 48 XI vol

    Zaefferer, M., Horn, D.: A first analysis of kernels for kriging-based optimization in hierarchical search spaces. In: Parallel Problem Solving from Nature, PPSN 48 XI vol. 1, pp. 399–410. Springer, Berlin, Heidelberg (2018). https://doi.org/10. 1007/978-3-319-99259-4 32

  26. [33]

    Hutter, F., Osborne, M.A.: A kernel for hierarchical parameter spaces (2013) https://doi.org/10.48550/arXiv.1310.5738

  27. [34]

    In: Advances in Neural Information Processing Systems 24, Granada, Spain (2011)

    Bergstra, J., Bardenet, R., Bengio, Y., K´ egl, B.: Algorithms for hyper-parameter optimization. In: Advances in Neural Information Processing Systems 24, Granada, Spain (2011)

  28. [35]

    In: Proceedings of the 34th International Conference on Machine Learning, Sydney, Australia (2017)

    Jenatton, R., Archambeau, C., Gonz´ alez, J., Seeger, M.: Bayesian optimization with tree-structured dependencies. In: Proceedings of the 34th International Conference on Machine Learning, Sydney, Australia (2017)

  29. [36]

    Journal of Optimization Theory and Applications 156(2), 450–468 (2012) https://doi.org/10.1007/s10957-012-0122-6

    Abdelkhalik, O.: Hidden genes genetic optimization for variable-size design space problems. Journal of Optimization Theory and Applications 156(2), 450–468 (2012) https://doi.org/10.1007/s10957-012-0122-6

  30. [37]

    Talbi, P.E.-G.: Metaheuristics for (variable-size) mixed optimization problems: A unified taxonomy and survey (2024) https://doi.org/10.48550/ARXIV.2401. 03880

  31. [38]

    In: 2017 International Joint Conference on Neural Networks (IJCNN)

    Levesque, J.-C., Durand, A., Gagne, C., Sabourin, R.: Bayesian optimization for conditional hyperparameter spaces. In: 2017 International Joint Conference on Neural Networks (IJCNN). IEEE, Anchorage, Alaska, USA (2017). https: //doi.org/10.1109/ijcnn.2017.7965867

  32. [39]

    PhD thesis, Massachusetts Institute of Technology, Dept

    Selva, D.: Rule-based system architecting of earth observation satellite systems. PhD thesis, Massachusetts Institute of Technology, Dept. of Aeronautics and Astronautics (2012). http://hdl.handle.net/1721.1/76089

  33. [40]

    Wiley John and Sons, Hoboken, NJ, USA (2015)

    Weilkiens, T., Lamm, J.G., Roth, S.: Model-Based System Architecture. Wiley John and Sons, Hoboken, NJ, USA (2015). https://doi.org/10.1002/ 9781119051930

  34. [41]

    Optimization and Engineering (2023) https://doi.org/10

    Le Digabel, S., Wild, S.M.: A taxonomy of constraints in black-box simulation- based optimization. Optimization and Engineering (2023) https://doi.org/10. 1007/s11081-023-09839-3

  35. [42]

    In: Proceedings of the 36th International Conference on Machine Learning

    Ying, C., Klein, A., Christiansen, E., Real, E., Murphy, K., Hutter, F.: NAS- bench-101: Towards reproducible neural architecture search. In: Proceedings of the 36th International Conference on Machine Learning. PMLR, Long Beach, CA, USA (2019)

  36. [43]

    Computer Science Review 3(3), 175–192 (2009) https://doi.org/10.1016/j.cosrev.2009.07.001 49

    Salcedo-Sanz, S.: A survey of repair methods used as constraint handling tech- niques in evolutionary algorithms. Computer Science Review 3(3), 175–192 (2009) https://doi.org/10.1016/j.cosrev.2009.07.001 49

  37. [44]

    In: Proceedings of the 2015 Annual Conference on Genetic and Evolutionary Computation

    Koch, P., Bagheri, S., Konen, W., Foussette, C., Krause, P., B¨ ack, T.: A new repair method for constrained optimization. In: Proceedings of the 2015 Annual Conference on Genetic and Evolutionary Computation. ACM, Madrid, Spain (2015). https://doi.org/10.1145/2739480.2754658

  38. [45]

    Information Systems 35(6), 615–636 (2010) https://doi.org/10.1016/j.is.2010.01.001

    Benavides, D., Segura, S., Ruiz-Cort´ es, A.: Automated analysis of feature models 20 years later: A literature review. Information Systems 35(6), 615–636 (2010) https://doi.org/10.1016/j.is.2010.01.001

  39. [47]

    Journal of Global Optimization 13, 455–492 (1998) https://doi.org/10.1023/A:1008306431147

    Jones, D.R., Schonlau, M., Welch, W.J.: Efficient global optimization of expen- sive black-box functions. Journal of Global Optimization 13, 455–492 (1998) https://doi.org/10.1023/A:1008306431147

  40. [48]

    Springer, USA (1998)

    Miettinen, K.: Nonlinear Multiobjective Optimization. Springer, USA (1998). https://doi.org/10.1007/978-1-4615-5563-6

  41. [49]

    In: 6th International Multi-Objective Programming and Goal Programming Conference, Hammamet, Tunisia (2004)

    Rudenko, O., Schoenauer, M.: A steady performance stopping criterion for Pareto-based evolutionary algorithms. In: 6th International Multi-Objective Programming and Goal Programming Conference, Hammamet, Tunisia (2004)

  42. [50]

    Aerospace Science and Technology 105, 105980 (2020)

    Priem, R., Bartoli, N., Diouane, Y., Sgueglia, A.: Upper trust bound feasibil- ity criterion for mixed constrained Bayesian optimization with application to aircraft design. Aerospace Science and Technology 105, 105980 (2020)

  43. [51]

    Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences 462(2067), 935–945 (2006) https://doi.org/10.1098/rspa.2005.1608

    Forrester, A.I.J., S´ obester, A., Keane, A.J.: Optimization with missing data. Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences 462(2067), 935–945 (2006) https://doi.org/10.1098/rspa.2005.1608

  44. [52]

    INFORMS Journal on Computing 31(4), 689–702 (2019) https://doi.org/10.1287/ijoc.2018.0864

    M¨ uller, J., Day, M.: Surrogate optimization of computationally expensive black- box problems with hidden constraints. INFORMS Journal on Computing 31(4), 689–702 (2019) https://doi.org/10.1287/ijoc.2018.0864

  45. [53]

    In: AIAA SCITECH 2022 Forum (2022)

    Krengel, M.D., Hepperle, M.: Effects of wing elasticity and basic load alleviation on conceptual aircraft designs. In: AIAA SCITECH 2022 Forum (2022). https: //doi.org/10.2514/6.2022-0126

  46. [54]

    Neurocomputing 415, 295–316 (2020) https: //doi.org/10.1016/j.neucom.2020.07.061

    Yang, L., Shami, A.: On hyperparameter optimization of machine learning algorithms: Theory and practice. Neurocomputing 415, 295–316 (2020) https: //doi.org/10.1016/j.neucom.2020.07.061

  47. [55]

    Jour- nal of Global Optimization 79(3), 521–566 (2020) https://doi.org/10.1007/ 50 s10898-020-00952-6

    Jones, D.R., Martins, J.R.R.A.: The DIRECT algorithm: 25 years later. Jour- nal of Global Optimization 79(3), 521–566 (2020) https://doi.org/10.1007/ 50 s10898-020-00952-6

  48. [56]

    EURO Journal on Computational Optimization 9, 100012 (2021) https://doi.org/10.1016/j.ejco.2021.100012

    Locatelli, M., Schoen, F.: (Global) optimization: Historical notes and recent developments. EURO Journal on Computational Optimization 9, 100012 (2021) https://doi.org/10.1016/j.ejco.2021.100012

  49. [57]

    Glover, F., Kochenberger, G.: Handbook of Metaheuristics vol. 57, pp. 457– 474474 (2003). https://doi.org/10.1007/b101874

  50. [58]

    Petrowski, A., Ben-Hamida, S.: Evolutionary Algorithms, p. 256. John Wiley & Sons, London, UK (2017)

  51. [59]

    In: Proceedings of the Genetic and Evolutionary Computation Conference

    Hamano, R., Saito, S., Nomura, M., Shirakawa, S.: CMA-ES with margin. In: Proceedings of the Genetic and Evolutionary Computation Conference. ACM, Boston, US (2022). https://doi.org/10.1145/3512290.3528827

  52. [60]

    IEEE Transactions on Evolutionary Computation 6(2), 182–197 (2002) https://doi.org/10.1109/4235.996017

    Deb, K., Pratap, A., Agarwal, S., Meyarivan, T.: A fast and elitist multiobjective genetic algorithm: NSGA-II. IEEE Transactions on Evolutionary Computation 6(2), 182–197 (2002) https://doi.org/10.1109/4235.996017

  53. [61]

    Journal of Aerospace Information Systems 12(3), 314–328 (2015) https://doi.org/10.2514/1.i010272

    Nyew, H.M., Abdelkhalik, O., Onder, N.: Structured-chromosome evolution- ary algorithms for variable-size autonomous interplanetary trajectory planning optimization. Journal of Aerospace Information Systems 12(3), 314–328 (2015) https://doi.org/10.2514/1.i010272

  54. [62]

    SIAM Journal on Optimization 24(4), 1980–1998 (2014) https://doi.org/10.1137/ 130917661

    Gratton, S., Vicente, L.N.: A merit function approach for direct search. SIAM Journal on Optimization 24(4), 1980–1998 (2014) https://doi.org/10.1137/ 130917661

  55. [63]

    Information and Software Technology 61, 33–51 (2015) https://doi.org/10.1016/j.infsof.2015.01

    Lopez-Herrejon, R.E., Linsbauer, L., Egyed, A.: A systematic mapping study of search-based software engineering for software product lines. Information and Software Technology 61, 33–51 (2015) https://doi.org/10.1016/j.infsof.2015.01. 008

  56. [64]

    PhD thesis, Georgia Institute of Technology (August 2005)

    Buonanno, M.A.: A method for aircraft concept exploration using multicrite- ria interactive genetic algorithms. PhD thesis, Georgia Institute of Technology (August 2005)

  57. [65]

    Journal of Aircraft 49(6), 1988–2000 (2012) https://doi.org/10.2514/1.C031667

    Pate, D.J., Patterson, M.D., German, B.J.: Optimizing Families of Reconfig- urable Aircraft for Multiple Missions. Journal of Aircraft 49(6), 1988–2000 (2012) https://doi.org/10.2514/1.C031667

  58. [66]

    Optimization and Engineering 19(2), 359–381 (2018) https://doi.org/10.1007/ s11081-018-9373-x 51

    Frank, C.P., Marlier, R.A., Pinon-Fischer, O.J., Mavris, D.N.: Evolution- ary multi-objective multi-architecture design space exploration methodology. Optimization and Engineering 19(2), 359–381 (2018) https://doi.org/10.1007/ s11081-018-9373-x 51

  59. [67]

    Soft Computing 23(9), 3137–3166 (2019) https://doi.org/10.1007/ s00500-017-2965-0

    Chugh, T., Sindhya, K., Hakanen, J., Miettinen, K.: A survey on handling com- putationally expensive multiobjective optimization problems with evolutionary algorithms. Soft Computing 23(9), 3137–3166 (2019) https://doi.org/10.1007/ s00500-017-2965-0

  60. [68]

    Engineering Optimization 45(5), 529–555 (2013) https://doi.org/10.1080/ 0305215x.2012.687731

    Regis, R.G., Shoemaker, C.A.: Combining radial basis function surrogates and dynamic coordinate search in high-dimensional expensive black-box optimiza- tion. Engineering Optimization 45(5), 529–555 (2013) https://doi.org/10.1080/ 0305215x.2012.687731

  61. [69]

    Applied Soft Computing 61, 377–393 (2017) https://doi.org/10.1016/j.asoc

    Bagheri, S., Konen, W., Emmerich, M., B¨ ack, T.: Self-adjusting parameter control for surrogate-assisted constrained optimization under limited budgets. Applied Soft Computing 61, 377–393 (2017) https://doi.org/10.1016/j.asoc. 2017.07.060

  62. [70]

    Cambridge University Press, Cambridge, UK (2023)

    Garnett, R.: Bayesian Optimization. Cambridge University Press, Cambridge, UK (2023). https://doi.org/10.1017/9781108348973

  63. [71]

    In: Lecture Notes - Monograph Series, pp

    Schonlau, M., Welch, W.J., Jones, D.R.: Global versus local search in constrained optimization of computer models. In: Lecture Notes - Monograph Series, pp. 11–

  64. [72]

    https://doi.org/10.1214/ lnms/1215456182

    Institute of Mathematical Statistics, online (1998). https://doi.org/10.1214/ lnms/1215456182

  65. [73]

    PhD thesis, University of Michigan (2002)

    Sasena, M.J.: Flexibility and Efficiency Enhancements for Constrained Global Design Optimization with Kriging Approximations. PhD thesis, University of Michigan (2002)

  66. [74]

    IEEE Transactions on Evolutionary Computation 10(1), 50–66 (2006) https://doi.org/10.1109/TEVC

    Knowles, J.: ParEGO: a hybrid algorithm with on-line landscape approxima- tion for expensive multiobjective optimization problems. IEEE Transactions on Evolutionary Computation 10(1), 50–66 (2006) https://doi.org/10.1109/TEVC. 2005.851274

  67. [75]

    Computers & Operations Research 116, 104869 (2019) https://doi.org/10.1016/j.cor.2019.104869

    Rojas-Gonzalez, S., Van Nieuwenhuyse, I.: A survey on Kriging-based infill algo- rithms for multiobjective simulation optimization. Computers & Operations Research 116, 104869 (2019) https://doi.org/10.1016/j.cor.2019.104869

  68. [76]

    Neu- rocomputing 380, 20–35 (2020) https://doi.org/10.1016/j.neucom.2019.11.004

    Garrido-Merch´ an, E.C., Hern´ andez-Lobato, D.: Dealing with categorical and integer-valued variables in bayesian optimization with gaussian processes. Neu- rocomputing 380, 20–35 (2020) https://doi.org/10.1016/j.neucom.2019.11.004

  69. [77]

    Daulton, S., Wan, X., Eriksson, D., Balandat, M., Osborne, M.A., Bakshy, E.: Bayesian optimization over discrete and mixed spaces via probabilistic reparameterization (2022) https://doi.org/10.48550/ARXIV.2210.10199

  70. [78]

    Journal of Global Opti- mization 73(3), 583–613 (2019) https://doi.org/10.1007/s10898-018-0715-1 52

    Pelamatti, J., Brevault, L., Balesdent, M., Talbi, E., Guerin, Y.: Efficient global optimization of constrained mixed variable problems. Journal of Global Opti- mization 73(3), 583–613 (2019) https://doi.org/10.1007/s10898-018-0715-1 52

  71. [79]

    INFOR: Information Systems and Opera- tional Research 58(2), 310–341 (2020) https://doi.org/10.1080/03155986.2020

    Zuniga, M.M., Sinoquet, D.: Global optimization for mixed categorical- continuous variables based on gaussian process models with a randomized categorical space exploration step. INFOR: Information Systems and Opera- tional Research 58(2), 310–341 (2020) https://doi.org/10.108...

  72. [80]

    Dreczkowski, K., Grosnit, A., Ammar, H.B.: Framework and benchmarks for combinatorial and mixed-variable bayesian optimization (2023) https://doi.org/ 10.48550/ARXIV.2306.09803

  73. [81]

    Operations Research Forum 4, 1–37 (2023)

    Audet, C., Hall´ e-Hannan, E., Le Digabel, S.: A general mathematical framework for constrained mixed-variable blackbox optimization problems with meta and categorical variables. Operations Research Forum 4, 1–37 (2023)

  74. [82]

    In: Proceedings of the Genetic and Evolutionary Computa- tion Conference

    Horn, D., Stork, J., Sch¨ ußler, N., Zaefferer, M.: Surrogates for hierarchical search spaces. In: Proceedings of the Genetic and Evolutionary Computa- tion Conference. ACM, Prague, CZ (2019). https://doi.org/10.1145/3321707. 3321765

  75. [83]

    In: Proceedings of the 35th International Conference on Machine Learning

    Lu, X., Gonzalez, J., Dai, Z., Lawrence, N.: Structured variationally auto- encoded optimization. In: Proceedings of the 35th International Conference on Machine Learning. PMLR, Stockholm, SE (2018)

  76. [84]

    Advances in Engineering Software 188, 103571 (2024) https://doi.org/10.1016/ j.advengsoft.2023.103571

    Saves, P., Lafage, R., Bartoli, N., Diouane, Y., Bussemaker, J.H., Lefebvre, T., Hwang, J.T., Morlier, J., Martins, J.R.R.A.: SMT 2.0: A surrogate modeling toolbox with a focus on hierarchical and mixed variables gaussian processes. Advances in Engineering Software 188, 103571...

  77. [85]

    Engineering Optimization 50(12), 2038–2053 (2018) https://doi.org/10.1080/0305215x.2017

    Bouhlel, M.A., Bartoli, N., Regis, R.G., Otsmane, A., Morlier, J.: Efficient global optimization for high-dimensional constrained problems by using the kriging models combined with the partial least squares method. Engineering Optimization 50(12), 2038–2053 (2018) https://doi....

  78. [86]

    In: AIAA A VIATION 2023 Forum

    Priem, R., Bartoli, N., Diouane, Y., Dubreuil, S., Saves, P.: High-dimensional efficient global optimization using both random and supervised embeddings. In: AIAA A VIATION 2023 Forum. American Institute of Aeronautics and Astronautics, San Diego, CA, USA (2023). https://doi.o...

  79. [87]

    Structural and Multidisciplinary Optimization 67(5) (2024) https://doi.org/10.1007/s00158-024-03785-z 53

    Saves, P., Diouane, Y., Bartoli, N., Lefebvre, T., Morlier, J.: High-dimensional mixed-categorical gaussian processes with application to multidisciplinary design optimization for a green aircraft. Structural and Multidisciplinary Optimization 67(5) (2024) https://doi.org/10.1...

  80. [88]

    In: Lecture Notes in Computer Sci- ence, pp

    Hutter, F., Hoos, H.H., Leyton-Brown, K.: Sequential model-based optimiza- tion for general algorithm configuration. In: Lecture Notes in Computer Sci- ence, pp. 507–523. Springer, Berlin Heidelberg (2011). https://doi.org/10.1007/ 978-3-642-25566-3 40

  81. [89]

    Journal of Machine Learning Research 23(54), 1–9 (2022)

    Lindauer, M., Eggensperger, K., Feurer, M., Biedenkapp, A., Deng, D., Ben- jamins, C., Ruhkopf, T., Sass, R., Hutter, F.: SMAC3: A versatile Bayesian optimization package for hyperparameter optimization. Journal of Machine Learning Research 23(54), 1–9 (2022)

  82. [90]

    Journal of Artificial Intelligence Research 73, 1209–1250 (2022) https://doi.org/10.1613/jair.1.13188

    Ozaki, Y., Tanigaki, Y., Watanabe, S., Nomura, M., Onishi, M.: Multiobjective tree-structured parzen estimator. Journal of Artificial Intelligence Research 73, 1209–1250 (2022) https://doi.org/10.1613/jair.1.13188

  83. [91]

    Proceedings of the AAAI Conference on Artificial Intelligence 29(1) (2015) https://doi.org/10.1609/aaai

    Eggensperger, K., Hutter, F., Hoos, H., Leyton-Brown, K.: Efficient bench- marking of hyperparameter optimizers via surrogates. Proceedings of the AAAI Conference on Artificial Intelligence 29(1) (2015) https://doi.org/10.1609/aaai. v29i1.9375

  84. [92]

    Engineering Applications of Artificial Intelligence 121, 105941 (2023)

    Gamot, J., Balesdent, M., Tremolet, A., Wuilbercq, R., Melab, N., Talbi, E.-G.: Hidden-variables genetic algorithm for variable-size design space optimal layout problems with application to aerospace vehicles. Engineering Applications of Artificial Intelligence 121, 105941 (2023)

  85. [93]

    IEEE Access 8, 13937–13948 (2020) https://doi.org/10.1109/access.2020.2966228

    Greenhill, S., Rana, S., Gupta, S., Vellanki, P., Venkatesh, S.: Bayesian optimiza- tion for adaptive experimental design: A review. IEEE Access 8, 13937–13948 (2020) https://doi.org/10.1109/access.2020.2966228

  86. [94]

    In: 2016 International Joint Conference on Neural Net- works (IJCNN)

    Calandra, R., Peters, J., Rasmussen, C.E., Deisenroth, M.P.: Manifold gaussian processes for regression. In: 2016 International Joint Conference on Neural Net- works (IJCNN). IEEE, Vancouver, CA (2016). https://doi.org/10.1109/ijcnn. 2016.7727626

  87. [95]

    Structural and Multidisciplinary Optimization 53(5), 935–952 (2016) https://doi.org/10.1007/s00158-015-1395-9

    Bouhlel, M.A., Bartoli, N., Otsmane, A., Morlier, J.: Improving Kriging sur- rogates of high-dimensional design models by Partial Least Squares dimension reduction. Structural and Multidisciplinary Optimization 53(5), 935–952 (2016) https://doi.org/10.1007/s00158-015-1395-9

  88. [96]

    In: AIAA SCITECH 2022 Forum

    Saves, P., Bartoli, N., Diouane, Y., Lefebvre, T., Morlier, J., David, C., Van, E.N., Defoort, S.: Multidisciplinary design optimization with mixed categori- cal variables for aircraft design. In: AIAA SCITECH 2022 Forum. American Institute of Aeronautics and Astronautics, San...

  89. [97]

    In: AIAA SCITECH 2023 Forum

    Charayron, R., Lefebvre, T., Bartoli, N., Morlier, J.: Multi-fidelity Bayesian optimization strategy applied to overall drone design. In: AIAA SCITECH 2023 Forum. American Institute of Aeronautics and Astronautics, National Harbor, 54 MD, USA (2023). https://doi.org/10.2514/6....

  90. [98]

    Advances in Engineering Software 135, 102662 (2019) https://doi.org/10.1016/j.advengsoft

    Bouhlel, M.A., Hwang, J.T., Bartoli, N., Lafage, R., Morlier, J., Martins, J.R.R.A.: A Python surrogate modeling framework with derivatives. Advances in Engineering Software 135, 102662 (2019) https://doi.org/10.1016/j.advengsoft. 2019.03.005

  91. [99]

    In: Proceedings of the 35th International Conference on Machine Learning

    Lyu, W., Yang, F., Yan, C., Zhou, D., Zeng, X.: Batch Bayesian optimization via multi-objective acquisition ensemble for automated analog circuit design. In: Proceedings of the 35th International Conference on Machine Learning. PMLR, Stockholm, SE (2018)

  92. [100]

    Cowen-Rivers, A.I., Lyu, W., Tutunov, R., Wang, Z., Grosnit, A., Griffiths, R.R., Maraval, A.M., Jianye, H., Wang, J., Peters, J., Ammar, H.B.: HEBO: Pushing the limits of sample-efficient hyperparameter optimisation (2020) https: //doi.org/10.48550/ARXIV.2012.03826

  93. [101]

    In: Computational Intelligence in Expensive Optimization Prob- lems, pp

    Ginsbourger, D., Riche, R.L., Carraro, L.: Kriging is well-suited to parallelize optimization. In: Computational Intelligence in Expensive Optimization Prob- lems, pp. 131–162. Springer, Berlin Heidelberg (2010). https://doi.org/10.1007/ 978-3-642-10701-6 6

  94. [102]

    In: 1992 IEEE International Conference on Systems, Man, and Cybernetics

    Cox, D.D., John, S.: A statistical method for global optimization. In: 1992 IEEE International Conference on Systems, Man, and Cybernetics. IEEE, Chicago, IL, USA (1992). https://doi.org/10.1109/icsmc.1992.271617

  95. [103]

    16th Conference on the Computation of Electromagnetic Fields, COMPUMAG, Aachen, Germany 3, 965–966 (2007)

    Hawe, G.I., Sykulski, J.K.: An enhanced probability of improvement utility func- tion for locating pareto optimal solutions. 16th Conference on the Computation of Electromagnetic Fields, COMPUMAG, Aachen, Germany 3, 965–966 (2007)

  96. [104]

    In: Proceedings of the Genetic and Evo- lutionary Computation Conference on - GECCO ’17, pp

    Rahat, A.A.M., Everson, R.M., Fieldsend, J.E.: Alternative infill strategies for expensive multi-objective optimisation. In: Proceedings of the Genetic and Evo- lutionary Computation Conference on - GECCO ’17, pp. 873–880. ACM Press, New York, USA (2017). https://doi.org/10.11...

  97. [105]

    Structural and Multidisciplinary Optimization 65(1) (2021) https://doi.org/10.1007/s00158-021-03134-4

    Sohst, M., Afonso, F., Suleman, A.: Surrogate-based optimization based on the probability of feasibility. Structural and Multidisciplinary Optimization 65(1) (2021) https://doi.org/10.1007/s00158-021-03134-4

  98. [106]

    Jour- nal of Open Source Software 8(89), 5564 (2023) https://doi.org/10.21105/joss

    Bussemaker, J.H.: SBArchOpt: Surrogate-based architecture optimization. Jour- nal of Open Source Software 8(89), 5564 (2023) https://doi.org/10.21105/joss. 05564

  99. [107]

    IEEE Access 8, 89497–89509 (2020) https://doi.org/10.1109/access.2020.2990567

    Blank, J., Deb, K.: Pymoo: Multi-objective optimization in python. IEEE Access 8, 89497–89509 (2020) https://doi.org/10.1109/access.2020.2990567

  100. [108]

    Lindauer, M., Eggensperger, K., Feurer, M., Biedenkapp, A., Marben, J., M¨ uller, 55 P., Hutter, F.: BOAH: A tool suite for multi-fidelity Bayesian optimization & analysis of hyperparameters (2019) https://doi.org/10.48550/ARXIV.1908. 06756

  101. [109]

    Advances in Neural Information Processing Systems 33 (2019) https: //doi.org/10.48550/ARXIV.1910.06403

    Balandat, M., Karrer, B., Jiang, D.R., Daulton, S., Letham, B., Wilson, A.G., Bakshy, E.: BoTorch: A framework for efficient monte-carlo Bayesian opti- mization. Advances in Neural Information Processing Systems 33 (2019) https: //doi.org/10.48550/ARXIV.1910.06403

  102. [110]

    Picheny, V., Berkeley, J., Moss, H.B., Stojic, H., Granta, U., Ober, S.W., Arte- mev, A., Ghani, K., Goodall, A., Paleyes, A., Vakili, S., Pascual-Diaz, S., Markou, S., Qing, J., Loka, N.R.B.S., Couckuyt, I.: Trieste: Efficiently explor- ing the depths of black-box functions w...

  103. [111]

    Aerospace Science and Technology 90, 85–102 (2019) https://doi.org/10.1016/j.ast.2019.03.041

    Bartoli, N., Lefebvre, T., Dubreuil, S., Olivanti, R., Priem, R., Bons, N., Mar- tins, J.R.R.A., Morlier, J.: Adaptive modeling strategy for constrained global optimization with application to aerodynamic wing design. Aerospace Science and Technology 90, 85–102 (2019) https://...

  104. [112]

    In: AIAA A VIATION 2022 Forum

    Bekemeyer, P., Bertram, A., Hines Chaves, D.A., Dias Ribeiro, M., Garbo, A., Kiener, A., Sabater, C., Stradtner, M., Wassing, S., Widhalm, M., Goertz, S., Jaeckel, F., Hoppe, R., Hoffmann, N.: Data-driven aerodynamic modeling using the DLR SMARTy toolbox. In: AIAA A VIATION 20...

  105. [113]

    mathesis, Delft University of Technology, Delft, NL (January 2024)

    Garc ´ ıa S´ anchez, R.: Adaptation of an MDO platform for system architecture optimization. mathesis, Delft University of Technology, Delft, NL (January 2024)

  106. [114]

    Optimization Online (2024)

    Hall´ e-Hannan, E., Audet, C., Diouane, Y., Le Digabel, S., Saves, P.: A graph-structured distance for heterogeneous datasets with meta variables. Optimization Online (2024)

  107. [115]

    In: Aerospace Europe Conference 2023 (2023)

    Baraton, L., Urbano, A., Brevault, L., Balesdent, M.: Comparative review of multidisciplinary design analysis and optimization architectures for the prelim- inary design of a liquid rocket engine. In: Aerospace Europe Conference 2023 (2023)

  108. [116]

    Technometrics51(4), 354–365 (2009) https://doi.org/10.1198/TECH.2009.07097

    Hung, Y., Joseph, V.R., Melkote, S.N.: Design and Analysis of Computer Experi- ments With Branching and Nested Factors. Technometrics51(4), 354–365 (2009) https://doi.org/10.1198/TECH.2009.07097

  109. [117]

    In: Proceedings of the 23rd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining 56 (2017)

    Golovin, D., Solnik, B., Moitra, S., Kochanski, G., Karro, J., Sculley, D.: Google vizier: A service for black-box optimization. In: Proceedings of the 23rd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining 56 (2017)

  110. [118]

    In: AIAA A VIATION 2022 Forum

    Saves, P., Diouane, Y., Bartoli, N., Lefebvre, T., Morlier, J.: A general square exponential kernel to handle mixed-categorical variables for gaussian process. In: AIAA A VIATION 2022 Forum. American Institute of Aeronautics and Astronautics, Chicago, IL, USA (2022). https://d...

  111. [119]

    Mathematical Biosciences 337, 108593 (2021) https://doi.org/10.1016/j.mbs.2021.108593

    Renardy, M., Joslyn, L.R., Millar, J.A., Kirschner, D.E.: To sobol or not to sobol? the effects of sampling schemes in systems biology applications. Mathematical Biosciences 337, 108593 (2021) https://doi.org/10.1016/j.mbs.2021.108593

  112. [120]

    In: 2019 IEEE/ACM 41st Interna- tional Conference on Software Engineering (ICSE)

    Kaltenecker, C., Grebhahn, A., Siegmund, N., Guo, J., Apel, S.: Distance-based sampling of software configuration spaces. In: 2019 IEEE/ACM 41st Interna- tional Conference on Software Engineering (ICSE). IEEE, Montreal, CA (2019). https://doi.org/10.1109/icse.2019.00112

  113. [121]

    In: Breitkopf, P., Coelho, R.F

    Collette, Y., Hansen, N., Pujol, G., Aponte, D.S., Riche, R.L.: Object-Oriented Programming of Optimizers – Examples in Scilab. In: Breitkopf, P., Coelho, R.F. (eds.) Multidisciplinary Design Optimization in Computational Mechanics, pp. 499–538. Wiley, London, UK (2013). https...

  114. [122]

    In: Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery and Data Mining

    Li, Y., Shen, Y., Zhang, W., Chen, Y., Jiang, H., Liu, M., Jiang, J., Gao, J., Wu, W., Yang, Z., Zhang, C., Cui, B.: OpenBox: A generalized black-box optimization service. In: Proceedings of the 27th ACM SIGKDD Conference on Knowledge Discovery and Data Mining. ACM, New York, ...

  115. [123]

    In: 14th USENIX Symposium on Operating Systems Design and Implementation (OSDI 20), pp

    Zhang, Q., Han, Z., Yang, F., Zhang, Y., Liu, Z., Yang, M., Zhou, L.: Retiarii: A deep learning Exploratory-Training framework. In: 14th USENIX Symposium on Operating Systems Design and Implementation (OSDI 20), pp. 919–936. USENIX Association, Virtual (2020). https://www.usen...

  116. [124]

    Journal of Machine Learning Research 20(55), 1–21 (2019)

    Elsken, T., Metzen, J.H., Hutter, F.: Neural architecture search: A survey. Journal of Machine Learning Research 20(55), 1–21 (2019)

  117. [125]

    Structural and Multidisciplinary Optimization 59(4), 1075–1104 (2019) https://doi.org/10.1007/s00158-019-02211-z

    Gray, J.S., Hwang, J.T., Martins, J.R.R.A., Moore, K.T., Naylor, B.A.: Open- MDAO: an open-source framework for multidisciplinary design, analysis, and optimization. Structural and Multidisciplinary Optimization 59(4), 1075–1104 (2019) https://doi.org/10.1007/s00158-019-02211-z

  118. [126]

    Aerospace 6(8), 87 (2019) https://doi.org/10.3390/ aerospace6080087

    Hendricks, E.S., Gray, J.S.: pyCycle: A tool for efficient optimization of gas turbine engine cycles. Aerospace 6(8), 87 (2019) https://doi.org/10.3390/ aerospace6080087

  119. [127]

    Production and Manufacturing Research 11(1) (2023) https://doi.org/ 10.1080/21693277.2023.2279709

    Donelli, G., Ciampa, P.D., Mello, J.M.G., Odaguil, F.I.K., Cuco, A.P.C., Laan, 57 T.: A value-driven concurrent approach for aircraft design-manufacturing-supply chain. Production and Manufacturing Research 11(1) (2023) https://doi.org/ 10.1080/21693277.2023.2279709

  120. [128]

    Journal of Artificial Intelligence Research 72, 943–1027 (2021) https://doi.org/10.1613/ jair.1.13225

    Nikolentzos, G., Siglidis, G., Vazirgiannis, M.: Graph kernels: A survey. Journal of Artificial Intelligence Research 72, 943–1027 (2021) https://doi.org/10.1613/ jair.1.13225

  121. [129]

    Journal of Mechanical Design 146(5) (2023) https://doi.org/10.1115/1.4063659 58

    Sirico, A., Herber, D.R.: On the use of geometric deep learning for the iter- ative classification and down-selection of analog electric circuits. Journal of Mechanical Design 146(5) (2023) https://doi.org/10.1115/1.4063659 58

Pith tools

Reviewed August 9, 2026 · model on record in the stance chip above.