Explain deferred overflow launch memory
This commit is contained in:
parent
18629edc0e
commit
55438470c5
1 changed files with 15 additions and 1 deletions
|
|
@ -194,7 +194,21 @@ namespace HyperTwistTrainingSubsystemInternal
|
|||
|| bQueuedLaunch))
|
||||
{
|
||||
Result.ResolvedCaseCount = FMath::Max(1, Result.ResolvedCaseCount - 1);
|
||||
BudgetReasons.Add(TEXT("successful tightened-launch history is narrowing the next launch"));
|
||||
if (CoachMemorySnapshot.PreferredLaunchBudgetSourceLabel
|
||||
== TEXT("recommendation-history-deferred-tightened-launch"))
|
||||
{
|
||||
BudgetReasons.Add(
|
||||
DeckLane == EHyperTwistTrainingCoachGuidanceLane::FollowUp
|
||||
? TEXT("successful deferred tightened-launch history is keeping the continuation slice narrow enough to recover deferred coach work")
|
||||
: (bQueuedLaunch
|
||||
? TEXT("successful deferred tightened-launch history is keeping queued continuation work narrow enough to recover deferred coach work")
|
||||
: TEXT("successful deferred tightened-launch history is narrowing the next launch to continue deferred coach work"))
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
BudgetReasons.Add(TEXT("successful tightened-launch history is narrowing the next launch"));
|
||||
}
|
||||
}
|
||||
|
||||
Result.ResolvedCaseCount = FMath::Max(1, Result.ResolvedCaseCount);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue