From bf4e43c1fd1a361029e7cb51daac378fa5ee3617 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期五, 20 三月 2026 18:44:13 +0800
Subject: [PATCH] #
---
src/main/java/com/zy/asrs/domain/path/StationPathProfileConfig.java | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/zy/asrs/domain/path/StationPathProfileConfig.java b/src/main/java/com/zy/asrs/domain/path/StationPathProfileConfig.java
index 0596a7e..4314abf 100644
--- a/src/main/java/com/zy/asrs/domain/path/StationPathProfileConfig.java
+++ b/src/main/java/com/zy/asrs/domain/path/StationPathProfileConfig.java
@@ -23,8 +23,10 @@
private Double s2BusyWeight = 2.0d;
private Double s2QueueWeight = 2.5d;
private Double s2WaitWeight = 1.5d;
+ private Double s2DeadlockWeight = 8.0d;
private Double s2RunBlockWeight = 10.0d;
private Double s2LoopLoadWeight = 12.0d;
+ private Double circleMaxLoadLimit = 80.0d;
private Double stationPathLenWeightPercent = 50.0d;
private Double stationPathCongWeightPercent = 50.0d;
@@ -52,8 +54,10 @@
if (source.s2BusyWeight != null) this.s2BusyWeight = source.s2BusyWeight;
if (source.s2QueueWeight != null) this.s2QueueWeight = source.s2QueueWeight;
if (source.s2WaitWeight != null) this.s2WaitWeight = source.s2WaitWeight;
+ if (source.s2DeadlockWeight != null) this.s2DeadlockWeight = source.s2DeadlockWeight;
if (source.s2RunBlockWeight != null) this.s2RunBlockWeight = source.s2RunBlockWeight;
if (source.s2LoopLoadWeight != null) this.s2LoopLoadWeight = source.s2LoopLoadWeight;
+ if (source.circleMaxLoadLimit != null) this.circleMaxLoadLimit = source.circleMaxLoadLimit;
if (source.stationPathLenWeightPercent != null) this.stationPathLenWeightPercent = source.stationPathLenWeightPercent;
if (source.stationPathCongWeightPercent != null) this.stationPathCongWeightPercent = source.stationPathCongWeightPercent;
if (source.stationPathPassOtherOutStationWeightPercent != null) this.stationPathPassOtherOutStationWeightPercent = source.stationPathPassOtherOutStationWeightPercent;
--
Gitblit v1.9.1