---
title: Bayesian Optimization over Windows (BOW)
url: https://www.emergentmind.com/topics/bayesian-optimization-over-windows-bow
type: topic
---

# Bayesian Optimization over Windows (BOW)

Searching arXiv for the cited BOW-related papers to ground the article in current literature.
I’m going to look up the relevant arXiv records for BOW and closely related “window/range-aware” Bayesian optimization papers.
Bayesian Optimization over Windows (BOW) denotes a class of Bayesian optimization formulations in which the optimization target is defined by a window, region, or short-horizon admissible set rather than by unconstrained extremization of a scalar objective. In recent arXiv literature, the term is used explicitly in motion planning for constrained optimization over a dynamic planning window of reachable controls [2508.13052] and for short-horizon steering inside a bidirectional kinodynamic planner [2606.27292]. Closely related work uses different terminology—most notably range-aware Bayesian optimization, target range, tolerance-aware acquisition, specification-driven design, and Bayesian sampling windows—for problems in which the goal is to recover valid designs inside a prescribed property window or to identify near-optimal sampling regions rather than a single exact design point [2606.11574; 2206.05369].

## 1. Conceptual scope and terminology

BOW is not a single standardized formalism. The literature currently uses the phrase in at least two explicit senses and one closely related precursor. In the motion-planning papers, a window is a reachable local control set or receding-horizon interval over which constrained BO is performed [2508.13052; 2606.27292]. In the range-aware inverse-design paper, the corresponding object is a target range in output space, defined not as a single optimum but as an acceptable region around a target property vector [2606.11574]. In the Bayesian-design paper, the object is a sampling window or region that preserves high design efficiency under operational constraints [2206.05369].

This terminological dispersion is technically important. It means that “window” may refer to a set in property space, a parameterized region in design space, or a short-horizon reachable control set. A common misconception is that BOW necessarily means optimization over an axis-aligned interval or box. The range-aware inverse-design formulation instead uses a Euclidean tolerance ball in \(K\)-dimensional property space, reducing to an interval only in the scalar case \(K=1\) [2606.11574]. Another misconception is that every window-based method is a standard sequential BO loop with EI or UCB. The Bayesian sampling-windows paper uses a GP emulator over window parameters but does not define an acquisition function or adaptive sequential BO loop [2206.05369].

| Setting | Meaning of “window” | Optimization output |
|---|---|---|
| Range-aware inverse design | Euclidean tolerance region in output space | Valid designs satisfying a target range |
| Bayesian sampling windows | Parameterized sampling region | High-efficiency regions |
| Motion planning | Reachable control window over a short horizon | Feasible local control or trajectory segment |

A plausible implication is that BOW is best understood as an organizing idea: Bayesian optimization restricted to an admissible region that is itself central to the problem formulation.

## 2. Range-aware Bayesian optimization for target property windows

The clearest non-robotic formulation of BOW appears in “Range-Aware Bayesian Optimization for Discovering Diverse Designs within Target Property Windows” [2606.11574]. The problem is inverse design over \(\mathcal{X} \subset \mathbb{R}^M\) with black-box property map
\[
f : \mathcal{X} \to \mathbb{R}^K.
\]
The surrogate is a collection of \(K\) independent Gaussian processes, one per output dimension, with zero prior mean and Matérn \(5/2\) kernels. For output \(k\), the posterior predictive mean and variance are
\[
\mu_k(\mathbf{x}_*) = \mathbf{k}_{k,*}^{\top}\left(\mathbf{K}_k + \sigma_{n,k}^2 \mathbf{I}\right)^{-1}\mathbf{y}_k,
\]
\[
s_k^2(\mathbf{x}_*) = \kappa_k(\mathbf{x}_*, \mathbf{x}_*) - \mathbf{k}_{k,*}^{\top}\left(\mathbf{K}_k + \sigma_{n,k}^2 \mathbf{I}\right)^{-1}\mathbf{k}_{k,*}.
\]

