Next Article in Journal
EEG-Based Supported Diagnosis of ADHD Using Subject-Specific HMMs and Stationary RKHS Embeddings
Previous Article in Journal
A GCU-SAM Enhanced Transformer for Fault Diagnosis of Rotating Machinery
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Long-Horizon Constraint-Aware Collaborative Scheduling for Multiple Phased-Array Radars Using Mamba Temporal Encoding and Structured Hybrid Actions

1
Nanjing Research Institute of Electronics Technology, Nanjing 210039, China
2
School of Information and Communication Engineering, Dalian University of Technology, Dalian 116024, China
*
Author to whom correspondence should be addressed.
Sensors 2026, 26(15), 4772; https://doi.org/10.3390/s26154772
Submission received: 8 June 2026 / Revised: 7 July 2026 / Accepted: 13 July 2026 / Published: 27 July 2026
(This article belongs to the Section Radar Sensors)

Abstract

Phased-array radar networks require real-time collaborative scheduling of search, tracking, and identification tasks under coupled resource, beam, time-window, and power constraints. Current decisions affect future residual power, task refresh intervals, and tracking uncertainty, making long-horizon scheduling particularly challenging. This paper proposes CS-Mamba, a long-horizon constraint-aware collaborative scheduling framework for homogeneous multiple phased-array radars. The scheduling problem is formulated as a finite-horizon constrained decision process with structured hybrid actions, where the discrete component represents radar–task matching and the continuous component represents transmit-power allocation. A Mamba-based temporal encoder is introduced to summarize long scheduling histories with linear sequence complexity. Based on the encoded representation, the scheduler predicts task priorities, constructs a masked radar–task bipartite graph, solves a constrained maximum-weight matching problem, and projects raw transmit powers onto the feasible power domain. In addition, an action-dependent radar model is incorporated to link transmit power, effective SNR, detection probability, measurement noise, and tracking covariance. The model is trained using behavioral cloning from constraint-aware heuristic trajectories followed by actor–critic fine-tuning. Experiments on the proposed MRSched-Bench show that CS-Mamba improves the normalized cost-effectiveness score from 0.62 to 0.78 compared with MAPPO in the Medium scenario, while reducing end-to-end decision latency from 24.5 ms to 12.8 ms per step. Additional ablation studies verify the contributions of temporal encoding, structured matching, feasible power projection, and two-stage training.

1. Introduction

Phased-array radar systems play a critical role in modern surveillance and target monitoring by enabling rapid electronic beam steering and flexible multi-task execution. In practical deployments, multiple radars must collaboratively allocate sensing resources among search, tracking, and identification tasks while satisfying operational requirements such as power budgets, beam availability, task deadlines, periodic coverage, and cooperative tracking consistency. As radar networks increase in scale and mission complexity, collaborative scheduling becomes a key challenge for improving resource utilization and mission effectiveness.
Existing scheduling approaches can be broadly divided into optimization-based methods and learning-based methods. Traditional optimization methods, such as mixed-integer programming, heuristic search, genetic algorithms, and tabu search, can generate high-quality schedules in small-scale or static scenarios. However, their computational cost increases rapidly under dynamic multi-radar coordination, nonlinear detection and tracking models, and long-horizon resource coupling. Reinforcement learning methods have recently shown promising adaptability for sequential resource management. Nevertheless, they still face three major difficulties in radar scheduling. First, long scheduling horizons introduce temporal coupling among residual power, tracking covariance, task refresh intervals, and electromagnetic interference. Second, radar scheduling naturally involves hybrid decisions, including discrete radar–task matching and continuous transmit-power allocation. Third, many learning-based methods handle constraints mainly through reward penalties, which may lead to infeasible exploration and reduced training efficiency.
To address these issues, this paper proposes CS-Mamba, a long-horizon constraint-aware collaborative scheduling framework for multiple homogeneous phased-array radars. Instantaneous hard constraints are embedded into action generation through graph-edge masking, constrained matching, and feasible-domain power projection, while mission-level requirements such as cooperative tracking and periodic refresh are optimized as soft penalties. The method combines Mamba temporal encoding, structured hybrid action generation, two-stage policy optimization, and an action-dependent radar performance model.
This work focuses on homogeneous multiple phased-array radar networks. All radar nodes share the same sensing model and waveform configuration, while their residual power, beam accessibility, local interference, and task visibility may vary over time. Heterogeneous radar networks with different frequency bands, waveform libraries, and sensing modalities are beyond the scope of this study and will be investigated in future work.
The main contributions are summarized as follows:
(1)
We formulate collaborative scheduling of multiple homogeneous phased-array radars as a finite-horizon constraint-aware decision problem with structured hybrid actions. The formulation explicitly distinguishes instantaneous hard constraints, long-term resource constraints, soft mission-level requirements, and terminal performance metrics.
(2)
We develop a radar-specific structured hybrid action-generation mechanism. The neural scheduler first predicts task priorities and radar–task compatibility scores; these scores are then converted into executable radar–task assignments by graph-edge masking and constrained maximum-weight matching.
(3)
We introduce a feasible transmit-power projection layer and an action-dependent radar performance model, which links transmit power to effective signal-to-noise ratio, detection probability, measurement noise, and tracking covariance. This establishes a physical causal path from continuous power actions to scheduling utility.
(4)
We combine Mamba temporal encoding with two-stage policy optimization. Behavioral cloning provides a stable initialization from constraint-aware heuristic trajectories, while actor–critic fine-tuning improves beyond the heuristic expert under the same feasible action-generation pipeline.
(5)
We construct a reproducible MRSched-Bench simulation protocol and report not only normalized cost-effectiveness score and latency but also hard-constraint violation rate, soft-constraint satisfaction rate, task completion rate, power utilization, and tracking error.

2. Related Work

2.1. Radar Resource Management and Cooperative Radar Scheduling

Radar resource management has been extensively studied in phased-array radar networks, distributed MIMO radars, and cognitive radar systems [1,2,3]. Classical methods typically formulate task scheduling, node selection, dwell-time allocation, waveform selection, or power allocation as optimization problems. Mixed-integer programming, dynamic programming, heuristic search, genetic algorithms, simulated annealing, and tabu search have been used to generate feasible schedules under beam, time-window, and resource constraints. These methods are interpretable and effective in small-scale scenarios, but their scalability is limited when nonlinear detection models, recursive tracking covariance updates, dynamic interference, and long-term resource coupling are considered simultaneously [4,5,6,7,8].
Cooperative radar tracking and resource allocation methods further investigate node selection and power allocation to improve detection probability and tracking accuracy. However, many of these studies focus on short-horizon allocation or single-step optimization, rather than long-horizon collaborative scheduling with coupled discrete-continuous actions. In contrast, this paper considers radar–task matching, transmit-power allocation, task refresh status, residual power evolution, and tracking uncertainty within a unified sequential decision framework.

2.2. Constrained and Hybrid-Action Reinforcement Learning

