예제 #1
0
 public static bool IsSet(this SimSharedStateApply sharedStateApply) =>
 (sharedStateApply & SimSharedStateApply.Set) != 0;
예제 #2
0
파일: ViewModel.cs 프로젝트: thehoglet/RVis
 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
파일: ViewModel.cs 프로젝트: thehoglet/RVis
 public void ApplyState(
     SimSharedStateApply applyType,
     Arr <(SimParameter, double, double, Option <IDistribution>)> parameterSharedStates,