Pith. sign in

REVIEW 4 major objections 5 minor 28 references

Multi-Year Maintenance Planning for Large-Scale Infrastructure Systems: A Novel Network Deep Q-Learning Approach

T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read Deep Q-learning, split per asset and reconciled by a budget layer, beats year-by-year LP and GA baselines in 20-year road maintenance planning.

desk verdict The engineering case study is real, but the learning rule is described two incompatible ways and no code shows which one produced the numbers. read the letter →

arxiv 2507.18732 v1 pith:LX4DKDQS submitted 2025-07-24 math.OC cs.AIcs.LGcs.SYeess.SY

classification math.OCcs.AIcs.LGcs.SYeess.SY MSC 90C4090B2568T0790C27
keywords multi-yearmaintenanceplanningpavementnetworkdeepQ-learningreinforcementlearningMarkovdecisionprocessbudgetconstraintsLevelofServiceinfrastructureassetmanagement
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

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

The reading

Multi-year maintenance planning for large infrastructure networks is a combinatorial optimization problem: with a shared annual budget, the action space is the product of every asset's possible treatments, and exact dynamic programming becomes infeasible. The paper argues that this can be made tractable by decomposing the network-level Markov Decision Process into independent asset-level MDPs, learning a cost-normalized Q-function for each asset, and then using an annual budget-allocation step to reconcile local preferences into a feasible global plan. On a 68,800-segment pavement network over a 20-year horizon with a $200 million annual budget, the resulting Network DQL method achieves a horizon-averaged Level of Service of 5.62 and an end-of-horizon LoS of 5.86, higher than the Progressive LP (5.46, 5.58), Hybrid LP-GA (5.50, 5.68), and Worst-First (4.55, 4.00) benchmarks. The paper also shows the learned policy spends its first decade mostly on rehabilitation and defers reconstruction, while myopic methods start spending on reconstruction early and decline in later years. If these results hold, the framework gives infrastructure agencies a way to plan over decades for networks with tens of thousands of assets without exploding memory or compute.

What carries the argument

The mechanism is the decomposition of the network MDP into asset-level MDPs plus a budget-allocation layer, all driven by a cost-normalized local reward $R_i = (f_{i,a}(s) - f_{i,0}(s))/c_{i,a}$, which measures condition improvement per dollar. A single shared-parameter neural network estimates local Q-values, an Expected SARSA update replaces the max operator so future actions are weighted by the learned policy's probabilities, and a greedy knapsack-style solver (approximating the binary LP in Eqs. 8–10) chooses which candidate actions are funded. A global value network plus policy network, trained on network-level rewards, shapes exploration toward actions that improve the overall Level of Service. Together these parts keep the per-step computation linear in the number of assets rather than combinatorial, while the budget layer keeps the plan feasible each year.

What would settle it

Solve the annual budget-allocation problem exactly as a 0/1 integer program (or by branch-and-bound) on the same 68,800-segment case study and compare HALoS and EHLoS with the greedy-heuristic version; if exact allocation does not improve or match the reported 5.62/5.86, the learning component is not the source of the advantage, and if it surpasses them, the heuristic is hiding part of the benefit.

Watch

Extended reading notes

Core claim

The central discovery is that the coupling introduced by a shared annual budget does not require solving a single high-dimensional constrained MDP; it can be approximated by a three-part decomposition. Each asset learns its own action-value function from a cost-normalized reward—the improvement in condition per unit cost—so Q-values are comparable across assets with different sizes and treatment costs. A budget-allocation layer, formulated as a binary linear program and solved by a greedy knapsack-style ranking (with Gaussian exploration noise), selects which candidate actions actually receive funding each year. A shared policy network and a global value network then steer the local learners toward network-wide Level of Service, rather than purely local myopia. The paper's empirical claim is that this Network DQL framework outperforms all three baselines on the 68,800-segment case study, with the margin coming from a learned strategy that invests early in rehabilitation and only later in reconstruction.

Load-bearing premise

The load-bearing premise is that the greedy knapsack-style allocation of the annual budget gets close enough to the true optimum of the binary LP; if it does not, the reported gains over the baselines could come from the allocation heuristic rather than from the learned Q-values.

Editorial extensions