Constrained Markov decision processes and constrained policy optimization provide principled formulations for sequential decision-making under constraints. However, practical engineering constraints are often handled through Lagrangian relaxation, penalty terms, or post hoc correction, which may still allow infeasible exploration during training. In radar scheduling, invalid actions, such as assigning an inaccessible task to a radar or allocating power beyond the remaining budget, are physically meaningless and should be avoided before execution [7,8].
Hybrid-action reinforcement learning, including parameterized-action methods such as P-DQN, addresses problems involving both discrete action choices and continuous action parameters. Nevertheless, the discrete component of radar scheduling is not a simple categorical action, but a structured radar–task matching matrix with capacity, beam, time-window, and exclusiveness constraints. Directly learning such a high-dimensional hybrid action space is difficult. The proposed CS-Mamba framework, therefore, uses a hierarchical action-generation mechanism that separates task prioritization, constrained radar–task matching, and feasible power allocation [9,10,11,12].

2.3. Sequence Models for Decision Making

Sequence models have recently been introduced into reinforcement learning and offline decision modeling. Decision Transformer formulates reinforcement learning as conditional sequence modeling using states, actions, and return-to-go. State-space models, especially Mamba, provide an efficient alternative to attention-based Transformers by using selective state updates with linear sequence complexity. Such models are suitable for long-horizon problems where historical information must be summarized efficiently.
Although each radar scheduling slot is short, the decision horizon contains hundreds of slots. Residual power, tracking covariance, task refresh intervals, and interference statistics evolve cumulatively across slots. Therefore, a policy based only on the current state or a short memory may satisfy instantaneous feasibility but still cause future resource exhaustion or refresh violations. LSTM and GRU are efficient but may struggle to preserve slow-varying resource and constraint information over long horizons. Transformer encoders can model long-range dependency but introduce quadratic complexity with sequence length. Mamba provides a selective state-space mechanism with linear sequence complexity and data-dependent state updates, which is suitable for long-horizon radar scheduling under real-time latency requirements [13,14,15,16,17].

2.4. Positioning of This Work

The proposed method is not intended to claim novelty in Mamba architectures, constrained MDPs, maximum-weight matching, or behavioral cloning individually, which is shown in Table 1. Instead, its contribution lies in integrating these components into a radar-specific scheduling pipeline with explicit physical modeling and executable constraint handling. Compared with constrained policy optimization methods, CS-Mamba does not rely solely on Lagrangian penalties to satisfy instantaneous engineering constraints. Compared with parameterized-action reinforcement learning methods such as P-DQN, the discrete action is not a simple categorical index but a structured radar–task matching matrix. Compared with Decision Transformer or Decision Mamba, CS-Mamba is not purely an offline sequence model; it combines temporal encoding with online actor–critic fine-tuning and feasibility-enforcing execution layers. Compared with classical radar resource-allocation methods, the proposed framework simultaneously considers long-horizon task scheduling, radar–task matching, transmit-power allocation, and tracking-performance feedback [18,19,20,21].

3. Method

3.1. Overall Framework

The overall framework of the proposed CS-Mamba scheduler is shown in Figure 1. The framework consists of four key components: constraint-aware scheduling formulation, Mamba-based temporal encoding, hierarchical hybrid action generation, and two-stage policy optimization [22,23,24,24]. At each scheduling slot, radar resources, task states, target information, and electromagnetic conditions are first organized as a temporal state sequence. The Mamba encoder then compresses long-horizon scheduling history into a compact representation. Based on this representation, the scheduler sequentially predicts task priorities, performs feasible radar–task matching, and allocates continuous transmit power. Hard constraints are embedded into the action generation process, while soft mission requirements are optimized through reward penalties.
Different from conventional reinforcement learning schedulers that usually adopt purely discrete or continuous actions, the proposed framework explicitly models the structured hybrid nature of phased-array radar scheduling [25,26,27,28,29,30]. The discrete matching matrix determines which radar executes which task, while the continuous power matrix determines how much transmit power is assigned to each selected radar–task pair. This design follows the engineering logic of “matching first and allocating later”, making the generated schedules more executable under practical radar constraints.

3.2. Problem Formulation

3.2.1. Radar Network and Task Model

We consider a homogeneous phased-array radar network consisting of N R radar nodes and N T candidate tasks or targets. The scheduling horizon contains K decision slots, and the duration of each slot is Δ t . At slot k, the scheduler observes the global state s k and generates a structured hybrid action a k . The decision process is modeled as a finite-horizon constrained Markov decision process:
M = S , A , P , r , γ , k = 1 , , K ,
where S is the state space, A is the structured action space, P ( s k + 1 | s k , a k ) is the transition kernel, r ( s k , a k ) is the slot-level reward, and γ is the discount factor. The objective is
max θ E τ π θ k = 1 K γ k 1 r ( s k , a k ) , s . t . a k A h a r d ( s k ) .
The action consists of a discrete radar–task matching matrix and a continuous transmit-power matrix:
a k = ( X k , P k ) ,
where
X k = { x r , t , k } { 0 , 1 } N R × N T , P k = { p r , t , k } R + N R × N T .
Here, x r , t , k = 1 indicates that radar r is assigned to task t at slot k, and p r , t , k denotes the corresponding transmit power.

3.2.2. State Variables and Transition Dynamics

The state vector contains radar resource status, task status, electromagnetic environment information, and historical scheduling statistics:
s k = S k r e s , S k t a s k , S k e n v , S k h i s t .
All continuous variables are normalized before being fed into the neural scheduler, which is shown in Table 2. Residual power is divided by the initial power budget, target position is scaled by the surveillance-region size, target velocity is scaled by the maximum target speed, tracking covariance is log-normalized, and jamming and clutter levels are normalized in the dB domain.
The residual power evolves according to
P r , k + 1 r e m = P r , k r e m t = 1 N T p r , t , k Δ t .
The feasible projection layer ensures P r , k + 1 r e m 0 for all radars and slots.
The task refresh interval is updated as
δ t , k + 1 = 0 , if r = 1 N R x r , t , k > 0 , δ t , k + 1 , otherwise .
The target state follows a constant-velocity motion model:
ξ t , k + 1 = F ξ t , k + w t , k , w t , k N ( 0 , Q t ) ,
where ξ t , k denotes the kinematic state of target t, F is the state-transition matrix, and Q t is the process-noise covariance. The predicted tracking covariance is
P t , k | k 1 = F P t , k 1 | k 1 F + Q t .

3.2.3. Constraint Classification

We distinguish hard feasibility constraints from soft mission-level requirements. Hard constraints must be satisfied at every scheduling slot and define the feasible action set. Long-term resource constraints couple current actions with future feasible sets through residual power and task-refresh states. Soft mission-level requirements are allowed to be violated but incur reward penalties. Terminal constraints are used only for episode-level evaluation.
The instantaneous hard constraints include radar exclusiveness, task capacity, residual power, beam accessibility, task time-window feasibility, and power-matching consistency:
t = 1 N T x r , t , k 1 , r , k ,
r = 1 N R x r , t , k b t , k , t , k ,
t = 1 N T p r , t , k P r , k r e m , r , k ,
x r , t , k g r , t , k , r , t , k ,
x r , t , k = 0 , r , t , k K t ,
0 p r , t , k P r m a x x r , t , k , r , t , k .
Soft mission-level requirements include the minimum cooperative radar requirement and maximum task refresh interval:
ϕ t , k t r = β t r max ( 0 , M t n t , k ) , n t , k = r = 1 N R x r , t , k ,
ϕ t , k p e r = β p e r max ( 0 , δ t , k Π t ) .
Therefore, the proposed method guarantees feasibility with respect to instantaneous hard constraints and residual-power constraints, while cooperative tracking and periodic-refresh requirements are treated as soft mission-level objectives. This distinction is also reflected in the evaluation metrics.