The defining shift is from extremum-seeking BO to specification-driven validity. A design is valid if its predicted properties lie within a tolerance radius \(\varepsilon\) of a target vector \(\mathbf{y}^{\mathrm{tgt}} \in \mathbb{R}^K\):
\[
\|f(\mathbf{x}) - \mathbf{y}^{\mathrm{tgt}}\|_2^2 \le \varepsilon^2.
\]
When target properties differ in scale or acceptable tolerances, each output dimension is normalized before applying this Euclidean criterion. For multiple specifications, the paper defines targets
\[
\mathcal{Y}^{\mathrm{tgt}} = \{\mathbf{y}_1^{\mathrm{tgt}}, \dots, \mathbf{y}_T^{\mathrm{tgt}}\},
\]
with valid sets
\[
\mathcal{S}_t = \left\{ \mathbf{x} \in \mathcal{X} : \|f(\mathbf{x}) - \mathbf{y}_t^{\mathrm{tgt}}\|_2^2 \le \varepsilon^2 \right\}.
\]

The central acquisition is **Tolerance Ball (TB)**:
\[
A_{\mathrm{TB}}(\mathbf{x}) = \mathbb{P}\!\left[d(\mathbf{x}) \le \varepsilon^2\right],
\qquad
d(\mathbf{x}) = \|f(\mathbf{x}) - \mathbf{y}^{\mathrm{tgt}}\|_2^2.
\]
Using the isotropic predictive-variance approximation
\[
\mathbf{f}(\mathbf{x}) \mid \mathcal{D}_n \approx \mathcal{N}\left( \boldsymbol{\mu}(\mathbf{x}), \eta^2(\mathbf{x}) \mathbf{I}_K \right),
\qquad
\eta^2(\mathbf{x}) = \frac{1}{K}\sum_{k=1}^{K} s_k^2(\mathbf{x}),
\]
the paper derives the closed form
\[
A_{\mathrm{TB}}(\mathbf{x}) = F_{K,\lambda(\mathbf{x})} \left( \frac{\varepsilon^2}{\eta^2(\mathbf{x})} \right),
\qquad
\lambda(\mathbf{x}) = \frac{\Delta^2(\mathbf{x})}{\eta^2(\mathbf{x})},
\]
where
\[
\Delta^2(\mathbf{x}) = \|\boldsymbol{\mu}(\mathbf{x}) - \mathbf{y}^{\mathrm{tgt}}\|_2^2.
\]
This is the mathematical core of the framework: the acquisition equals the posterior probability of satisfying the target range. In the scalar case, the formulation reduces to the probability that the scalar posterior lies inside a target interval.

The second acquisition, **Heaviside (HV)**, strongly prioritizes points whose posterior mean already lies inside the tolerance region:
\[
A_{\mathrm{HV}}(\mathbf{x}) = \bigl(1 - w(\mathbf{x})\bigr) + w(\mathbf{x})\,A_{\mathrm{TB}}(\mathbf{x}),
\]
\[
w(\mathbf{x}) = \frac{1}{2} \left[ 1 + \tanh\left( \frac{\Delta^2(\mathbf{x}) - \varepsilon^2}{\tau} \right) \right],
\qquad
\tau = 10^{-3}\varepsilon^2.
\]
TB is the cleanest BOW-style acquisition in this setting because it directly scores range satisfaction rather than improvement relative to a best-so-far scalar objective.

The optimization loop is conventional at the outer level—initialize with \(n_{\mathrm{init}}\) Latin hypercube samples, fit the GP, maximize the acquisition, evaluate, update, and repeat—but unconventional in what is being optimized. For multiple specifications, the method uses a shared surrogate and shared observation set. At each outer iteration, the GP is fit once, and each target independently proposes one candidate under the same fixed posterior; duplicate proposals are resolved by a fixed ordering. This implements parallel pursuit of multiple specifications without a joint combinatorial objective.

A further distinction is that diversity is central to evaluation but not explicit in the acquisition. TB and HV are pointwise feasibility acquisitions and “do not explicitly penalize similarity to previously discovered valid candidates.” Diversity arises only implicitly from posterior uncertainty, feasible-region geometry, and the prohibition on duplicate evaluations. In continuous spaces, the paper measures diversity via \(\delta\)-uniqueness and the normalized area under the uniqueness curve,
\[
D_\mathrm{c} = \frac{A_{\mathrm{u}}}{n_{\mathrm{eval}}\delta_{\max}},
\]
while in discrete spaces it uses
\[
D_\mathrm{d} = \frac{N}{N_{\max}},
\qquad
N_{\max} = \min \left( n_{\mathrm{eval}},\, N_{\mathrm{valid}}^{\mathrm{all}} \right).
\]

## 3. Bayesian sampling windows in fully Bayesian design

