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