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