Research Article
Two Effective Strategies to Support Cross-Organization Emergency Resource Allocation Optimization
Algorithm 6
Calculate the execution duration.
| Input: ΣCE = (P, T; F, α, β, W, M0), ConflictSet, Interval. | | Output: M_Interval = [Ml, MU] | (1) | /Step 1: initialization/ | (2) | Step 1: Ml ⟵ Tl, MU ⟵ TU; | (3) | /Step 2: to obtain the maximum execution time/ | (4) | Step 2: FOR ∀(ti, tj) ∈ ConflictSet DO | (5) | Ml ⟵ Ml + min{α(ti), α(tj)}; | (6) | MU ⟵ MU + min{β(ti), β(tj)}; | (7) | END DO | (8) | Step 3: Output M_Interval. |
|