3.3. Reward Function and Evaluation Metric

The slot-level training reward is defined as a difference-type objective:
r k = U k λ c C k λ ϕ Φ k ,
where U k is the task utility, C k is the resource cost, and Φ k is the soft-constraint penalty.
The task utility is
U k = t = 1 N T I t , k w t d P d , t , k + w t t r exp ( α t ϵ t , k ) ,
where I t , k = 1 [ r = 1 N R x r , t , k > 0 ] indicates whether task t is executed, P d , t , k is the fused detection probability, and ϵ t , k is the tracking error.
The resource cost is
C k = r = 1 N R t = 1 N T x r , t , k λ p p r , t , k + λ τ τ r , t ,
where τ r , t denotes the dwell or execution cost associated with radar–task pair ( r , t ) .
The soft-constraint penalty is
Φ k = t = 1 N T ϕ t , k t r + ϕ t , k p e r .
The training reward and the reported evaluation metric are different. The reward is used for slot-level policy optimization, while the reported normalized cost-effectiveness score is an episode-level normalized metric. For an episode with horizon K, we define
U e p = k = 1 K U k , C e p = k = 1 K C k , Φ e p = k = 1 K Φ k .
The normalized terms are
U ¯ e p = U e p U e p m a x + ϵ , C ¯ e p = C e p C e p m a x + ϵ , Φ ¯ e p = Φ e p Φ e p m a x + ϵ .
The normalized cost-effectiveness score is defined as
C E = clip U ¯ e p λ C C ¯ e p λ Φ Φ ¯ e p , 0 , 1 .
The final reported value is averaged over all test scenarios and random seeds:
C E a v g = 1 N s e e d N t e s t i = 1 N s e e d j = 1 N t e s t C E i , j .
Unless otherwise stated, all normalized cost-effectiveness scores reported in the experiments are averaged over five random seeds and all test scenarios.

3.4. Mamba-Based Temporal Encoder

Although each scheduling slot is short, the decision horizon may contain hundreds of slots. Residual power, tracking covariance, task refresh intervals, and interference statistics evolve cumulatively across slots. Therefore, a policy based only on the current state or a short memory may satisfy instantaneous feasibility but still cause future resource exhaustion or refresh violations.
At slot k, the historical state sequence is denoted as
S 1 : k = ( s 1 , s 2 , , s k ) R k × D s .
Each state vector is projected into an embedding space:
x k = W e s k + b e , x k R D e m b .
The embedded sequence is processed by stacked Mamba blocks. A simplified selective state-space update is written as
A k = SelectA ( x k ) , B k = SelectB ( x k ) , C k = SelectC ( x k ) ,
h k = A k h k 1 + B k x k , z k = C k h k .
The encoded temporal representation is
z k = E Mamba ( S 1 : k ) .
LSTM and GRU are efficient but may struggle to preserve slow-varying resource and constraint information over long horizons, which is shown in Table 3. Transformer encoders can model long-range dependency but introduce quadratic complexity with sequence length. Mamba provides a selective state-space mechanism with linear sequence complexity and data-dependent state updates, making it suitable for long-horizon radar scheduling under real-time latency requirements [31,32,33,34,35,36,37].

3.5. Decision-Mamba Scheduler

The neural scheduler does not directly sample the final radar–task matching matrix. Instead, it outputs pre-decision variables, including task-priority scores, radar–task compatibility scores, and raw transmit powers. The final executable action is obtained by deterministic feasibility-enforcing layers.
The pre-decision variables are denoted as
u θ , k = π θ , k , W θ , k , P θ , k r a w ,
where π θ , k is the task-priority distribution, W θ , k = { w r , t , k } is the radar–task compatibility weight matrix, and P θ , k r a w = { p r , t , k r a w } is the raw power matrix.
The executable matching matrix is generated by
X k = M ( W θ , k , s k ) ,
where M denotes the constrained maximum-weight matching operator.
The executable power matrix is obtained by feasible-domain projection:
P k = P ( P θ , k r a w , X k , s k ) .
Therefore, the final action is
a k = Γ θ ( s k ) = ( X k , P k ) .
The constrained matching and power projection modules are treated as feasibility-enforcing execution layers rather than differentiable stochastic policy layers. Gradients are not propagated through the combinatorial matching solver. During behavioral cloning, supervision is applied to the pre-decision variables, while during actor–critic fine-tuning the environment receives only the feasibility-projected executable action.
  • Stage 1: Task Priority Prediction.
The model first predicts a priority distribution over tasks. The task-priority distribution is predicted as
π θ , k = softmax FC ( f k ) τ ,
where f k is the fused decision feature and τ is the temperature coefficient.
The radar–task compatibility coefficient is defined as
η r , t , k = λ t r ϵ r e f ϵ r , t , k + ϵ r e f + λ s n r γ r , t , k e f f γ r , t , k e f f + γ r e f .
The unmasked radar–task weight is
w r , t , k = π θ , k ( t ) η r , t , k .
  • Stage 2: Constraint-Aware Radar–Task Matching.
Action masking is implemented as edge masking in the radar–task bipartite graph. The feasibility mask is defined as
m r , t , k = 1 [ g r , t , k = 1 ] 1 [ k K t ] 1 [ P r , k r e m > 0 ] .
The masked matching weight is
w ˜ r , t , k = w r , t , k , m r , t , k = 1 , M , m r , t , k = 0 ,
where M is a sufficiently large positive constant used in implementation.
The matching matrix is obtained by solving
X k = arg max X r = 1 N R t = 1 N T w ˜ r , t , k x r , t , k ,
subject to
X X h a r d ( s k ) .
Here, X h a r d ( s k ) denotes the set of matching matrices satisfying radar exclusiveness, task capacity, beam feasibility, and task time-window constraints.
  • Stage 3: Feasible Power Allocation.
For each matched radar–task pair, the neural scheduler first predicts a raw transmit power:
p r , t , k r a w = P r m a x · sigmoid FC p ( f k , r , t ) .
The executable power matrix is obtained by Euclidean projection:
P k = arg min P 1 2 r = 1 N R t = 1 N T ( p r , t , k p r , t , k r a w ) 2 ,
subject to
0 p r , t , k P r m a x x r , t , k , r , t , k ,
t = 1 N T p r , t , k P r , k r e m , r , k .
For the single-beam setting, where each radar is assigned to at most one task at each slot, the projection has the following closed-form solution:
p r , t , k = x r , t , k min max ( p r , t , k r a w , 0 ) , P r m a x , P r , k r e m .
If multi-beam scheduling is enabled, the projection becomes a box-constrained simplex projection for each radar and can be solved by a sorting-based water-filling algorithm with complexity
O ( | T r ( k ) | log | T r ( k ) | ) ,
where T r ( k ) = { t | x r , t , k = 1 } . In the current implementation, the projection layer is used as a feasibility-enforcing execution operator.
  • Two-Stage Policy Optimization.
