2using System.Collections.Generic;
4using System.Threading.Tasks;
45 List<string> Order =
new List<string>();
53 return Order.ToArray();
62 Output.WriteLine(
"Activities");
63 Output.WriteLine(
"=============");
66 this.
Model.ExportActivityStartStatistics(Output);
68 return base.ExportMarkdown(Output);
Root node of a simulation model
Container for activities.
string[] ActivityOrder()
Gets the declared order of activities in the model.
override Task ExportMarkdown(StreamWriter Output)
Exports Markdown
override string LocalName
Local name of XML element defining contents of class.
override ISimulationNode Create(ISimulationNode Parent, Model Model)
Creates a new instance of the node.
Activities(ISimulationNode Parent, Model Model)
Container for activities.
Represents an activity that can be executed as the result of triggered events.
Abstract base class for simulation nodes with children
ISimulationNode[] Children
Child nodes.
ISimulationNode Parent
Parent node in the simulation model.
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...