fix shuttle
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 107 KiB |
+11
-10
@@ -463,8 +463,6 @@ episode: CaTracesClearance
|
|||||||
|
|
||||||
This happens in the seconds loop, once per second.
|
This happens in the seconds loop, once per second.
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
##### RP->RRPSlow: Episode
|
##### RP->RRPSlow: Episode
|
||||||
|
|
||||||
The "Hard Bottleneck" State. Recruitment is throttled by a lack of signal, a lack of supply, or a lack of space. If even one of these "Near-Stop" conditions is met, the rate cannot exceed "Slow," regardless of the other two conditions.
|
The "Hard Bottleneck" State. Recruitment is throttled by a lack of signal, a lack of supply, or a lack of space. If even one of these "Near-Stop" conditions is met, the rate cannot exceed "Slow," regardless of the other two conditions.
|
||||||
@@ -476,7 +474,7 @@ episode: RP->RRPSlow
|
|||||||
contained_by: BEH-PRE
|
contained_by: BEH-PRE
|
||||||
|
|
||||||
in_context: RPShuttle
|
in_context: RPShuttle
|
||||||
rf: ( active: 24x ) # Slow
|
rf: ( active: 48x ) # Slow
|
||||||
|
|
||||||
hypothesis: (CaTrace nearEmpty) OR (RP nearEmpty) OR (RRP nearFull)
|
hypothesis: (CaTrace nearEmpty) OR (RP nearEmpty) OR (RRP nearFull)
|
||||||
action: [RP decrease, RRP increase]
|
action: [RP decrease, RRP increase]
|
||||||
@@ -496,9 +494,10 @@ episode: RP->RRPModerate
|
|||||||
in_context: RPShuttle
|
in_context: RPShuttle
|
||||||
rf: ( active: 24x ) # Slow
|
rf: ( active: 24x ) # Slow
|
||||||
|
|
||||||
hypothesis: ((RRP medium) OR (RRP nearEmpty)) AND
|
hypothesis: ((CaTrace medium) AND (RP medium) AND (RRP medium)) OR
|
||||||
((CaTrace medium) AND (RP medium)) OR
|
((CaTrace nearFull) AND (RP medium) AND (RRP medium)) OR # signal boost
|
||||||
((CaTrace nearEmpty) AND (RP nearFull) AND (RRP nearEmpty))
|
((CaTrace medium) AND (RP nearFull) AND (RRP medium)) OR # supply boost
|
||||||
|
((CaTrace medium) AND (RP medium) AND (RRP nearEmpty)) # vacancy boost
|
||||||
action: [RP decrease, RRP increase]
|
action: [RP decrease, RRP increase]
|
||||||
trace: None
|
trace: None
|
||||||
```
|
```
|
||||||
@@ -514,9 +513,11 @@ episode: RP->RRPFast
|
|||||||
contained_by: BEH-PRE
|
contained_by: BEH-PRE
|
||||||
|
|
||||||
in_context: RPShuttle
|
in_context: RPShuttle
|
||||||
rf: ( active: 24x ) # Fast
|
rf: ( active: 12x ) # Fast
|
||||||
|
|
||||||
hypothesis: (CaTrace nearFull) AND ((RP medium) OR (RP nearFull)) AND (RRP medium)
|
hypothesis: ((CaTrace nearFull) AND (RP nearFull) AND (RRP medium)) OR # signal + supply
|
||||||
|
((CaTrace nearFull) AND (RP medium) AND (RRP nearEmpty)) OR # signal + vacancy
|
||||||
|
((CaTrace medium) AND (RP nearFull) AND (RRP nearEmpty)) # supply + vacancy
|
||||||
action: [RP decrease, RRP increase]
|
action: [RP decrease, RRP increase]
|
||||||
trace: None
|
trace: None
|
||||||
```
|
```
|
||||||
@@ -532,9 +533,9 @@ episode: RP->RRPMaximal
|
|||||||
contained_by: BEH-PRE
|
contained_by: BEH-PRE
|
||||||
|
|
||||||
in_context: RPShuttle
|
in_context: RPShuttle
|
||||||
rf: ( active: 24x ) # Maximal
|
rf: ( active: 6x ) # Maximal
|
||||||
|
|
||||||
hypothesis: (CaTrace nearFull) AND (RP nearFull) AND RRP nearEmpty
|
hypothesis: (CaTrace nearFull) AND (RP nearFull) AND RRP (nearEmpty)
|
||||||
action: [RP decrease, RRP increase]
|
action: [RP decrease, RRP increase]
|
||||||
trace: None
|
trace: None
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user