The policy is trained using a two-stage strategy. The first stage performs behavioral cloning from expert trajectories generated by a constraint-aware rolling heuristic. The second stage performs actor–critic fine-tuning in the simulation environment.
For an expert trajectory, the return-to-go is computed as
G k E = k = k K γ k k r ( s k E , a k E ) .
During behavioral cloning, the model is supervised on task-priority labels and raw power targets:
L B C = E ( s k , a k E , G k E ) D E L p r i o + λ p o w L p o w e r .
The task-priority loss is
L p r i o = t = 1 N T y t , k E log π θ , k ( t ) ,
where y t , k E is the expert task-priority label. The power loss is
L p o w e r = r = 1 N R t = 1 N T x r , t , k E p r , t , k r a w p r , t , k E 2 .
During online fine-tuning, the future return is unavailable. To avoid an abrupt distribution shift from expert return-to-go to critic value, we use a warm-up return-conditioning strategy:
G k o n l i n e = ρ n G ^ k B C + ( 1 ρ n ) stopgrad ( V ϕ ( s k ) ) ,
where
ρ n = max ( 0 , 1 n / N w a r m ) .
The critic value is detached before being used as an actor input, so actor gradients do not update the critic through the conditioning pathway.
The critic is trained by minimizing
L c r i t i c = E τ π θ V ϕ ( s k ) R ^ k 2 ,
where R ^ k is the bootstrapped return. The actor is updated using advantage-based policy optimization on the pre-decision variables, while the environment receives only the feasibility-projected action.

4. Experiments

4.1. Experimental Setup

Experiments were conducted on a workstation equipped with an Intel Xeon Gold 6330 CPU, an NVIDIA RTX 4090 GPU with 24 GB memory, and 64 GB RAM. The implementation was based on Python 3.10, PyTorch 2.1, CUDA 11.8, and a Gymnasium-based multi-radar scheduling simulator. Unless otherwise stated, all results are reported as mean ± standard deviation over five random seeds.
The proposed method is evaluated on MRSched-Bench, a simulation benchmark for homogeneous multiple phased-array radar scheduling, which is shown in Table 4. The benchmark includes Small, Medium, and Large scenarios with different radar numbers, task loads, scheduling horizons, and interference intensities [38,39,40,41,42].
The reward and evaluation coefficients are summarized in Table 5. These values are kept fixed for all methods.

4.2. Baselines and Implementation Details

We compare CS-Mamba with classical heuristic methods, optimization-based methods, reinforcement-learning methods, hybrid-action reinforcement-learning methods, and sequence-modeling decision methods. The baselines include EDF, RM, GA, Tabu Search, MILP/ILP, DQN, PPO, MAPPO, QMIX, MADDPG, P-DQN, Decision Transformer, and Decision Mamba.
EDF denotes Earliest Deadline First, which schedules tasks according to the closest deadline. RM denotes Rate Monotonic scheduling, which assigns higher priorities to tasks with shorter refresh periods.
All learning-based baselines use the same state variables, reward function, train/test splits, and random seeds when applicable. Constraint masks are provided to the baselines whenever their action formulation supports masking.
The MAPPO implementation follows the centralized-training decentralized-execution paradigm, which is shown in Table 6. Each radar is treated as an agent. The centralized critic observes the global radar–task state, while each decentralized actor observes the corresponding radar state and a global task summary. The actor network consists of two hidden layers with dimensions 256 and 256, followed by separate heads for task selection and power prediction. The critic network consists of three hidden layers with dimensions 512, 256, and 128 [43,44,45,46,47].
The MILP/ILP baseline is implemented as a rolling-window approximate optimization method rather than an exact solver for the full nonlinear finite-horizon problem. The original scheduling problem contains nonlinear detection fusion, SNR-dependent measurement noise, recursive tracking covariance updates, and long-term resource coupling, which cannot be directly encoded as a tractable MILP without approximation. Therefore, the MILP/ILP baseline uses linearized utility terms, a rolling scheduling window, and a fixed per-slot time budget. Gurobi is used with a time limit of 100 ms per slot in the Small scenario. The reported MILP/ILP result should be interpreted as a tractable optimization baseline rather than the global optimum of the original nonlinear scheduling problem [48,49].

4.3. Constraint and Task-Level Metrics

The hard-constraint violation rate is defined as
H V R = k = 1 K 1 [ a k A h a r d ( s k ) ] K .
The soft-constraint satisfaction rate is defined as
S S R = 1 k = 1 K t = 1 N T 1 [ n t , k < M t or δ t , k > Π t ] K N T .
The task completion rate is
T C R = t = 1 N T 1 [ task t completed ] N T .
The power utilization rate is
P U R = k = 1 K r = 1 N R t = 1 N T p r , t , k r = 1 N R P r b u d .
Constraint and task-level performance in the Medium scenario is shown in Table 7.

4.4. Results on MRSched-Bench

The proposed method is first evaluated on the dedicated MRSched-Bench benchmark, which contains Small, Medium, and Large scenarios. These scenarios share the same state definition, action semantics, reward structure, and constraint mechanism, while differing in radar number, task scale, scheduling horizon, task load, and interference intensity. The Small scenario is used for comparison with optimization-based methods, the Medium scenario serves as the main benchmark, and the Large scenario evaluates scalability under high-load and constraint-intensive conditions [50,51].
As shown in Table 8, the proposed method achieves the best normalized cost-effectiveness score across all scenario scales. In the Medium scenario, which serves as the main benchmark, our method improves the normalized cost-effectiveness score from 0.62 obtained by MAPPO to 0.78, corresponding to a relative improvement of 25.8%. Compared with Decision Transformer and Decision Mamba, the proposed method also achieves higher scheduling quality, indicating the effectiveness of combining Mamba temporal encoding with constraint-aware hybrid action generation.
In terms of real-time performance, the proposed method achieves the lowest end-to-end latency among learning-based methods. In the Medium scenario, the decision latency is reduced from 24.5 ms for MAPPO and 28.4 ms for Decision Transformer to 12.8 ms. In the Large scenario, the latency advantage becomes more evident, demonstrating the scalability of the linear-complexity Mamba encoder under long-horizon scheduling.
The results which are shown in Figure 2, Figure 3 and Figure 4, show that the proposed framework maintains strong performance as the task scale and constraint complexity increase. This benefit comes from three aspects. First, the Mamba encoder captures long-term causal dependencies among residual power, task refresh intervals, interference evolution, and tracking uncertainty. Second, the hierarchical hybrid action mechanism decomposes radar scheduling into task prioritization, radar–task matching, and power allocation, reducing the difficulty of direct hybrid action learning. Third, action masking and feasible-domain projection suppress infeasible exploration and improve engineering executability.

4.5. Results on Public Scheduling Benchmarks

To evaluate generalization ability beyond the radar simulator, the proposed framework was further tested on public JSP/FJSP scheduling benchmarks. Radar nodes were mapped to machines, radar tasks were mapped to jobs or operations, and hard constraints were mapped to machine availability, operation compatibility, and time-window restrictions. The original makespan-oriented scheduling objective was converted into a normalized cost-effectiveness objective that jointly considers task utility, resource cost, and constraint penalties.
Table 9 shows that the proposed method consistently achieves the highest normalized cost-effectiveness score across different agent scales. Compared with Transformer-RL, our method improves the normalized cost-effectiveness score from 0.74 to 0.78 in the single-agent setting and from 0.70 to 0.75 in the four-agent setting. These results indicate that the proposed scheduler is not limited to the radar simulation environment but can also generalize to standard scheduling problems with structured resource-task matching.

4.6. Complexity and Real-Time Analysis