“Bayesian Design with Sampling Windows for Complex Spatial Processes” addresses a distinct but closely related problem: exact optimal designs are often operationally brittle because sampling at specific coordinates may be infeasible in field settings [2206.05369]. The paper therefore reformulates design output from exact points to windows or regions that preserve near-optimal design efficiency.

The starting point is fully Bayesian optimal design with utility \(u(d,\boldsymbol{\theta},y)\), prior \(p(\boldsymbol{\theta})\), and expected utility
\[
U(d)=\mathbb{E}[u(d,\boldsymbol{\theta},y)].
\]
The optimal design is
\[
d_* = \arg\max_{d\in\mathcal{D}} \mathbb{E}[u(d,\boldsymbol{\theta},y)].
\]
Because this integral is intractable, the paper uses Monte Carlo
\[
\hat U(d) = \frac{1}{M}\sum_{m=1}^M u(d,\boldsymbol{\theta}^{(m)},y^{(m)}),
\]
and often replaces the mean with the median utility
\[
\tilde U(d) = \mathrm{median}\big(u(d,\boldsymbol{\theta}^{(m)},y^{(m)})\big)
\]
for robustness under skewed or heavy-tailed utility distributions.

The main utility is Kullback-Leibler divergence from posterior to prior,
\[
u(y,d)= D_{KL}[p(\boldsymbol{\theta}\mid y,d)\|p(\boldsymbol{\theta})],
\]
that is, Lindley’s expected information gain criterion. Posterior inference is approximated with a Laplace approximation, because each utility evaluation requires Bayesian inference and is therefore expensive.

The paper first solves exact-point design using stochastic coordinate exchange and a nonparametric acceptance criterion based on the one-sided Wilcoxon rank-sum test. The window formulation is then introduced over a continuous domain:
\[
\mathcal{D}\subseteq \mathbb{R}^q.
\]
Here \(q\) is the number of window parameters. In the river-network case, \(q=2\) and each coordinate is a candidate location along one of two predefined neighbourhoods. In the coral-reef case, \(q=3\) and each coordinate is a transect radius \(r^j\), with image locations perturbed by
\[
\delta_k^1,\delta_k^2 \sim \mathrm{Unif}(-r^j,r^j).
\]

The objective over window parameters is then emulated with a GP. Training data are sampled window configurations
\[
D=(d_1,\ldots,d_{\gamma_1}),
\qquad
d_i\in\mathcal{D},
\]
with computed median utilities \(\tilde U(d_i)\). The emulator assumes
\[
f \sim \mathcal{GP}(0, K(D,D)+\zeta_0 I),
\]
using the additive exponential kernel
\[
k(x_p,x_s) = \sum_{j=1}^q \exp\!\big(-\zeta_j * \mathrm{dist}_j(x_p,x_s)\big),
\qquad
\mathrm{dist}_j(x_p,x_s)=|x_p^j-x_s^j|.
\]
The nugget \(\zeta_0>0\) is included specifically so that Monte Carlo approximations of the median utility surface are smoothed rather than interpolated. Hyperparameters are selected by minimizing the cross-validation criterion
\[
CV(\boldsymbol{\zeta}\mid f,D) = \frac{1}{\gamma_1}\sum_{i=1}^{\gamma_1} \left( \frac{\tilde U(d_i\mid d_c)-f(d_i)} {1-S_{ii}} \right)^2,
\qquad
S = K(D,D)[K(D,D)+\zeta_0 I]^{-1}.
\]

Prediction uses the GP posterior mean
\[
\bar f = K(d_\star,D)[K(D,D)+\zeta_0 I]^{-1}\tilde U(D\mid d_c),
\]
which is normalized into a design-efficiency measure
\[
eff(d_{\star j})= \frac{\bar f(d_{\star j}\mid D,\hat{\boldsymbol{\zeta}})} {\bar f(\hat d_{\star j}\mid D,\hat{\boldsymbol{\zeta}})},
\]
where
\[
\hat d_{\star j} = \arg\max_{d_{\star j}\in D_\star}\bar f(d_{\star j}\mid D,\hat{\boldsymbol{\zeta}}).
\]
The output is the high-efficiency region
\[
\{d_\star : eff(d_\star)>t\},
\qquad
t\in[0,1].
\]