If this is right

  • If the framework works as claimed, a 20-year maintenance plan for a network with tens of thousands of assets can be trained in about 97 minutes on a CPU-only workstation, and the learned plan stays within the annual budget each year.
  • The learned early-rehabilitation/late-reconstruction profile implies that myopic planners underspend on preventive maintenance; adopting a long-horizon learned policy can raise the network's average and end-of-horizon LoS under the same budget.
  • Tuning the discount factor $\gamma$ gives agencies a practical dial between near-term LoS improvement and end-of-horizon performance, so a manager can choose where on that trade-off to sit.
  • The hybrid experiment (one year of Network DQL followed by Progressive LP) shows that even a single year of globally optimized actions leaves a persistent benefit, suggesting the value of strategic early investments even when full DRL cannot be adopted.
  • Because the same network translates asset-specific inputs to policies, the approach extends to added segments or even other asset types without changing the model architecture.

Reading between the lines

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

  • A natural testable extension is to replace the greedy knapsack allocation with an exact integer-programming solve on the same case study; if the exact version materially changes the LoS numbers, the reported gains are partly an artifact of the allocation heuristic rather than the learned Q-values.
  • The cost-normalized reward format suggests the same architecture could be applied to budget-constrained portfolio problems outside pavements, such as bridge or water networks, since assets enter only through parameter vectors, which would make cross-asset transfer an explicit experiment.
  • The paper's model assumes assets deteriorate independently; adding spatially correlated deterioration (for example, roads in the same neighborhood) would test whether the shared-policy approach still captures systemic risks.
  • One could also measure the optimality gap directly by comparing the Network DQL plan's final LoS against an LP upper bound over the full horizon, to see how much of the gain comes from foresight versus simply from a better single-step allocation.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

4 major / 5 minor

Summary. The manuscript proposes Network DQL, a deep reinforcement learning framework for multi-year infrastructure maintenance planning. The method decomposes a network-level Markov Decision Process into asset-level MDPs, uses a cost-normalized local reward, trains a shared Q-network together with a policy network and a global value network, and enforces annual budget constraints through a knapsack/LP allocation layer. The approach is evaluated on a synthetic 68,800-segment pavement network over a 20-year horizon, reporting a HALoS of 5.62 and an EHLoS of 5.86, versus 5.50/5.68 for the Hybrid LP-GA baseline. Additional experiments examine sensitivity to the discount factor and the effect of using the proposed method only in the first year.

Significance. If the method is correctly specified and the results are reproducible, the paper would make a useful contribution to scalable infrastructure asset management. The core idea of using asset-level MDPs with a shared network and a cost-normalized reward to handle tens of thousands of assets under budget constraints is appealing, and the case-study size is substantial. The paper also addresses a real gap in the DRL-for-infrastructure literature, namely explicit budget enforcement. However, the manuscript currently contains a load-bearing internal inconsistency between the Expected SARSA update of Eq. (7) and the max-based DQN target of Eq. (14), and an unproved claim about the asymptotic optimality of a greedy knapsack heuristic. These issues must be resolved before the reported performance gains can be attributed to the proposed learning method. The lack of code release and the absence of error bars further limit the strength of the empirical claims.

