Core idea. Online Multistep Lookahead holds an approximate critic fixed and uses it as the terminal value of a short online optimal-control problem. The resulting action refines the policy target, while a policy network progressively learns the state-to-solution map for fast deployment.

A fixed critic closes a finite lookahead problem, whose first optimized action is progressively represented by an online-learned policy
Physical interaction is indexed by $k$, whereas policy-network updates are indexed by $t$. Here $t(k)$ is the latest policy-network update available at physical step $k$, and $k(t)$ is the latest physical sample available at learner update $t$. The critic parameter $\bar\theta$ is deliberately fixed in this Theme. A state estimate $\widehat x_k$ and a control-usable prediction model $f_{\mathrm{use}}$ are assumed available.
Online Learning-Based Optimal Control connects an approximate critic to policy improvement through Bellman minimization. Here the critic is already available but imperfect. Rather than using only a one-step greedy action, solve an $H$-step problem whose terminal cost is the fixed critic:
\[\begin{aligned} \widehat U_k^{(H)} \in\arg\min_{U_k}\quad& \sum_{j=0}^{H-1} \alpha^j g(\widehat x_{j|k},u_{j|k}) + \alpha^H\widehat J_{\bar\theta}(\widehat x_{H|k})\\ \mathrm{s.t.}\quad& \widehat x_{0|k}=\widehat x_k,\\ & \widehat x_{j+1|k} = f_{\mathrm{use}}(\widehat x_{j|k},u_{j|k}), \qquad j=0,\ldots,H-1,\\ & u_{j|k}\in\mathcal U(\widehat x_{j|k}), \qquad j=0,\ldots,H-1,\\ & \widehat x_{j|k}\in\mathcal X, \qquad j=0,\ldots,H, \end{aligned}\] \[\widehat u_k^{(H)} = \left[\widehat U_k^{(H)}\right]_0 .\]$H$ is a positive lookahead horizon, $0<\alpha<1$ is the discount factor, and $U_k=(u_{0|k},\ldots,u_{H-1|k})$ is the candidate input sequence. $f_{\mathrm{use}}$ is the declared prediction model, $\mathcal U(x)$ and $\mathcal X$ are the admissible input and state sets, and $\widehat x_{j|k}$ is the state predicted $j$ steps from the current estimate. $\widehat u_k^{(H)}$ selects the first optimized action. For $H=1$, the formulation reduces to one-step critic-based policy improvement.
The online-learned policy represents the solution map:
\[\widehat\mu_{\phi_t}(\widehat x_k) \approx \widehat u_k^{(H)}, \qquad u_k^{\mathrm{NN}} = \widehat\mu_{\phi_{t(k)}}(\widehat x_k).\]The critic is not updated in this Theme. The learned object is the policy induced by the fixed critic and multistep optimization. The model can be known or a declared snapshot of a learned model, but it is held fixed while each lookahead problem is solved. Changes in that snapshot, preview convention, or constraint set between solves move the teacher solution map and must be represented in the training data or policy input.
An approximate critic summarizes the infinite-horizon tail, but local critic error can lead to a poor one-step greedy action. Multistep lookahead evaluates the current action through $H$ explicit stages before applying the critic. Under suitable discounted-DP and rollout assumptions, this can improve the policy even while the critic remains fixed, and a longer horizon can reduce the influence of terminal-critic error. Improvement is possible rather than automatic: model error, incomplete optimization, and policy approximation can offset the benefit.
Repeatedly solving the $H$-step problem may still be too expensive for an embedded controller. Learning its state-to-solution map amortizes the computation across operating points: lookahead supplies improved action targets during learning, whereas the converged policy network can return an action immediately without a full optimization at every control step.
A conventional realization solves the problem in Section 1 at every physical control step and applies only the first action:
\[u_k=\widehat u_k^{(H)}, \qquad k=0,1,\ldots .\]This receding-horizon implementation uses the current state, model, critic, and constraints directly. Its main limitation is repeated numerical optimization within the control deadline.
This mechanism is MPC-like, but its defining role here is more specific: the fixed approximate infinite-horizon critic closes the finite lookahead problem. Learning a conventional finite-horizon MPC solution without that terminal critic remains a useful amortized-MPC baseline, not this Theme’s defining mechanism.
Let selected online lookahead targets be
\[\mathcal S_t^{\mathrm{LA}} \subseteq \left\{ \left(\widehat x_i,\widehat u_i^{(H)}\right) \right\}_{i=0}^{k(t)} .\]A conceptual policy-learning problem is
\[\phi_{t+1} \approx \arg\min_{\phi} \sum_{(x,u^{(H)})\in\mathcal S_t^{\mathrm{LA}}} \left\| \widehat\mu_{\phi}(x)-u^{(H)} \right\|_{W_u}^{2}.\]Here $W_u\succeq 0$ is the declared action-fitting weight matrix.
Equivalently, the research loop can be summarized as
\[\widehat J_{\bar\theta}\ \text{fixed}, \qquad \phi_t \xrightarrow[\mathcal S_t^{\mathrm{LA}}] {\text{online solution learning}} \phi_{t+1}, \qquad u_k^{\mathrm{NN}} =\widehat\mu_{\phi_{t(k)}}(\widehat x_k).\]The argmin states the learning objective; a real-time implementation may take only one or a few incremental updates. Training signals may come from a completed lookahead solve or a corrected warm start. If necessary, deployment can retain a real feasibility mechanism,
\[u_k = \mathcal C_{\mathrm{feas}} \left( \widehat\mu_{\phi_{t(k)}}(\widehat x_k), \widehat x_k \right),\]where $\mathcal C_{\mathrm{feas}}$ must denote an implemented projection, filter, or correction procedure rather than an assumed guarantee.
Evidence should compare the network action and objective with the online optimizer, constraint violations before and after correction, closed-loop cost, worst-case latency, model and critic perturbations, and performance on states not represented in the update stream. This page states the research direction and evaluation criteria; it does not claim a validated MIC Lab result.