Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IDistribution.cs
1using System;
2using System.Text;
3
5{
9 public interface IDistribution : ISimulationNode
10 {
14 string Id
15 {
16 get;
17 }
18
26 int CheckTrigger(double t1, double t2, int NrCycles);
27
32 void ExportPdfOnceOnly(StringBuilder Output);
33 }
34}
Basic interface for simulator nodes. Implementing this interface allows classes with default contruct...
int CheckTrigger(double t1, double t2, int NrCycles)
Check if distribution has a sample within the time period.
void ExportPdfOnceOnly(StringBuilder Output)
Exports the PDF function, if not already exported.