Technically, this is not standard sequential BO. The method uses an offline sample/evaluate/emulate/predict workflow and thresholds the GP predictive mean to obtain efficiency contours. That distinction matters: the paper is best viewed as GP-emulated optimization over window parameters rather than as acquisition-driven adaptive BO. The window concept nevertheless serves the same broader function as in other BOW formulations: it replaces a brittle point optimum with an admissible region whose performance remains close to optimal.

## 4. Motion-planning BOW: dynamic control windows and constrained BO

The term **Bayesian Optimization over Windows** is used explicitly in two motion-planning papers, where a window is a local reachable control set or short receding-horizon interval [2508.13052; 2606.27292]. Both papers address online kinodynamic planning in cluttered environments, where random control sampling is sample-inefficient and geometric heuristics are unreliable under dynamics.

In “BOW: Bayesian Optimization over Windows for Motion Planning in Complex Environments,” the robot evolves according to
\[
\mathbf{x}_{t+1} = f(\mathbf{x}_t,\mathbf{u}_t),
\]
and the full planning problem is written as constrained optimization over controls
\[
\min_{\mathbf{u}_0, \ldots, \mathbf{u}_{T-1}}
\sum_{t=0}^{T-1} J(\mathbf{x}_t, \mathbf{u}_t) + J_F(\mathbf{x}_T)
\]
subject to dynamics and safety constraints
\[
c_k(\mathbf{x}_t) \leq 0.
\]
The central simplification is to optimize inside a dynamic planning window
\[
V_d \subset \mathcal{U},
\]
based on current velocity and acceleration limits, and to hold the control constant over a short horizon:
\[
\mathbf{u}_\tau = \mathbf{u}_t,\qquad \tau=t,\ldots,t+\Delta.
\]
This yields a short-horizon proxy cost
\[
\mathcal{J}(\mathbf{x}_{[t:t+\Delta+1]}, \mathbf{u}_{[t:t+\Delta]}) =
\sum_{\tau=t}^{t+\Delta} J(\mathbf{x}_\tau,\mathbf{u}_t) + J_F(\mathbf{x}_{t+\Delta+1}),
\]
abbreviated as \(\mathcal{J}(\mathbf{x}_t,\mathbf{u}_t)\). Obstacle avoidance is encoded by
\[
c_k(\mathbf{x}_t) = r_{\text{safe}} - d(\mathbf{x}_t,\mathcal{O}_k).
\]

The method then performs constrained BO over \(V_d\). Using sampled controls \(\mathbf{u}^{(i)}_t\), it builds datasets for the objective and each constraint, models them with GPs, and selects
\[
\mathbf{u}^\star_t = \argmax_{\mathbf{u}\in V_d}\; \text{CEI}(\mathbf{u}),
\]
with
\[
\text{CEI}(\mathbf{u}) = \text{EI}(\mathbf{u}) \, P(\text{feasible}\mid \mathbf{u}),
\]
\[
P(\text{feasible}\mid \mathbf{u}) = \prod_{k=1}^K P(c_k(\mathbf{u}) \le 0 \mid D_{c_k}),
\qquad
P(c_k(\mathbf{u}) \leq 0 \mid D_{c_k}) = \Phi\left(\frac{-\mu_{c_k}(\mathbf{u})}{\sigma_{c_k}(\mathbf{u})}\right).
\]
This is the motion-planning meaning of BOW in its most direct form: BO over a reachable dynamic window with explicit probabilistic feasibility.

“BOWConnect: Parallel Bayesian Optimization over Windows with Learned Local Cost Maps for Sample-Efficient Kinodynamic Motion Planning” embeds a related local BOW primitive inside a bidirectional parallel tree-based planner [2606.27292]. Here the state is
\[
\mathbf{x} = (q,\dot q)\in \mathcal X = T\mathcal C,
\]
with dynamics
\[
\dot{\mathbf x}=f(\mathbf x,\mathbf u),
\qquad
\mathbf u\in \mathcal U\subset \mathbb R^m,
\]
and rollout map
\[
\tau(\mathbf u)=\Phi(\mathbf x,\mathbf u)=\{\mathbf x(t):t\in[0,T]\}.
\]
For a candidate control \(\mathbf{u}\), the local reward is
\[
r(\mathbf u)=
\begin{cases}
-\|\mathbf p(T)-\mathbf p_{\text{target}}\|, & \text{if trajectory is collision-free},\\[4pt]
-\infty, & \text{otherwise},
\end{cases}
\]
and the feasibility label is
\[
c(\mathbf u)=1-\mathbb I_{\text{collision}(\tau(\mathbf u))}.
\]
Two GPs are maintained, one for reward and one for the constraint, producing \(\mu_r,\sigma_r^2,\mu_c,\sigma_c^2\). Feasibility is converted to
\[
P_{\text{feas}}(\mathbf u)=\Phi\!\left(\frac{\mu_c(\mathbf u)}{\sigma_c(\mathbf u)}\right),
\]
and the acquisition is
\[
\alpha(\mathbf u)=\bigl[\mu_r(\mathbf u)-\kappa \sigma_r(\mathbf u)\bigr]\times P_{\text{feas}}(\mathbf u).
\]

