Class DecisionTree
Assembly: Xareus.Scenarios.dll
Syntax
[Serializable]
public class DecisionTree : ComplexSequence
Constructors
DecisionTree()
Declaration
DecisionTree(string, string)
Declaration
public DecisionTree(string id, string label = "")
Parameters
Type |
Name |
Description |
string |
id |
The Id must be unique
|
string |
label |
The label (optional)
|
Properties
FinalSequences
List of the final sub-sequences of the decision tree
Declaration
protected override List<ASequence> FinalSequences { get; }
Property Value
Overrides
InitialSequences
Dictionary of the initial sub-sequences of the decision tree and their init functions
Declaration
protected override Dictionary<ASequence, Function> InitialSequences { get; }
Property Value
Overrides
SequenceTypeName
Declaration
public override string SequenceTypeName { get; }
Property Value
Overrides
TransitionTypeName
Declaration
public override string TransitionTypeName { get; }
Property Value
Overrides
Methods
CreateSubSequence(string, string)
Creates a new sub sequence with the given Id and label
Declaration
public override ASequence CreateSubSequence(string id, string label = "")
Parameters
Returns
Overrides
CreateTransition(string, string)
Creates a new transition with the given Id and label
Declaration
public override Transition CreateTransition(string id, string label = "")
Parameters
Returns
Overrides
GetToken()
Get the token of the given complex sequence.
The token is null if at least one final sequence of the net has no token.
The token is the result of the FinalTokenMerge function on all final sequences' tokens
Declaration
public override IContext GetToken()
Returns
Overrides
HasReachedFinalState()
Declaration
public override bool HasReachedFinalState()
Returns
Overrides
IsFinal(string)
Checks if a sequence with the given Id is final to the current decision tree
Declaration
public override bool IsFinal(string finalId)
Parameters
Type |
Name |
Description |
string |
finalId |
|
Returns
Overrides
IsInitial(string)
Checks if a sequence with the given Id is initial to the current decision tree
Declaration
public override bool IsInitial(string initialId)
Parameters
Type |
Name |
Description |
string |
initialId |
|
Returns
Overrides
RemoveToken()
Declaration
public override void RemoveToken()
Overrides
SetFinal(string)
sets the sequence with the given Id as final to the current decision tree
Declaration
public override void SetFinal(string finalId)
Parameters
Type |
Name |
Description |
string |
finalId |
|
Overrides
SetInitial(string)
sets the sequence with the given Id as initial to the current decision tree
Declaration
public override void SetInitial(string initialId)
Parameters
Type |
Name |
Description |
string |
initialId |
|
Overrides
UnsetFinal(string)
unsets the sequence with the given Id as final to the current decision tree
Declaration
public override void UnsetFinal(string finalId)
Parameters
Type |
Name |
Description |
string |
finalId |
|
Overrides
UnsetInitial(string)
unsets the sequence with the given Id as initial to the current decision tree
Declaration
public override void UnsetInitial(string initialId)
Parameters
Type |
Name |
Description |
string |
initialId |
|
Overrides
Extension Methods