major comments (4)
  1. [Section 3.2 and Section 3.4 (Eqs. 7 and 14)] The paper is internally inconsistent about the Q-learning update rule. Section 3.2 states that the method adopts an Expected SARSA update and Eq. (7) defines Q_i(s,a) = r + gamma * sum_{a'} pi_i(a'|s') Q_i(s',a'), while Section 3.4 defines the TD target as y_TD = r + gamma (1-d) max_{a'} Q(s',a'; theta^-_Q) and the corresponding MSE loss in Eq. (14). These updates are not equivalent, and the text never states which one produced the results in Table 1. Since the Q-values feed directly into the budget allocation LP and the policy network, the reader cannot determine what was actually trained. Please specify the exact update rule used, derive its relationship to the stated Expected SARSA formulation, and explain why the max-based target in Eq. (14) is not a typographical error.
  2. [Section 3.4, Step 2] The claim that the greedy knapsack-like heuristic 'converges asymptotically to the LP solution for large-scale knapsack problems' is unsupported and, in general, false for 0/1 knapsack. The greedy value-to-cost rule is not asymptotically optimal without additional structural assumptions. This is load-bearing because the annual budget allocation is central to the proposed framework, and if the greedy heuristic is suboptimal, the reported LoS gains could reflect the allocation heuristic rather than the Q-learning. Please either provide a rigorous proof with explicit assumptions, use an exact LP/knapsack solver (the text already mentions OR-tools for the LP), or clearly state that the reported results are produced by the heuristic and quantify the resulting suboptimality.
  3. [Section 5, Table 1 and Figure 6] Table 1 reports a single value for each method, yet Figure 6 is described as averaging over 1,000 simulations. No standard deviations, confidence intervals, or number of runs are given for HALoS and EHLoS. The reported improvements over Hybrid LP-GA are modest (0.12 in HALoS and 0.18 in EHLoS), and without variability measures it is not possible to judge whether the differences are statistically significant. Please provide error bars or per-seed results for all reported metrics.
  4. [Section 3.4, Step 2 (Eqs. 12-13)] The LP in Eqs. (12)-(13) differs from the earlier formulation in Eqs. (8)-(10): the earlier LP selects one action per asset from the full action set, while the later formulation first fixes a single candidate action per asset and then solves a 0/1 knapsack over those candidates. This distinction matters for the comparison with Progressive LP and Hybrid LP-GA, which may optimize over a richer action set. Please clarify how the candidate-action restriction affects the optimality of the allocation and whether the same restriction is applied to the baseline methods.
minor comments (5)
  1. [Section 3.4] The text says the Q-network is trained with Expected SARSA, but Eq. (14) is written as a DQN max target. Even if this is a typographical issue, the notation should be corrected throughout, including in Figure 1, which shows the expected-SARSA target.
  2. [Section 4.5] It is unclear whether the 1,000 training episodes and the 1,000 simulations over which Figure 6 is averaged are separate random seeds. Please state how many independent training runs and evaluation runs were performed.
  3. [Figure 1] The flowchart is nearly unreadable in the current version. A high-resolution vector figure with larger text would be needed for readers to follow the training and execution loop.
  4. [Section 5, Delayed Reward] The hybrid experiment in Figure 8 is described only qualitatively. Please specify whether the first-year plan is the policy from the fully trained Network DQL model, how the switch to Progressive LP is implemented, and whether the result is robust across multiple seeds.
  5. [Section 4.4] The hyperparameters used for training (learning rates, mini-batch size, target-network update frequency, epsilon decay schedule, neural-network layer sizes) are not reported. Without these details the results are not reproducible, and the 97-minute training time cannot be interpreted.

Circularity Check

0 steps flagged · score 2.0 of 10

No circularity: the reported LoS values are the optimization objective itself, and the only self-citations are a comparison baseline and contextual remarks.

full rationale

The paper's derivation chain is an end-to-end optimization pipeline: it defines LoS as the objective (Eq. 1), formulates maintenance planning as an MDP, learns Q-functions with a cost-normalized reward (Eq. 6), enforces budget feasibility via a knapsack-style LP allocation (Eqs. 8-10), and then reports the LoS achieved on the same simulated network. Reporting the optimized objective value is standard for an optimization method, not a circular derivation; no fitted parameter is relabeled as an independent prediction. The only self-citations are to the authors' earlier Hybrid LP-GA method, used as a comparison baseline, and to their claim that heuristic methods struggle with large networks. These are not load-bearing: the benchmark result is an empirical baseline rather than a premise used to force the proposed method, and the critical remark is contextual. The internal inconsistency between the Expected SARSA target (Eq. 7 and Fig. 1) and the max-based DQN target (Eq. 14) is an algorithmic ambiguity affecting reproducibility and correctness, but it is not circularity because neither rule is defined in terms of the reported result. No uniqueness theorem or prior self-authored result is invoked to forbid alternatives. Accordingly, no significant circularity is found; the score reflects only the minor self-referential choice of the Hybrid LP-GA baseline.

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

The method relies on several domain assumptions about deterioration and maintenance effectiveness, plus two ad hoc claims: that cost-normalized Q-values form a valid LP objective, and that a greedy heuristic solves the resulting knapsack optimally enough. No new physical entities are introduced.

free parameters (1)
  • Rehabilitation improvement factor (Delta_rehab) = 2.5
    Used in Eq. (19) to define how much rehabilitation raises PQI; it is a hand-chosen model parameter that directly shapes all results.