To further evaluate deployment efficiency, we compare the parameter size, FLOPs, and single-step inference latency of different neural scheduling methods under the same input sequence length K = 200 and batch size 1.
As shown in Table 10, the proposed method achieves a favorable balance between model size and inference efficiency. Compared with Transformer-RL, our method uses only 25.4% of the parameters and 16.1% of the FLOPs, while reducing inference latency from 34.5 ms to 12.8 ms. This advantage mainly results from the linear-complexity Mamba encoder, which avoids the quadratic attention cost of Transformer-based sequence models. The hierarchical action generation module also avoids the parameter explosion caused by directly outputting high-dimensional hybrid actions.

4.7. Ablation Study

To analyze the contribution of each component, we conduct ablation experiments by removing or replacing the Mamba encoder, the remaining reachable cost-effectiveness return G k , the hierarchical action generation module, the hard-constraint action mask, and the long-horizon input.
Table 11 verifies the necessity of the proposed components. Replacing the Mamba encoder with LSTM decreases the normalized cost-effectiveness score from 0.78 to 0.65, demonstrating the importance of long-range temporal modeling. Removing G k reduces the performance to 0.71, indicating that future-oriented return guidance helps prevent short-sighted scheduling. Without hierarchical action generation, the normalized cost-effectiveness score drops to 0.69, confirming the importance of matching the policy structure with the hybrid nature of radar scheduling. Removing the action mask also causes a clear performance decline, showing that hard constraints should be enforced during action generation rather than only penalized after execution. Finally, reducing the horizon from 200 slots to 50 slots decreases performance to 0.68, further validating the necessity of long-term scheduling information.

5. Conclusions

This paper proposed CS-Mamba, a long-horizon constraint-aware collaborative scheduling framework for homogeneous multiple phased-array radars. The scheduling problem was formulated as a finite-horizon decision process with structured hybrid actions, where radar–task matching and transmit-power allocation are jointly optimized under hard operational constraints and soft mission-level requirements.
The proposed method combines Mamba temporal encoding, structured radar–task matching, feasible power projection, and two-stage policy optimization. By explicitly distinguishing hard feasibility constraints from soft mission-level requirements and by linking transmit power to radar detection and tracking performance, the proposed framework improves both scheduling effectiveness and executability.
Experiments on MRSched-Bench demonstrate that CS-Mamba achieves higher normalized cost-effectiveness scores and lower end-to-end decision latency than representative optimization-based, reinforcement-learning, hybrid-action, and sequence-modeling baselines. Additional ablation studies verify the contributions of Mamba temporal encoding, structured matching, feasible power projection, and behavioral-cloning-based initialization followed by actor–critic fine-tuning.
This study is limited to homogeneous radar networks and simulation-based evaluation. Future work will extend the framework to heterogeneous radar networks, hardware-in-the-loop validation, and deployment on resource-constrained edge processors.

Author Contributions

Author Contributions: Conceptualization, J.L. and J.X.; methodology, J.L.; software, J.L.; validation, J.L., J.X. and W.X.; formal analysis, J.L.; investigation, J.L.; resources, J.L. and W.X.; data curation, J.L. and M.L.; writing—original draft preparation, J.L.; writing—review and editing, J.L., J.X. and W.X.; visualization, J.L. and M.L.; supervision, W.X.; project administration, W.X.; funding acquisition, W.X. All authors have read and agreed to the published version of the manuscript.

Funding

This research did not receive external funding. The APC was funded by the authors.

Institutional Review Board Statement

Not applicable. This study only involves algorithm simulation and theoretical derivation, and does not involve ethical experiments related to humans or animals.

Informed Consent Statement

Not applicable.

Data Availability Statement

The public JSP/FJSP benchmark datasets used for auxiliary evaluation are available from standard scheduling benchmark libraries. The high-fidelity private radar simulation data cannot be publicly released due to confidentiality restrictions. However, the authors will release a reduced public version of MRSched-Bench, including normalized radar parameters, scenario-generation scripts, configuration files, pseudo-random seeds, and evaluation scripts, to support reproducibility.

Acknowledgments

The authors thank the anonymous reviewers for their valuable comments and suggestions to improve the quality of this article. The authors also gratefully acknowledge the support from the radar system research team for professional advice on phased array radar engineering constraints and scheduling logic.

Conflicts of Interest

The authors declare no conflicts of interest. The sponsors had no role in the design of the study; in the collection, analysis or interpretation of data; in the writing of the manuscript; or in the decision to publish the results.