The control selected by this constrained local BO yields a short kinodynamically feasible motion segment inserted into a MotionTree. The full planner launches \(N/2\) forward workers and \(N/2\) backward workers, each with its own MotionTree and BOW instance. Opposite-direction trees are connected by spatial hashing,
\[
h(\mathbf x) = \left\lfloor \frac{x-x_0}{\Delta}\right\rfloor \oplus \left\lfloor \frac{y-y_0}{\Delta}\right\rfloor \oplus \left\lfloor \frac{z-z_0}{\Delta}\right\rfloor,
\]
followed by a kinematic pre-check and a boundary value problem bridge. In this architecture, BOW is not a global path optimizer but a learned local steering function.

## 5. Surrogates, acquisitions, and what is actually optimized

Across these papers, the most stable technical commonality is not a particular kernel or acquisition but a change in the semantic role of the acquisition itself. In standard BO, EI, PI, or UCB are usually tied to improving a best-so-far scalar objective. In BOW-style methods, the acquisition is defined relative to a windowed acceptance concept.

In range-aware inverse design, the acquisition is exactly the posterior probability of satisfying a Euclidean tolerance region. Under the isotropic approximation, that probability is available in closed form through the noncentral \(\chi^2\) CDF [2606.11574]. The baseline methods in that paper—EI, LCB, BAX, and random sampling—are all adapted to the target-discrepancy setting, but they remain discrepancy-minimizing or uncertainty-reducing methods rather than direct range-satisfaction methods. The conceptual difference is explicit: BAX explores an estimated feasible set, whereas TB maximizes the posterior probability of feasibility.

In Bayesian sampling windows, the surrogate has a different role. The GP does not drive a sequential acquisition loop; rather, it emulates a noisy utility surface over window parameters, and the predictive mean is converted into efficiency contours [2206.05369]. The method therefore uses a GP in the style of BO without actually instantiating modern adaptive BO. This suggests that “optimization over windows” can include both sequential and offline-emulation paradigms.

In the motion-planning literature, the objective is localized both spatially and temporally. The BOW Planner optimizes CEI over a dynamic window \(V_d\), with the objective and constraints evaluated by short-horizon rollout under the true dynamics [2508.13052]. BOWConnect does something similar but separates reward and feasibility into two GPs and uses a feasibility-weighted lower-confidence-style acquisition over the local control window [2606.27292]. In both cases, the window is not a state-space box and not a global path parameterization; it is the set of controls relevant to a local steering decision over a short horizon.

A technically useful way to distinguish the variants is by the object being modeled:

- **Output-space validity modeling**: the range-aware paper models \(f(\mathbf{x})\) and scores the probability that it falls inside a tolerance ball.
- **Window-parameter utility emulation**: the sampling-windows paper models \(\tilde U(d)\) over parameterized regions and thresholds normalized predictive mean.
- **Local control-window optimization**: the motion-planning papers model short-horizon cost/reward and feasibility as functions of control and optimize an acquisition within a reachable set.

This suggests that BOW is less a single algorithm than a structural motif: BO or GP emulation constrained by an application-specific window that encodes admissibility, flexibility, or local reachability.

## 6. Empirical behavior, limitations, and open directions

The empirical evidence is strongest in the range-aware inverse-design and motion-planning settings. On benchmarks including Branin, Hartmann-3, Ackley-5, Layeb-6, several pool-based materials and molecular datasets, and two application studies, the range-aware paper reports that TB achieves the best average rank across tasks and tolerance ratios, the highest fraction of best-performing tasks, and generally stronger balanced recovery across targets [2606.11574]. In parallel target search, it also attains low cross-target hit ratios, which the paper interprets as target fidelity. In the polymer molecular weight distribution design case study over a 51,200-point grid, TB reaches mean normalized discrete diversity \(D_\mathrm{d}=0.93\), ahead of HV at \(0.85\), LCB at \(0.69\), and BAX at \(0.64\), while EI and random are near zero. In the sequence-defined conjugated oligomer study over 1,980 unique oligomers, TB again has the highest mean normalized diversity score, \(D_\mathrm{d}=0.32\), although random sampling is competitive for some targets because valid molecules are more abundant.

The Bayesian sampling-windows paper illustrates a different empirical value proposition: not better pointwise optimization, but robustness to implementation constraints [2206.05369]. In the river-network case, the design-efficiency contours reveal that one neighbourhood is much more sensitive to exact placement than the other, and the paper gives the example that choosing \(n_{14}\) in \(N1\) can still permit a location \(n_{24}\) in \(N2\) while retaining \(98\%\) optimal utility. In the coral-reef case, the optimal radii are
\[
r_*=(44,0,44),
\]
with reported efficiency \(eff(D_*) = 101\%\). The paper interprets this as evidence that some transects admit substantial positional flexibility while others effectively require exact placement.

The motion-planning papers report both runtime and success-rate advantages. The BOW Planner uses only 5 samples per planning horizon in the main UGV benchmarks and identifies the optimum with 15 samples in the sample-efficiency figure [2508.13052]. Across six simulated \(20\text{m} \times 20\text{m}\) UGV environments, it consistently has the lowest total planning times and lowest per-step times while solving all six environments. In Environment 6, which contains non-convex obstacles, BOW reports path length \(8.73 \pm 0.09\) m, total time \(10.00 \pm 0.33\) ms, and time per step \(0.10\) ms, while HRVO and CBF produce no solution. The same paper reports five 3D UAV environments with a 12-D state and 4-D control problem, again emphasizing sample efficiency and low planning time.

BOWConnect extends this local BO steering into a bidirectional parallel kinodynamic planner and reports 100% success across ten benchmark environments, including narrow passages and non-convex spaces [2606.27292]. Direct comparisons to the prior unidirectional BOW planner are particularly revealing: in Narrow Passage-1 under the Unicycle model, BOW requires \(19.538\) s versus \(0.048\) s for BOWConnect, both at 100% success; in Narrow Passage-2, \(6.971\) s versus \(0.056\) s; and in Intel, BOW reaches 80% success with \(12.893\) s while BOWConnect reaches 100% success with \(0.397\) s. Real-world deployment on a ground vehicle and a quadrotor reports real-time planning with no collisions.

The limitations are equally domain-specific. The range-aware framework relies on factorized GPs and the isotropic predictive-variance approximation
\[
\mathbf{f}(\mathbf{x}) \mid \mathcal{D}_n \approx \mathcal{N}\left( \boldsymbol{\mu}(\mathbf{x}), \eta^2(\mathbf{x}) \mathbf{I}_K \right),
\]
which ignores output correlations and variance anisotropy; diversity is measured but not explicitly optimized [2606.11574]. The Bayesian sampling-windows method does not use predictive uncertainty in acquisition, depends on surrogate quality for its efficiency contours, and remains computationally heavy because each utility evaluation requires Monte Carlo and posterior approximation [2206.05369]. The BOW Planner is fundamentally a local/receding-horizon method, assumes conditional independence of constraints in its feasibility probability, and may get trapped in local minima such as narrow passages or bugtrap-type situations [2508.13052]. BOWConnect mitigates some of these issues with bidirectionality and BVP bridging, but its speedup is still limited by connection checking and sequential BVP solving, and the paper identifies adaptive worker allocation, uncertainty-aware planning beyond the current setup, and dynamic environments with moving obstacles as future work [2606.27292].

Taken together, these results indicate that BOW is most coherent when understood as a specification- or admissibility-centered reformulation of Bayesian optimization. In one branch, the window is a target region in output space and the acquisition is the posterior probability of validity. In another, the window is a design region whose utility is emulated and thresholded into efficiency contours. In motion planning, the window is a short-horizon reachable control set over which constrained BO acts as a steering mechanism. The shared idea is not a single canonical implementation, but the replacement of brittle point optimality by Bayesian reasoning over acceptable regions, ranges, or local admissible windows.

Source: https://www.emergentmind.com/topics/bayesian-optimization-over-windows-bow