assumptions (5)
  • domain assumption Absent budget constraints, the network MDP decomposes into independent asset-level MDPs (Eq. 5).
    Assumes no spatial or network effects between assets; used to justify local Q-learning.
  • ad hoc to paper The cost-normalized reward in Eq. (6) yields Q-values that can be multiplied by cost and weight to estimate total network improvement in the LP.
    This equivalence is asserted, not derived; it is what makes the LP objective consistent.
  • ad hoc to paper The greedy knapsack heuristic converges asymptotically to the LP solution.
    Unproven claim that justifies replacing the integer LP with ranking.
  • domain assumption Pavement condition deteriorates according to the Weibull model in Eq. (18).
    The simulation environment is built on this model; all results depend on it.
  • domain assumption Rehabilitation effectiveness follows Eq. (19) with Delta_rehab=2.5.
    The maintenance effect is assumed to be a fixed function of current condition.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Multi-Year Maintenance Planning for Large-Scale Infrastructure Systems: A Novel Network Deep Q-Learning Approach." pith.science (2026). https://pith.science/paper/LX4DKDQS

@misc{pith2026250718732,
  author       = {Pith},
  title        = {Pith review of: Multi-Year Maintenance Planning for Large-Scale Infrastructure Systems: A Novel Network Deep Q-Learning Approach},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/LX4DKDQS}},
  note         = {Machine review of arXiv:2507.18732}
}
read the original abstract

Infrastructure asset management is essential for sustaining the performance of public infrastructure such as road networks, bridges, and utility networks. Traditional maintenance and rehabilitation planning methods often face scalability and computational challenges, particularly for large-scale networks with thousands of assets under budget constraints. This paper presents a novel deep reinforcement learning (DRL) framework that optimizes asset management strategies for large infrastructure networks. By decomposing the network-level Markov Decision Process (MDP) into individual asset-level MDPs while using a unified neural network architecture, the proposed framework reduces computational complexity, improves learning efficiency, and enhances scalability. The framework directly incorporates annual budget constraints through a budget allocation mechanism, ensuring maintenance plans are both optimal and cost-effective. Through a case study on a large-scale pavement network of 68,800 segments, the proposed DRL framework demonstrates significant improvements over traditional methods like Progressive Linear Programming and genetic algorithms, both in efficiency and network performance. This advancement contributes to infrastructure asset management and the broader application of reinforcement learning in complex, large-scale environments.

Figures

Figures reproduced from arXiv: 2507.18732 by the authors.