References

  1. Ota, K. Decision Mamba: Reinforcement Learning via Sequence Modeling with Selective State Spaces. arXiv 2024, arXiv:2403.19925. [Google Scholar]
  2. Chen, H.; Luo, T.; Yang, B.; Sun, L.; Huang, S.; Hu, J.; Yang, Z.; Yang, L. Mamba-based Reinforcement Learning for Long-Horizon Decision Making. arXiv 2024, arXiv:2406.00079. [Google Scholar]
  3. Dao, T.; Gu, A. Transformers are SSMs: Generalized Models and Efficient Algorithms Through Structured State Space Duality. arXiv 2024, arXiv:2405.21060. [Google Scholar]
  4. Lowe, R.; Wu, Y.; Tamar, A.; Harb, J.; Abbeel, P.; Mordatch, I. Multi-Agent Actor-Critic for Mixed Cooperative-Competitive Environments. Adv. Neural Inf. Process. Syst. 2017, 30, 6379–6390. [Google Scholar]
  5. Rashid, T.; Samvelyan, M.; Schroeder, C.; Farquhar, G.; Foerster, J.; Whiteson, S. QMIX: Monotonic Value Function Factorisation for Deep Multi-Agent Reinforcement Learning. In Proceedings of the International Conference on Machine Learning (ICML), Stockholm, Sweden, 10–15 July 2018. [Google Scholar]
  6. Zhang, H.; Liu, W.; Zhang, L.; Meng, Y.; Han, W.; Song, T.; Yang, R. An allocation strategy integrated power, bandwidth, and subchannel in a RCC network. Def. Technol. 2025, 60, 138–154. [Google Scholar] [CrossRef]
  7. Yu, C.; Velu, A.; Vinitsky, E.; Gao, J.; Wang, Y.; Bayen, A.; Wu, Y. The Surprising Effectiveness of PPO in Cooperative Multi-Agent Games. Adv. Neural Inf. Process. Syst. 2022, 35, 24611–24624. [Google Scholar] [CrossRef]
  8. Zhang, H.; Liu, W.; Zhang, L.; Meng, Y.; Song, T.; Xu, H.X. Joint resource and trajectory optimization in a UAV-enabled dual-function radar-communication network. Def. Technol. 2025, 60, 30–49. [Google Scholar] [CrossRef]
  9. Sun, M.; Zhang, Q.; Chen, G. Adaptive scheduling algorithm for phased array radar under dynamic time windows. J. Radar 2018, 7, 303–312. [Google Scholar]
  10. Wang, X.; Yi, W.; Kong, L. Joint beam and dwell time allocation method for phased array radar based on multi-objective tracking. J. Radar 2017, 6, 602–610. [Google Scholar]
  11. Wang, X. Research on Beam and Time Resource Management Algorithms for Phased Array Radar Tracking Modes. Master’s Thesis, University of Electronic Science and Technology of China, Chengdu, China, 2018. [Google Scholar]
  12. Xie, M.; Yi, W.; Kong, L.; Kirubarajan, T. Receive beam resource allocation for multiple target tracking with distributed MIMO radars. IEEE Trans. Aerosp. Electron. Syst. 2018, 54, 2421–2436. [Google Scholar] [CrossRef]
  13. Tang, J. Research on Resource Scheduling Method for Multi-Function Radar Networking. Master’s Thesis, University of Electronic Science and Technology of China, Chengdu, China, 2021. [Google Scholar] [CrossRef]
  14. Li, S.; Xu, G.; Lin, H. Research on Automatic Radar Deployment Based on Improved Ant Colony Algorithm. Foreign Electron. Meas. Technol. 2021, 40, 41–47. [Google Scholar] [CrossRef]
  15. Hu, B.; Zhu, Y.; Zhou, Y. Simulated annealing whale radar resource scheduling algorithm for Koei variation. J. Northwest. Polytech. Univ. 2022, 40, 796–803. [Google Scholar] [CrossRef]
  16. Zhao, L.; Shi, X. Simulation of adaptive resource scheduling for multifunctional phased array radar. Fire Control Radar Technol. 2022, 51, 102–108. [Google Scholar] [CrossRef]
  17. Feng, L.-W.; Liu, S.-T.; Xu, H.-Z. Multifunctional Radar Cognitive Jamming Decision Based on Dueling Double Deep Q-Network. IEEE Access 2022, 10, 112150–112157. [Google Scholar] [CrossRef]
  18. Ye, Y.; Wei, Y.; Lingjiang, K. Joint tracking sequence and dwell time allocation for multi-target tracking with phased array radar. Signal Process. 2022, 192, 108374. [Google Scholar] [CrossRef]
  19. Yi, W.; Yuan, Y.; Liu, G. Research progress on multi-radar cooperative detection technology: Cognitive tracking and resource scheduling algorithms. J. Radar 2023, 12, 471–499. [Google Scholar]
  20. Zhou, Q.; Yi, W.; Yuan, Y.; Ding, J.; Kong, L.; Yang, J. Distributed multi-base passive radar signal-level cooperative target localization technology. Mod. Radar 2024, 46, 64–78. [Google Scholar] [CrossRef]
  21. Ding, J. Research on Complexity Mechanisms and Applications of Human-Machine Decision-Making Integration. Mod. Radar 2024, 46, 1–8. [Google Scholar] [CrossRef]
  22. Li, Z.; Chen, X.; Huang, H. Optimization of Multi-Park Integrated Energy Systems Based on Hierarchical Reinforcement Learning for Multi-Agent Systems. Zhejiang Electr. Power 2025, 44, 46–57. [Google Scholar] [CrossRef]
  23. Huang, Y.; Zhang, X.; Yue, D.; Hu, S.; Wang, J.; Li, Z. Active voltage regulation strategy for distribution networks based on multi-agent deep reinforcement learning. Power Syst. Autom. 2025, 49, 65–73. [Google Scholar]
  24. Wang, T.; Dou, L.; Li, Z. Prescribed performance tracking control for nonlinear multi-agent systems. Control Theory Appl. 2026, 43, 79–89. [Google Scholar] [CrossRef]
  25. Lu, X. Research on Radar Resource Scheduling Method for Target Tracking Under Low Capture Constraints. Ph.D. Thesis, University of Electronic Science and Technology of China, Chengdu, China, 2023. [Google Scholar] [CrossRef]
  26. Wang, P. Selection of Cognitive Radar Waveform Parameters and Resource Scheduling for Collaborative Tracking Optimization. Master’s Thesis, Harbin Institute of Technology, Harbin, China, 2021. [Google Scholar]
  27. Bai, H. Research on Resource Scheduling Method for Multi-Station Radar Collaborative Detection. Master’s Thesis, Xi’an University of Electronic Science and Technology, Xi’an, China, 2023. [Google Scholar] [CrossRef]
  28. Guo, Z.; Liu, Y.; Wang, Y.; Meng, Y.; Liu, B. Joint Communication-Motion Planning for UAV Swarm against Jamming with Multi-Agent Deep Reinforcement Learning. In 2024 IEEE 35th International Symposium on Personal, Indoor and Mobile Radio Communications (PIMRC); IEEE: Piscataway, NJ, USA, 2024; pp. 1–7. [Google Scholar] [CrossRef]
  29. Zhan, Y.; Zhang, J.; Lin, Z.; Xiao, L. Energy-Efficient Anti-Jamming Metaverse Resource Allocation Based on Reinforcement Learning. In 2024 IEEE Wireless Communications and Networking Conference (WCNC); IEEE: Piscataway, NJ, USA, 2024; pp. 1–6. [Google Scholar] [CrossRef]
  30. Godrich, H.; Petropulu, A.; Poor, H.V. A combinatorial optimization framework for subset selection in distributed multiple-radar architectures. In 2011 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP); IEEE: Piscataway, NJ, USA, 2011; pp. 2796–2799. [Google Scholar] [CrossRef]
  31. Xie, M.; Yi, W.; Kirubarajan, T.; Kong, L. Joint Node Selection and Power Allocation Strategy for Multitarget Tracking in Decentralized Radar Networks. IEEE Trans. Signal Process. 2018, 66, 729–743. [Google Scholar] [CrossRef]
  32. Wu, Y.; Fioranelli, F.; Gao, C. RadMamba: Efficient Human Activity Recognition Through a Radar-Based Micro-Doppler-Oriented Mamba State-Space Model. IEEE Trans. Radar Syst. 2026, 4, 261–272. [Google Scholar] [CrossRef]
  33. Kozy, M.; Yu, J.; Buehrer, R.M.; Martone, A.; Sherbondy, K. Applying Deep-Q Networks to Target Tracking to Improve Cognitive Radar. In 2019 IEEE Radar Conference (RadarConf); IEEE: Piscataway, NJ, USA, 2019; pp. 1–6. [Google Scholar] [CrossRef]
  34. Zhang, Z.; Yuan, Y.; Sun, J.; Han, K.; Li, H.; Yi, W. Reinforcement-Learning-Based Agile Transmission Strategy for Networked Radar System Anti-Jamming. IEEE Trans. Aerosp. Electron. Syst. 2025, 61, 11543–11557. [Google Scholar] [CrossRef]
  35. Shen, S.; Petropulu, A.P.; Poor, H.V. Hierarchical Reinforcement Learning for Joint Task Assignment and Power Allocation in Cognitive Radar Networks. IEEE Trans. Signal Process. 2023, 71, 1245–1260. [Google Scholar]
  36. Sun, S.; Petropulu, A.P. A Sparse Linear Array Approach in Automotive Radars Using Matrix Completion. In ICASSP 2020—2020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP); IEEE: Piscataway, NJ, USA, 2020; pp. 8614–8618. [Google Scholar] [CrossRef]
  37. Feng, L.; Liu, S.; Xu, H. Constrained Reinforcement Learning for Hard-Constrained Radar Resource Management with Action Masking. IEEE Trans. Cybern. 2023, 53, 7012–7025. [Google Scholar]
  38. Ahmed, A.M.; Ahmad, A.A.; Fortunati, S.; Sezgin, A.; Greco, M.S.; Gini, F. A Reinforcement Learning Based Approach for Multitarget Detection in Massive MIMO Radar. IEEE Trans. Aerosp. Electron. Syst. 2021, 57, 2622–2636. [Google Scholar] [CrossRef]
  39. Gongguo, X.; Ganlin, S.; Xiusheng, D. Sensor scheduling for ground maneuvering target tracking in presence of detection blind zone. J. Syst. Eng. Electron. 2020, 31, 692–702. [Google Scholar] [CrossRef]
  40. Lu, X.; Xu, Z.; Ren, H.; Yi, W. LPI-based Resource Allocation Strategy for Target Tracking in the Moving Airborne Radar Network. In 2022 IEEE Radar Conference (RadarConf22); IEEE: Piscataway, NJ, USA, 2022; pp. 1–6. [Google Scholar] [CrossRef]
  41. Yan, J.; Pu, W.; Zhou, S.; Liu, H.; Greco, M.S. Optimal Resource Allocation for Asynchronous Multiple Targets Tracking in Heterogeneous Radar Networks. IEEE Trans. Signal Process. 2020, 68, 4055–4068. [Google Scholar] [CrossRef]
  42. Li, Z.-J.; Zhang, H.-W.; Xie, J.-W.; Xiang, H.-H.; Ge, J.-A.; Wang, B. An Optimized Resource Allocation Algorithm in Cognitive C-MIMO Radar for Multiple Maneuvering Target Tracking. In 2021 CIE International Conference on Radar (Radar); IEEE: Piscataway, NJ, USA, 2021; pp. 1691–1694. [Google Scholar] [CrossRef]
  43. Su, Y.; He, Z.; Deng, M.; Wang, J. Collaborative Resource Allocation and Beampattern Optimization for Maneuvering Targets Tracking with Distributed Radar Network. In IGARSS 2022–2022 IEEE International Geoscience and Remote Sensing Symposium; IEEE: Piscataway, NJ, USA, 2022; pp. 7669–7672. [Google Scholar] [CrossRef]
  44. Li, Z.; Xie, J.; Liu, W.; Zhang, H.; Xiang, H. Joint Strategy of Power and Bandwidth Allocation for Multiple Maneuvering Target Tracking in Cognitive MIMO Radar With Collocated Antennas. IEEE Trans. Veh. Technol. 2023, 72, 190–204. [Google Scholar] [CrossRef]
  45. Zhao, L.; Wang, F.; Hu, W. Two-Stage Imitation Learning with Reinforcement Fine-Tuning for Real-Time Radar Task Scheduling. IEEE Trans. Veh. Technol. 2024, 73, 13682–13693. [Google Scholar]
  46. Yang, S.X.; Deb, K. A survey of dynamic multi-objective optimization. Swarm Evol. Comput. 2021, 62, 100859. [Google Scholar]
  47. Ahmed, A.; Zhang, Y.D. Optimized Resource Allocation for Distributed Joint Radar-Communication System. IEEE Trans. Veh. Technol. 2024, 73, 3872–3885. [Google Scholar] [CrossRef]
  48. Lu, Z.; Kalia, S.; Gursoy, M.C.; Mohan, C.K.; Varshney, P.K. Multi-Objective Reinforcement Learning for Cognitive Radar Resource Management. In ICASSP 2025—2025 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP); IEEE: Piscataway, NJ, USA, 2025; pp. 1–5. [Google Scholar] [CrossRef]
  49. Wang, Y.; Liang, Y.; Wang, Z. Hierarchical Reinforcement-Learning-Based Joint Allocation of Jamming Task and Power for Countering Networked Radar. IEEE Trans. Aerosp. Electron. Syst. 2025, 61, 2149–2167. [Google Scholar] [CrossRef]
  50. Lu, Z.; Gursoy, M.C.; Mohan, C.K.; Varshney, P.K. Adaptive Resource Management in Cognitive Radar via Deep Deterministic Policy Gradient. In 2025 IEEE International Radar Conference (RADAR); IEEE: Piscataway, NJ, USA, 2025; pp. 1–6. [Google Scholar] [CrossRef]
  51. Yan, J.; Liu, H.; Greco, M.S. CTDE-MARL for Coherent Multi-Phased Array Radar Coordination with Long-Term Resource Constraints. IEEE Trans. Signal Process. 2025, 73, 890–905. [Google Scholar] [CrossRef]
