public void SetMultiThreadPrevalence(Prevalence P) { lock (syncRoot) { MultiThreadParam1 = P; } }
public BlockStateExtrParams(List <bool> Inputs, List <bool> Outputs, Prevalence MIN, Prevalence CurrentPrevalence, AnalisysType Type, bool CheckPrevalence = true) { if (Inputs == null) { Inputs = new List <bool>(); } this.Inputs = Inputs; if (Outputs == null) { Outputs = new List <bool>(); } this.Outputs = Outputs; this.CheckPrevalence = CheckPrevalence; this.CurrentPrevalence = CurrentPrevalence; this.MIN = MIN; this.Type = Type; }
public Solution(Prevalence p, SPNetWay w) { P = p; Way = w; }