Beispiel #1
0
 public static bool IsSet(this SimSharedStateApply sharedStateApply) =>
 (sharedStateApply & SimSharedStateApply.Set) != 0;
Beispiel #2
0
 public void ApplyState(
     SimSharedStateApply applyType,
     Arr <(SimParameter Parameter, double Minimum, double Maximum, Option <IDistribution> Distribution)> parameterSharedStates,
Beispiel #3
0
 public static bool IsSingle(this SimSharedStateApply sharedStateApply) =>
 (sharedStateApply & SimSharedStateApply.Single) != 0;
Beispiel #4
0
 public static bool IncludesObservations(this SimSharedStateApply sharedStateApply) =>
 (sharedStateApply & SimSharedStateApply.Observations) != 0;
Beispiel #5
0
 public static bool IncludesOutputs(this SimSharedStateApply sharedStateApply) =>
 (sharedStateApply & SimSharedStateApply.Outputs) != 0;
Beispiel #6
0
 public static bool IncludesParameters(this SimSharedStateApply sharedStateApply) =>
 (sharedStateApply & SimSharedStateApply.Parameters) != 0;
Beispiel #7
0
 public void ApplyState(
     SimSharedStateApply applyType,
     Arr <(SimParameter, double, double, Option <IDistribution>)> parameterSharedStates,