'EndCondiiton' and 'Communication' added to TransitionStep (transition sequence). TODO: EndConditions functionality, version 1.5.44
This commit is contained in:
@@ -390,16 +390,16 @@ namespace TBF.BenchControl
|
||||
out BenchPath pben,
|
||||
out OutputPath pout,
|
||||
out MetersPath pmtrs,
|
||||
out Entities.TransitionSequence transitionStart,
|
||||
out Entities.TransitionSequence transitionEnd,
|
||||
out Entities.TransitionSequence transitionBefore,
|
||||
out Entities.TransitionSequence transitionAfter,
|
||||
out string errorMsg)
|
||||
{
|
||||
pfeed = null;
|
||||
pben = null;
|
||||
pout = null;
|
||||
pmtrs = null;
|
||||
transitionStart = null;
|
||||
transitionEnd = null;
|
||||
transitionBefore = null;
|
||||
transitionAfter = null;
|
||||
|
||||
foreach (var path in feedingPaths)
|
||||
{
|
||||
@@ -433,10 +433,10 @@ namespace TBF.BenchControl
|
||||
}
|
||||
}
|
||||
|
||||
foreach (var transition in TransitionSequences)
|
||||
foreach (var tr in TransitionSequences)
|
||||
{
|
||||
if (transition.Name == test.TransitionStart) transitionStart = transition;
|
||||
if (transition.Name == test.TransitionEnd) transitionEnd = transition;
|
||||
if (tr.Name == test.RelTransBefore) transitionBefore = tr;
|
||||
if (tr.Name == test.TransitionAfter) transitionAfter = tr;
|
||||
}
|
||||
|
||||
if ((pfeed == null) || (pben == null) || (pout == null) || (pmtrs == null))
|
||||
|
||||
Reference in New Issue
Block a user