REVIEW 4 major objections 6 minor 44 references
High-Dimensional Bayesian Optimisation with Large-Scale Constraints via Latent Space Gaussian Processes
T0 review · 4 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read A low-dimensional constraint subspace lets Bayesian optimisation scale to 1,786 constraints and a 108-variable aeroelastic design problem.
desk verdict A promising speed-up for constrained BO undercuts itself: the latent-space feasibility test is not equivalent to original feasibility, and the paper never confronts that. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the truncated projection matrix Ψ_g ∈ $R^{{G×g}}$ obtained from an eigendecomposition of the constraint covariance matrix (PCA) or of the kernel matrix (kPCA). The projection maps each design's constraint vector c(x) ∈ R^G to a latent coordinate vector c~(x) ∈ R^g, and the optimisation then builds g+1 independent Gaussian-process surrogates (objective plus the g latent constraints) inside the SCBO trust-region framework. Because feasibility is always checked against the original 1,786 constraints during batch evaluation, the latent GPs only guide the acquisition; the projection is recomputed each iteration as data accumulate. The complexity reduction is the argument's spine: O((g+1)$N^{3}$ + $G^{3}$) versus O((G+1)$N^{3}$) for independent-constraint surrogates.
What would settle it
Take a benchmark with G independent or near-independent constraint functions (for instance, each design variable has its own unrelated constraint) and run PCA-GP SCBO with a small g. If the eigenvalue decay is slow and the method returns designs that violate many original constraints while still appearing feasible in the latent space, the central compression claim fails. A more quantitative version compares the fraction of original constraints satisfied at the returned optimum with the latent feasibility prediction: a mismatch indicates the subspace has not captured the feasible boundary.
Extended reading notes
Core claim
The central claim is that constraint outputs in many large-scale design problems are compressible: the G-dimensional vector of constraint values c(x) lies close to a g-dimensional subspace, so modelling the g latent coordinates with independent GPs is an adequate proxy for the feasibility of all G original constraints. Using PCA (or its kernel extension) to build a projection Ψ_g from the constraint matrix C ∈ $R^{{N×G}}$, the paper reduces the surrogate-training cost from O((G+1)$N^{3}$) to O((g+1)$N^{3}$ + $G^{3}$), where the $G^{3}$ term is the one-time eigendecomposition. In the aeroelastic case, g = 35 latent GPs replace 1,786 surrogates; with g = 35 the approach converges to a feasible, reduced-mass design, whereas the standard SCBO implementation crashes from insufficient memory and both random search and CMA-ES fail to find a feasible point. The paper further shows that adding a second loadcase doubles the number of constraints but barely increases the number of principal components needed.
Load-bearing premise
The method works only if the constraint outputs across the design space lie close to a low-dimensional subspace, so that the dominant principal components carry enough information about feasibility; if the constraints are effectively independent or high-rank, latent-feasible designs will violate many original constraints and the advantages disappear.
Editorial extensions
If this is right
- Problems with thousands of black-box constraints that were previously out of reach for SCBO become tractable on ordinary hardware.
- Adding loadcases multiplies the number of constraints but adds little to the required number of latent components, since the underlying physics is shared across loadcases.
- The method applies to any large-scale constrained BO problem, not just aeroelastic tailoring, provided the constraint outputs are low-rank.
- The choice of g matters: too small a subspace (g = 1 on the benchmark) loses feasibility information, while larger g reduces the computational savings.
- Recomputing the projection each iteration lets the method adapt as data accumulate, though in the low-dimensional benchmark fixing the initial projection performed even better.
Reading between the lines
- One could estimate the achievable compression up front by computing the PCA eigenvalue decay of a small pilot design-of-experiments; problems without a fast decay, such as nearly independent constraints, would be poor candidates for this method.
- The same latent-space surrogate idea could extend to other acquisition functions and to multi-fidelity or design-under-uncertainty settings, where the variance of the latent GPs would propagate back through Ψ_g to the original constraints.
- A testable extension is an adaptively chosen g during optimisation, which the paper lists as future work and would eliminate the user-specified principal-components count.
- The failure of random search and CMA-ES on the 108D problem suggests that the main benefit lies in focusing samples on the feasible boundary via the latent surrogates, a claim one could isolate by ablating the trust-region mechanism.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes a dimensionality-reduction wrapper for Scalable Constrained Bayesian Optimization (SCBO) in which the G constraint outputs are projected via PCA or kernel PCA onto g latent coordinates, and g independent Gaussian processes are trained on these coordinates instead of one GP per original constraint. Algorithm 2 embeds this in the TuRBO/Thompson-sampling loop. The authors report a complexity reduction from O((G+1)N^3) to O((g+1)N^3+G^3) and validate the method on the 7D speed reducer benchmark with 11 black-box constraints and on a 108D aeroelastic tailoring problem with G=1786 constraints. On the benchmark, PCA-GP and kPCA-GP are 57-60% faster than SCBO and converge to solutions within 1.90-3.07% of the known optimum; on the aeroelastic problem, the latent-space methods find feasible designs while SCBO crashes from memory and random search/CMA-ES do not.
Significance. The paper targets a real bottleneck: constrained BO with thousands of constraints is currently impractical because independent GPs have O(GN^3) training cost and O(GN^2) storage. The 108D, G=1786 aeroelastic demonstration is a useful existence proof, and the reported speedups on the speed reducer are concrete. The eigenvalue decay analysis and the comparison with KS constraint aggregation are also informative. The main contribution is potentially valuable but, as it stands, the acquisition is not guaranteed to respect the original feasibility condition; the manuscript needs either a corrected formulation or direct evidence that latent-space feasibility approximates original feasibility.
major comments (4)
- [Sec. 3.3, Algorithm 1, Algorithm 2, Eqs. (20), (26)] As written, the acquisition selects candidates for which all latent scores \tilde c_j(x) are nonpositive. Because \tilde c(x)=P_k(c(x)) is a projection (a rotation followed by truncation), the condition \tilde c(x) \le 0 is not equivalent to c_i(x) \le 0 for all i. Even if g=G and the basis is orthonormal, coordinatewise nonpositivity in the rotated basis is a different condition than nonpositivity in the original basis. A truly feasible design can therefore be rejected by the acquisition, and an infeasible design can be accepted. The paper only verifies original feasibility after the expensive evaluation (Sec. 4.2), so these misclassifications consume search budget without being corrected. The eigenvalue decay in Figure 6 bounds reconstruction error of the constraint values, not boundary classification error, so it cannot validate the acquisition. Please provide either a corrected acquisition that propagates latent GP uncertainty back to the original constraints or a direct empirical test that {x: \Psi_g^T c(x) \le 0} approximates {x: c(x) \le 0} on held-out points.
- [Sec. 4.2] The premise stated in Section 4.2, namely that consistency of the physics across loadcases justifies compression, supports low-rankness of the constraint outputs, but it does not support the stronger claim that the feasible boundary is aligned with the PCA coordinate axes. Principal components maximize variance, not separation between feasible and infeasible designs. The paper should test boundary preservation directly by computing latent scores and original feasibility on a held-out set of points (both random and generated by the optimiser) and reporting the confusion matrix for g=35 and for several values of g.
- [Sec. 4.1, Fig. 4] The sensitivity study of g in Figure 4 shows that g=1 fails to find a feasible point while g=2,4,6 succeed, but it does not identify whether the failure is due to reconstruction error, boundary misclassification, or simply a smaller search space for the acquisition. Without a per-iteration or per-candidate diagnostic, the benchmark cannot separate the validity of the latent-feasibility model from the optimisation dynamics. A false-positive/false-negative analysis on the benchmark's known feasible region would make the empirical claim much stronger.
- [Sec. 3.4, Algorithm 2] The complexity statement O((g+1)N^3+G^3) is incomplete. Algorithm 2 recomputes the projection P_k at every iteration, so the G^3 (or, for kPCA, the N^3 kernel eigendecomposition) cost is incurred per iteration and not only once; the total cost is O(T(G^3+(g+1)N^3)) where T is the number of iterations. The authors should state whether the reported timings include the per-iteration projection cost and how this cost scales with N and G.
minor comments (6)
- [Sec. 3.2, Eq. (24)] The kernel matrix is defined as K_{ij} := (\phi(c(x_j)), \phi(c(x_j))), which appears to be a typo; it should be \phi(c(x_i))^T \phi(c(x_j)).
- [Sec. 3.4] The reference to 'Mathoron's rule' should read 'Matheron's rule'.
- [Algorithm 1] The heading 'CONSTRAINED THOMSPON SAMPLING' contains a typo; it should read 'CONSTRAINED THOMPSON SAMPLING'.
- [Sec. 3.1, Sec. 4.1] The phrase 'principle components' should be 'principal components' throughout, including the subsection heading and the discussion of Figure 3.
- [Fig. 3] In the right panel, the horizontal axis is labeled 'Sample Index' but the plotted quantity is eigenvalues indexed by component number; the axis label should be 'Component Index'.
- [Sec. 2.1] The data set D0 is introduced with only objective values, while later sections include constraint vectors in D; the notation should be adjusted so that the constrained-data setting is introduced explicitly before Eq. (2).
Circularity Check
No significant circularity: the latent-space surrogate reduction is a modeling choice with externally benchmarked results, and no prediction reduces to a fitted input by construction.
full rationale
The paper's derivation chain is not circular. The method replaces the G scalar constraint outputs by g projected coordinates via PCA or kPCA (Eqs. 15-27), trains g latent GP surrogates (Eq. 27), and uses them in Algorithm 2. The reduction from G to g surrogates is arithmetic: one GP is built per projected coordinate, so the complexity statement O((g+1)N^3 + G^3) follows from the algorithm's definition rather than from a hidden equivalence. The central experimental claims are benchmarked externally: the speed reducer results are compared with the known optimum f* = 2996.3482 and with standard SCBO (Table 1, Figure 3), and the aeroelastic results are compared with SCBO, Random Search, CMA-ES, and KS-aggregation (Figures 7-8). The projection is learned from constraint data, and its reconstruction error is checked on unseen data via Eq. 32, not fitted to the objective. The paper explicitly states in Section 3.3 that the validity of a feasible design is checked in the original space after the expensive evaluation, and Section 4.1 acknowledges that success depends on how accurately the lower-dimensional subspace captures the original space. The eigenvalue threshold used to choose g is disclosed as a hyperparameter (Section 4.2), so no fitted parameter is renamed as a prediction. The only self-citation, to Maathuis et al. [2024], provides background and model details for the aeroelastic tailoring problem and is not load-bearing for the method's validity. The skeptic's point that coordinate-wise nonpositivity in a rotated PCA basis need not match original constraint signs is a correctness and approximation risk, not a circularity: it claims the surrogate feasibility criterion can misclassify points, but it does not show that the paper's central claim reduces to its own inputs by construction.
Assumptions & free parameters
free parameters (6)
- Number of principal components g =
g=4 (benchmark), g=35 (aeroelastic)
- Eigenvalue threshold tau_ev =
around 1e-2 to 1e-3 (paper uses g=35 though the threshold suggests g=29)
- kPCA Gaussian kernel bandwidth sigma =
not specified
- SCBO hyperparameters =
not specified
- Initial sample size N_i =
N=20 for benchmark, N=416 for aeroelastic (Figure 7 caption says N=D=108)
- GP kernel hyperparameters =
maximized marginal likelihood
assumptions (5)
- standard math Objective and constraint functions are realizations of Gaussian processes with stationary kernels.
- domain assumption The G constraint outputs lie close to a low-dimensional subspace of dimension g << G.
- domain assumption The global optimum lies on or near the boundary of the feasible space, and the latent feasibility proxy preserves that boundary.
- domain assumption Trust-region constrained Thompson sampling (SCBO) is an effective high-dimensional optimizer once surrogates are available.
- domain assumption Initial Latin hypercube samples are representative enough to build a useful PCA subspace.
invented entities (1)
-
Latent constraint subspace V' (PCA/kPCA projection)
Cite this review
Pith. "Pith review of High-Dimensional Bayesian Optimisation with Large-Scale Constraints via Latent Space Gaussian Processes." pith.science (2026). https://pith.science/paper/7PWMCEGS
@misc{pith2026241215679,
author = {Pith},
title = {Pith review of: High-Dimensional Bayesian Optimisation with Large-Scale Constraints via Latent Space Gaussian Processes},
year = {2026},
howpublished = {\url{https://pith.science/paper/7PWMCEGS}},
note = {Machine review of arXiv:2412.15679}
}
read the original abstract
Design optimisation offers the potential to develop lightweight aircraft structures with reduced environmental impact. Due to the high number of design variables and constraints, these challenges are typically addressed using gradient-based optimisation methods to maintain efficiency. However, this approach often results in a local solution, overlooking the global design space. Moreover, gradients are frequently unavailable. Bayesian Optimisation presents a promising alternative, enabling sample-efficient global optimisation through probabilistic surrogate models that do not depend on gradients. Although Bayesian Optimisation has shown its effectiveness for problems with a small number of design variables, it struggles to scale to high-dimensional problems, particularly when incorporating large-scale constraints. This challenge is especially pronounced in aeroelastic tailoring, where directional stiffness properties are integrated into the structural design to manage aeroelastic deformations and enhance both aerodynamic and structural performance. Ensuring the safe operation of the system requires simultaneously addressing constraints from various analysis disciplines, making global design space exploration even more complex. This study seeks to address this issue by employing high-dimensional Bayesian Optimisation combined with a dimensionality reduction technique to tackle the optimisation challenges in aeroelastic tailoring. The proposed approach is validated through experiments on a well-known benchmark case with black-box constraints, as well as its application to the aeroelastic tailoring problem, demonstrating the feasibility of Bayesian Optimisation for high-dimensional problems with large-scale constraints.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
Michael H. Shirk, Terrence J. Hertz, and Terrence A. Weisshaar. Aeroelastic tailoring - Theory , practice, and promise. Journal of Aircraft, 23 0 (1): 0 6--18, January 1986. ISSN 0021-8669, 1533-3868. doi:10.2514/3.45260
-
[2]
Noud P.M. Werter. Aeroelastic Modelling and Design of Aeroelastically Tailored and Morphing Wings . PhD thesis, Delft University of Technology, 2017
work page 2017
-
[3]
Dillinger, Thomas Klimmek, Mostafa M
Johannes K.S. Dillinger, Thomas Klimmek, Mostafa M. Abdalla, and Zafer Gürdal. Stiffness Optimization of Composite Wings with Aeroelastic Constraints . Journal of Aircraft, 50 0 (4): 0 1159--1168, July 2013. ISSN 0021-8669, 1533-3868. doi:10.2514/1.C032084
-
[4]
Bayesian Approach to Global Optimization : Theory and Applications
Jonas Mockus. Bayesian Approach to Global Optimization : Theory and Applications . Springer Netherlands, Dordrecht, 1989. ISBN 978-94-009-0909-0. doi:https://doi.org/10.1007/978-94-009-0909-0. OCLC: 851374758
-
[5]
Multidisciplinary design optimization with mixed categorical variables for aircraft design
Paul Saves, Nathalie Bartoli, Youssef Diouane, Thierry Lefebvre, Joseph Morlier, Christophe David, Eric Nguyen Van, and Sébastien Defoort. Multidisciplinary design optimization with mixed categorical variables for aircraft design. In AIAA SCITECH 2022 Forum , San Diego, CA & Virtual, January 2022. American Institute of Aeronautics and Astronautics. ISBN 9...
-
[6]
Peter I. Frazier. A Tutorial on Bayesian Optimization . July 2018. doi:https://doi.org/10.48550/arXiv.1807.02811. arXiv:1807.02811 [cs, math, stat]
-
[7]
High- Dimensional Bayesian Optimization with Sparse Axis - Aligned Subspaces
David Eriksson and Martin Jankowiak. High- Dimensional Bayesian Optimization with Sparse Axis - Aligned Subspaces . June 2021. doi:https://doi.org/10.48550/arXiv.2103.00349. arXiv:2103.00349 [cs, stat]
-
[8]
Remy Priem. Optimisation bayésienne sous contraintes et en grande dimension appliquée à la conception avion avant projet. PhD thesis, 2020
work page 2020
Show all 44 references
-
[9]
Carl Edward Rasmussen and Christopher K. I. Williams. Gaussian processes for machine learning. Adaptive computation and machine learning. MIT Press, Cambridge, Mass, 2006. ISBN 978-0-262-18253-9. OCLC: ocm61285753
2006
-
[10]
I. J. Schoenberg. Metric spaces and positive definite functions. Transactions of the American Mathematical Society, 44 0 (3): 0 522--536, 1938. ISSN 0002-9947, 1088-6850. doi:10.1090/S0002-9947-1938-1501980-0
1938 doi
-
[11]
, Tiesis, V
Mockus, J. , Tiesis, V. , and Zilinskas, A. The Application of Bayesian Methods for Seeking the Extremum . pages 117--129, 1978
1978
-
[12]
Thompson
William R. Thompson. On the Likelihood that One Unknown Probability Exceeds Another in View of the Evidence of Two Samples . Biometrika, 25 0 (3/4): 0 285, December 1933. ISSN 00063444. doi:10.2307/2332286
1933 doi
-
[13]
Bayesian Optimization with Inequality Constraints
Jacob R Gardner, Matt J Kusner, and Gardner Jake. Bayesian Optimization with Inequality Constraints . 2014. URL https://proceedings.mlr.press/v32/gardner14.html
2014
- [14]
-
[15]
Gelbart, Ryan P
José Miguel Hernández-Lobato, Michael A. Gelbart, Ryan P. Adams, Matthew W. Hoffman, and Zoubin Ghahramani. A General Framework for Constrained Bayesian Optimization using Information -based Search . September 2016. doi:https://doi.org/10.48550/arXiv.1511.09422. arXiv:1511.094...
-
[16]
Pyzer-Knapp, and Alán Aspuru-Guzik
José Miguel Hernández-Lobato, James Requeima, Edward O. Pyzer-Knapp, and Alán Aspuru-Guzik. Parallel and Distributed Thompson Sampling for Large -scale Accelerated Exploration of Chemical Space . 2017. doi:10.48550/ARXIV.1706.01825. Publisher: arXiv Version Number: 1
- [17]
-
[18]
A Survey on High -dimensional Gaussian Process Modeling with Application to Bayesian Optimization
Mickaël Binois and Nathan Wycoff. A Survey on High -dimensional Gaussian Process Modeling with Application to Bayesian Optimization . ACM Transactions on Evolutionary Learning and Optimization, 2 0 (2): 0 1--26, June 2022. ISSN 2688-299X, 2688-3007. doi:10.1145/3545611
2022 doi
-
[19]
Bayesian Optimization in a Billion Dimensions via Random Embeddings
Ziyu Wang, Frank Hutter, Masrour Zoghi, David Matheson, and Nando de Freitas. Bayesian Optimization in a Billion Dimensions via Random Embeddings . January 2016. doi:https://doi.org/10.48550/arXiv.1301.1942. arXiv:1301.1942 [cs, stat]
-
[20]
Raponi, H
E. Raponi, H. Wang, M. Bujny, S. Boria, and C. Doerr. High dimensional bayesian optimization assisted by principal component analysis. 2020. doi:arXiv:2007.00925v1
2020 arXiv
-
[21]
Antonov, E
K. Antonov, E. Raponi, H. Wang, and C. Doerr. High dimensional bayesian optimization with kernel principal component analysis. 2022. doi:arXiv:2204.13753v2
2022 arXiv
-
[22]
Santoni, E
M.L. Santoni, E. Raponi, R. De Leone, and C. Doerr. Comparison of high-dimensional bayesian optimization algorithms on bbob. 2023. doi:arXiv:2303.00890v2
2023 arXiv
-
[23]
High Dimensional Bayesian Optimisation and Bandits via Additive Models
Kirthevasan Kandasamy, Jeff Schneider, and Barnabas Poczos. High Dimensional Bayesian Optimisation and Bandits via Additive Models . May 2016. doi:https://doi.org/10.48550/arXiv.1503.01673. arXiv:1503.01673 [cs, stat]
-
[24]
Are Random Decompositions all we need in High Dimensional Bayesian Optimisation ? January 2023
Juliusz Ziomek and Haitham Bou-Ammar. Are Random Decompositions all we need in High Dimensional Bayesian Optimisation ? January 2023. doi:https://doi.org/10.48550/arXiv.2301.12844. arXiv:2301.12844 [cs, stat]
- [25]
-
[26]
Computer Model Calibration Using High - Dimensional Output
Dave Higdon, James Gattiker, Brian Williams, and Maria Rightley. Computer Model Calibration Using High - Dimensional Output . Journal of the American Statistical Association, 103 0 (482): 0 570--583, June 2008. ISSN 0162-1459, 1537-274X. doi:10.1198/016214507000000888
2008 doi
-
[27]
Jolliffe and Jorge Cadima
Ian T. Jolliffe and Jorge Cadima. Principal component analysis: a review and recent developments. Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences, 374 0 (2065): 0 20150202, April 2016. ISSN 1364-503X, 1471-2962. doi:https://do...
2016 doi
-
[28]
Nonlinear Component Analysis as a Kernel Eigenvalue Problem
Bernhard Schölkopf, Alexander Smola, and Klaus-Robert Müller. Nonlinear Component Analysis as a Kernel Eigenvalue Problem . Neural Computation, 10 0 (5): 0 1299--1319, July 1998. ISSN 0899-7667, 1530-888X. doi:10.1162/089976698300017467
1998 doi
-
[29]
Xing, A.A
W. Xing, A.A. Shah, and P.B. Nair. Reduced dimensional Gaussian process emulators of parametrized partial differential equations based on Isomap . Proceedings of the Royal Society A: Mathematical, Physical and Engineering Sciences, 471 0 (2174): 0 20140697, February 2015. ISSN...
2015
-
[30]
W.W. Xing, V. Triantafyllidis, A.A. Shah, P.B. Nair, and N. Zabaras. Manifold learning for the emulation of spatial fields from computational models. Journal of Computational Physics, 326: 0 666--690, December 2016. ISSN 00219991. doi:10.1016/j.jcp.2016.07.040
2016 doi
-
[31]
Alvarez, Lorenzo Rosasco, and Neil D
Mauricio A. Alvarez, Lorenzo Rosasco, and Neil D. Lawrence. Kernels for Vector - Valued Functions : a Review . arXiv, April 2012. URL http://arxiv.org/abs/1106.6251. arXiv:1106.6251 [cs, math, stat]
2012 arXiv
-
[32]
Multi-task gaussian process prediction
Edwin V Bonilla, Kian Chai, and Christopher Williams. Multi-task gaussian process prediction. In J. Platt, D. Koller, Y. Singer, and S. Roweis, editors, Advances in Neural Information Processing Systems, volume 20. Curran Associates, Inc., 2007. URL https://proceedings.neurips...
2007
-
[33]
Shandian Zhe, Wei Xing, and Robert M. Kirby. Scalable high-order gaussian process regression. 89: 0 2611--2620, 16--18 Apr 2019. URL https://proceedings.mlr.press/v89/zhe19a.html
2019
-
[34]
Maddox, Maximilian Balandat, Andrew Gordon Wilson, and Eytan Bakshy
Wesley J. Maddox, Maximilian Balandat, Andrew Gordon Wilson, and Eytan Bakshy. Bayesian Optimization with High - Dimensional Outputs . October 2021. doi:https://doi.org/10.48550/arXiv.2106.12997. arXiv:2106.12997 [cs, stat]
-
[35]
Bruinsma, Eric Perim, Will Tebbutt, J
Wessel P. Bruinsma, Eric Perim, Will Tebbutt, J. Scott Hosking, Arno Solin, and Richard E. Turner. Scalable Exact Inference in Multi - Output Gaussian Processes , 2019. Version Number: 3
2019
-
[36]
Jiang, Samuel Daulton, Benjamin Letham, Andrew Gordon Wilson, and Eytan Bakshy
Maximilian Balandat, Brian Karrer, Daniel R. Jiang, Samuel Daulton, Benjamin Letham, Andrew Gordon Wilson, and Eytan Bakshy. BoTorch: A Framework for Efficient Monte-Carlo Bayesian Optimization . In Advances in Neural Information Processing Systems 33, 2020. doi:https://doi.or...
-
[37]
Gpytorch: Blackbox matrix-matrix gaussian process inference with gpu acceleration
Jacob R Gardner, Geoff Pleiss, David Bindel, Kilian Q Weinberger, and Andrew Gordon Wilson. Gpytorch: Blackbox matrix-matrix gaussian process inference with gpu acceleration. In Advances in Neural Information Processing Systems, 2018. doi:https://doi.org/10.48550/arXiv.1809.11165
-
[38]
Lemonge, H.J.C
A.C.C. Lemonge, H.J.C. Barbosa, C.C.H. Borges, and F.B.S. Silve. Constrained optimization problems in mechanical engineering design using a real-coded steady-state genetic algorithm. Mecánica Computacional Vol XXIX, pages 9287--9303, 2010
2010
-
[39]
S. W. Tsai and N. J. Pagano. Invariant properties of composite materials, ad668761. Technical report, Air Force Materials Laboratory, Air Force Systems Command, Wright-Patterson Air Force Base, Ohio, 1968
1968
-
[40]
Daniel and Ori Ishai
Isaac M. Daniel and Ori Ishai. Engineering mechanics of composite materials. Oxford University Press, New York, 2nd ed edition, 2006. ISBN 978-0-19-515097-1. OCLC: ocm57285865
2006
-
[41]
Maathuis, Roeland De Breuker, and Saullo G
Hauke F. Maathuis, Roeland De Breuker, and Saullo G. Castro. High- Dimensional Bayesian Optimisation with Large - Scale Constraints - An Application to Aeroelastic Tailoring . In AIAA SCITECH 2024 Forum , Orlando, FL, January 2024. American Institute of Aeronautics and Astrona...
2024 doi
-
[42]
N. Hansen. The cma evolution strategy: A comparing review. 2006. URL https://github.com/CMA-ES/pycma
2006
-
[43]
Joaquim R. R. A. Martins and Nicholas M. K. Poon. On structural optimization using constraint aggregation. In Proceedings of the 6th World Congress on Structural and Multidisciplinary Optimization, Rio de Janeiro, Brazil, May 2005
2005
- [44]
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.