Figure 1
Figure 1. Flowchart of the proposed method 14 [PITH_FULL_IMAGE:figures/full_fig_p014_1.png] view at source ↗
Figure 2
Figure 2. Architectures of the local Q-network, global value network, and global policy network. Although assets have distinct local states, the same neural architectures and parameter sets can be shared across assets, relying on input vectors to differentiate one asset from another. This approach improves scalability by avoiding an explosion in model size. When the parameter-sharing strategy is adopted, all assets use a sing… view at source ↗
Figure 3
Figure 3. illustrates the distribution of pavement area and the initial PQI for all segments. In Figure 3a, the histogram reveals the variation in segment sizes, while Figure 3b presents the distribution of initial conditions observed across the network. (a) Pavement area (b) Initial PQI [PITH_FULL_IMAGE:figures/full_fig_p025_3.png] view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Histograms of the Weibull parameters 𝑘 and 𝜆 across the pavement network. Intervention Actions and Maintenance Effectiveness Three major interventions are considered in the case study. They are: Do Nothing (0), Rehabil￾itation (1), and Reconstruction (2). While Do Noth…
Figure 5
Figure 5. Figure 5: Trends of key training parameters over 1,000 episodes. TABLE 1. Comparison of the HALoS and EHLoS for the four solution methods. Method HALoS EHLoS Worst-First 4.55 4.00 Progressive LP 5.46 5.58 Hybrid LP-GA 5.50 5.68 Network DQL (proposed) 5.62 5.86 causing steep budg…
Figure 6
Figure 6. Figure 6: Average network LoS profiles for the four strategies (1,000 simulations). GA approach performs better than Progressive LP by blending local search (LP) with more global search capabilities (GA). This mixed strategy attains a higher LoS than Progressive LP (see [PITH_F…
Figure 7
Figure 7. Figure 7: Annual cost breakdown for each strategy, illustrating the share of rehabilitation vs. recon￾struction. interventions. By comparison, the Network DQL strategy (Figure 7d) exhibits a marked preference for rehabil￾itation in the first 10 years. Only in later stages does i…
Figure 8
Figure 8. Figure 8: LoS comparison for a hybrid approach (Network DQL in Year 1, followed by Progressive LP in Years 2–20). Effects of Discount Rate To investigate the sensitivity of the proposed approach to the discount factor 𝛾, [PITH_FULL_IMAGE:figures/full_fig_p032_8.png]
Figure 9
Figure 9. Figure 9: Comparison of different discount factors (𝛾) on the Proposed Method’s LoS profile over a 20-year horizon, benchmarked against Progressive LP. lower values of 𝛾 bias the decision-making toward more immediate gains in LoS . The figure reveals two main observations. First…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

28 extracted references · 23 canonical work pages

  1. [1]

    write newline

    " write newline "" before.all 'output.state := FUNCTION article output.bibitem format.authors "author" output.check author format.key output output.year.check new.block format.title "title" output.check after.quote 'output.state := crossref missing journal emphasize "journal" output.check organization output format.vol.num.pages output format.article.cros...

  2. [2]

    Alqithami, S. (2025). ``Ch-marl: Constrained hierarchical multiagent reinforcement learning for sustainable maritime logistics.''\ arXiv preprint arXiv:2502.02060

  3. [3]

    Chu, J. C. and Huang, K. H. (2018). ``Mathematical programming framework for modeling and comparing network-level pavement maintenance strategies.''\ Transportation Research Part B: Methodological , 109, 1--25

  4. [4]

    and Ghavidel, A

    Du, A. and Ghavidel, A. (2022). ``Parameterized deep reinforcement learning-enabled maintenance decision-support and life-cycle risk assessment for highway bridge portfolios.''\ Structural Safety , 97

  5. [5]

    Elbeltagi, E., Hegazy, T., and Grierson, D. (2005). ``Comparison among five evolutionary-based optimization algorithms.''\ Advanced Engineering Informatics , 19, 43--53

  6. [6]

    Fard, A. K. and Yuan, X.-X. (2024). ``Multiyear maintenance and rehabilitation optimization for large-scale infrastructure networks: An enhanced genetic algorithm approach.''\ Journal of Infrastructure Systems , 30

  7. [7]

    Han, C., Ma, T., and Chen, S. (2021). ``Asphalt pavement maintenance plans intelligent decision model based on reinforcement learning algorithm.''\ Construction and Building Materials , 299

  8. [8]

    Leppinen, J., Punkka, A., Ekholm, T., and Salo, A. (2025). ``An optimization model for determining cost-efficient maintenance policies for multi-component systems with economic and structural dependencies.''\ Omega (United Kingdom) , 130

Show all 28 references
  1. [9]

    Liu, C., Geng, N., Aggarwal, V., Lan, T., Yang, Y., and Xu, M. (2021). ``Cmix: Deep multi-agent reinforcement learning with peak and average constraints.''\ Machine Learning and Knowledge Discovery in Databases. Research Track: European Conference, ECML PKDD 2021, Bilbao, Spai...

  2. [10]

    and Madanat, S

    Medury, A. and Madanat, S. (2014). ``Simultaneous network optimization approach for pavement management systems.''\ Journal of Infrastructure Systems , 20

  3. [11]

    Mnih, V. (2013). ``Playing atari with deep reinforcement learning.''\ arXiv preprint arXiv:1312.5602

  4. [12]

    U., Aggarwal, V., and Ukkusuri, S

    Mondal, W. U., Aggarwal, V., and Ukkusuri, S. V. (2024). ``Mean-field approximation of cooperative constrained multi-agent reinforcement learning (cmarl).''\ Journal of Machine Learning Research , 25(260), 1--33

  5. [13]

    Peng, B., Rashid, T., Schroeder de Witt, C., Kamienny, P.-A., Torr, P., B \"o hmer, W., and Whiteson, S. (2021). ``Facmac: Factored multi-agent centralised policy gradients.''\ Advances in Neural Information Processing Systems , 34, 12208--12221

  6. [14]

    and Hegazy, T

    Rashedi, R. and Hegazy, T. (2016). ``Holistic analysis of infrastructure deterioration and rehabilitation using system dynamics.''\ Journal of Infrastructure Systems , 22

  7. [15]

    S., Farquhar, G., Foerster, J., and Whiteson, S

    Rashid, T., Samvelyan, M., De Witt, C. S., Farquhar, G., Foerster, J., and Whiteson, S. (2020). ``Monotonic value function factorisation for deep multi-agent reinforcement learning.''\ Journal of Machine Learning Research , 21(178), 1--51

  8. [16]

    Rocchetta, R., Bellani, L., Compare, M., Zio, E., and Patelli, E. (2019). ``A reinforcement learning framework for optimal operation and maintenance of power grids.''\ Applied Energy , 241, 291--301

  9. [17]

    E., Power, G

    Sasai, K., Chouinard, L. E., Power, G. J., Conciatori, D., and Zufferey, N. (2024). ``Decision-making for road infrastructures in a network based on a policy gradient method.''\ Infrastructure Asset Management , 1--11

  10. [18]

    J., Hostallero, D

    Son, K., Kim, D., Kang, W. J., Hostallero, D. E., and Yi, Y. (2019). ``Qtran: Learning to factorize with transformation for cooperative multi-agent reinforcement learning.''\ International conference on machine learning , PMLR, 5887--5896

  11. [19]

    M., Zambaldi, V., Jaderberg, M., Lanctot, M., Sonnerat, N., Leibo, J

    Sunehag, P., Lever, G., Gruslys, A., Czarnecki, W. M., Zambaldi, V., Jaderberg, M., Lanctot, M., Sonnerat, N., Leibo, J. Z., Tuyls, K., et al.\@ (2017). ``Value-decomposition networks for cooperative multi-agent learning.''\ arXiv preprint arXiv:1706.05296

  12. [20]

    Sutton, R. S. and Barto, A. G. (2018). Reinforcement learning: An introduction . MIT press

  13. [21]

    Xu, J., Liu, B., Zhao, X., and Wang, X. L. (2024). ``Online reinforcement learning for condition-based group maintenance using factored markov decision processes.''\ European Journal of Operational Research , 315, 176--190

  14. [22]

    S., Cawley, L., Reza, I., and Ksaibati, K

    Yamany, M. S., Cawley, L., Reza, I., and Ksaibati, K. (2024). ``Network-level pavement maintenance and rehabilitation planning using genetic algorithm.''\ Innovative Infrastructure Solutions , 9

  15. [23]

    Yang, D. Y. (2022). ``Adaptive risk-based life-cycle management for large-scale structures using deep reinforcement learning and surrogate modeling.''\ Journal of Engineering Mechanics , 148

  16. [24]

    Yang, Y., Hao, J., Liao, B., Shao, K., Chen, G., Liu, W., and Tang, H. (2020). ``Qatten: A general framework for cooperative multiagent reinforcement learning.''\ arXiv preprint arXiv:2002.03939

  17. [25]

    and Si, W

    Zhang, N. and Si, W. (2020). ``Deep reinforcement learning for condition-based maintenance planning of multi-component systems under dependent competing risks.''\ Reliability Engineering and System Safety , 203

  18. [26]

    T., Wang, Z., and Zhang, S

    Zhang, Y., Zhang, D., Zhang, X., Qiu, L., Chan, F. T., Wang, Z., and Zhang, S. (2023). ``Guided probabilistic reinforcement learning for sampling-efficient maintenance scheduling of multi-component system.''\ Applied Mathematical Modelling , 119, 677--697

  19. [27]

    G., Stoffels, S., and McNeil, S

    Zhou, W., Miller-Hooks, E., Papakonstantinou, K. G., Stoffels, S., and McNeil, S. (2022a). ``A reinforcement learning method for multiasset roadway improvement scheduling considering traffic impacts.''\ Journal of Infrastructure Systems , 28

  20. [28]

    Zhou, Y., Li, B., and Lin, T. R. (2022b). ``Maintenance optimisation of multicomponent systems using hierarchical coordinated reinforcement learning.''\ Reliability Engineering and System Safety , 217

Pith tools

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