Figure 1. CS-Mamba for Multi-Radar Collaborative Scheduling.
Figure 1. CS-Mamba for Multi-Radar Collaborative Scheduling.
Sensors 26 04772 g001
Figure 2. Comparison of normalized cost-effectiveness scores under different scenario scales.
Figure 2. Comparison of normalized cost-effectiveness scores under different scenario scales.
Sensors 26 04772 g002
Figure 3. Comparison of end-to-end decision latency under different scenario scales.
Figure 3. Comparison of end-to-end decision latency under different scenario scales.
Sensors 26 04772 g003
Figure 4. Comparison of soft-constraint satisfaction rates under different scenario scales.
Figure 4. Comparison of soft-constraint satisfaction rates under different scenario scales.
Sensors 26 04772 g004
Table 1. Comparison with related scheduling and decision-making methods.
Table 1. Comparison with related scheduling and decision-making methods.
Method FamilyLong HorizonHybrid ActionHard FeasibilityRadar Physical ModelOnline Fine-Tuning
MILP/ILPPartialYesYesSimplifiedNo
CMDP/CPOYesLimitedPenalty-basedNoYes
P-DQNPartialYesUsually noNoYes
MAPPO/QMIXPartialLimitedMask or penaltyUsually noYes
Decision TransformerYesLimitedNoNoLimited
Decision MambaYesLimitedNoNoLimited
Classical radar allocationLimitedYesYesYesNo
CS-MambaYesYesMatching + projectionYesYes
Table 2. State variables used in MRSched-Bench.
Table 2. State variables used in MRSched-Bench.
ComponentSymbolDimensionMeaning
Residual power P r , k r e m N R Remaining radar energy budget
Beam availability b r , k N R Whether radar r can execute a task
Radar load l r , k N R Historical utilization of radar nodes
Target position q t , k 2 N T or 3 N T Target spatial location
Target velocity v t , k 2 N T or 3 N T Target motion state
Tracking covariance trace tr ( P t , k ) N T Tracking uncertainty
Task priority ω t , k N T Mission priority
Deadline d t , k N T Remaining task deadline
Refresh interval δ t , k N T Slots since last execution
Jamming level J N R r , t , k N R N T Jammer-to-noise ratio
Clutter level C N R r , t , k N R N T Clutter-to-noise ratio
Geometric accessibility g r , t , k N R N T Beam visibility and coverage
Table 3. Dimensions and settings of the Mamba temporal encoder.
Table 3. Dimensions and settings of the Mamba temporal encoder.
Variable or SettingDimension or Value
Input state s k D s
Embedding vector x k D e m b = 256
Hidden state h k D h
Output representation z k D z
Number of Mamba blocks3
State-space dimension16
Sequence length in Medium scenario200
Table 4. Scenario configurations of MRSched-Bench.
Table 4. Scenario configurations of MRSched-Bench.
ParameterSmallMediumLarge
Number of radars N R 248
Number of targets4–68–1216–24
Candidate task categories N T 102040
Scheduling horizon K100200400
Slot length Δ t 10 ms10 ms10 ms
JNR range0–15 dB0–20 dB5–25 dB
CNR range0–10 dB0–15 dB5–20 dB
Training scenarios100020003000
Test scenarios100100100
Random seeds555
Table 5. Reward and evaluation coefficients.
Table 5. Reward and evaluation coefficients.
CoefficientValueMeaning
λ C 0.35Resource-cost weight in CE
λ Φ 0.25Penalty weight in CE
λ p 0.10Transmit-power cost coefficient
β t r 0.50Cooperative tracking penalty coefficient
β p e r 0.50Periodic refresh penalty coefficient
a d 1.00Detection-probability slope
γ 0 10 dBDetection SNR threshold
Table 6. MAPPO hyperparameters.
Table 6. MAPPO hyperparameters.
HyperparameterValue
Actor hidden size256, 256
Critic hidden size512, 256, 128
OptimizerAdam
Actor learning rate 3 × 10 4
Critic learning rate 1 × 10 3
Discount factor0.95
GAE parameter0.95
PPO clipping ratio0.2
Entropy coefficient0.01
Value loss coefficient0.5
Batch size4096
Mini-batch size512
PPO epochs per update10
Gradient clipping0.5
Training steps 2.0 × 10 6
Random seeds5
Table 7. Constraint and task-level performance in the Medium scenario.
Table 7. Constraint and task-level performance in the Medium scenario.
MethodCE ↑HVR ↓SSR ↑TCR ↑PUR ↑Tracking Error ↓
MAPPO 0.62 ± 0.02 0.0 % 82.6 ± 2.4 % 78.3 ± 2.8 % 71.5 ± 3.1 % 0.46 ± 0.03
P-DQN 0.64 ± 0.02 0.0 % 84.1 ± 2.2 % 80.2 ± 2.5 % 73.8 ± 2.9 % 0.43 ± 0.03
Decision Transformer 0.67 ± 0.02 0.0 % 86.7 ± 2.0 % 83.5 ± 2.3 % 75.6 ± 2.6 % 0.39 ± 0.02
Decision Mamba 0.72 ± 0.02 0.0 % 90.8 ± 1.7 % 87.9 ± 2.0 % 78.4 ± 2.3 % 0.34 ± 0.02
CS-Mamba 0.78 ± 0.01 0.0 % 95.3 ± 1.2 % 92.6 ± 1.5 % 82.1 ± 1.8 % 0.27 ± 0.01
Table 8. Performance comparison on MRSched-Bench. CE denotes the normalized cost-effectiveness score, and latency is measured in ms per decision step.
Table 8. Performance comparison on MRSched-Bench. CE denotes the normalized cost-effectiveness score, and latency is measured in ms per decision step.
MethodSmallMediumLargeMissing Reason
CE ↑Latency ↓CE ↑Latency ↓CE ↑Latency ↓
EDF 0.53 ± 0.02 1.2 ± 0.1 0.51 ± 0.02 1.2 ± 0.1 0.48 ± 0.03 1.3 ± 0.1
RM 0.55 ± 0.03 1.3 ± 0.1 0.53 ± 0.03 1.3 ± 0.1 0.49 ± 0.03 1.4 ± 0.1
GA 0.61 ± 0.02 18.6 ± 1.2 0.60 ± 0.02 22.5 ± 1.5 TOTOTimeout
Tabu Search 0.63 ± 0.02 15.9 ± 1.1 0.61 ± 0.02 20.4 ± 1.4 TOTOTimeout
MILP/ILP 0.70 ± 0.01 134.8 ± 6.5 TOTOTOTOTimeout
DQN 0.58 ± 0.03 18.2 ± 0.9 Discrete action only
PPO 0.63 ± 0.02 20.1 ± 1.0
MAPPO 0.65 ± 0.02 14.5 ± 0.8 0.62 ± 0.02 24.5 ± 1.2 0.54 ± 0.03 31.6 ± 1.8
P-DQN 0.64 ± 0.02 21.6 ± 1.1 0.57 ± 0.02 28.9 ± 1.5
Decision Transformer 0.66 ± 0.02 21.3 ± 1.0 0.67 ± 0.02 28.4 ± 1.5 0.61 ± 0.02 39.7 ± 2.0
Decision Mamba 0.72 ± 0.02 16.5 ± 0.8 0.66 ± 0.02 20.8 ± 1.1
CS-Mamba 0.71 ± 0.01 12.4 ± 0.5 0.78 ± 0.01 12.8 ± 0.6 0.73 ± 0.02 15.7 ± 0.9
Table 9. Cost-effectiveness comparison on public scheduling benchmarks with different agent scales.
Table 9. Cost-effectiveness comparison on public scheduling benchmarks with different agent scales.
Method1-Agent2-Agent3-Agent4-Agent
GA0.6210.6250.6250.625
PPO0.6820.6670.6530.644
A2C0.7030.6820.6730.663
SAC0.7110.6910.6840.678
TD30.7030.6820.6720.667
Double DQN0.6950.6730.6640.658
Rainbow DQN0.7060.6830.6740.668
GNN-RL0.7360.7180.7020.696
Transformer-RL0.7440.7270.7120.702
Ours0.7830.7720.7640.757
Table 10. Comparison of model complexity and inference latency.
Table 10. Comparison of model complexity and inference latency.
MethodParams (M)FLOPs (G)Latency (ms/Step)
PPO2.80.6230.1
MAPPO4.51.0534.5
GNN-RL5.21.2834.0
Transformer-RL12.65.4234.5
Ours3.20.8712.8
Table 11. Ablation study on long-term and constraint-aware components.
Table 11. Ablation study on long-term and constraint-aware components.
VariantDescriptionCost-Effectiveness ↑
Full CS-MambaComplete framework0.78
w/o Mamba EncoderReplace Mamba with LSTM0.65
w/o G k Remove future return guidance0.71
w/o Hierarchical ActionUse direct joint action output0.69
w/o Action MaskRemove hard-constraint masking0.66
Short Horizon K = 50 Reduce history from 200 to 50 slots0.68
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Liu, J.; Xu, J.; Xing, W.; Li, M. Long-Horizon Constraint-Aware Collaborative Scheduling for Multiple Phased-Array Radars Using Mamba Temporal Encoding and Structured Hybrid Actions. Sensors 2026, 26, 4772. https://doi.org/10.3390/s26154772

AMA Style

Liu J, Xu J, Xing W, Li M. Long-Horizon Constraint-Aware Collaborative Scheduling for Multiple Phased-Array Radars Using Mamba Temporal Encoding and Structured Hybrid Actions. Sensors. 2026; 26(15):4772. https://doi.org/10.3390/s26154772

Chicago/Turabian Style

Liu, Jianan, Jie Xu, Wenge Xing, and Mingrui Li. 2026. "Long-Horizon Constraint-Aware Collaborative Scheduling for Multiple Phased-Array Radars Using Mamba Temporal Encoding and Structured Hybrid Actions" Sensors 26, no. 15: 4772. https://doi.org/10.3390/s26154772

APA Style

Liu, J., Xu, J., Xing, W., & Li, M. (2026). Long-Horizon Constraint-Aware Collaborative Scheduling for Multiple Phased-Array Radars Using Mamba Temporal Encoding and Structured Hybrid Actions. Sensors, 26(15), 4772. https://doi.org/10.3390/s26154772

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop