/// <summary> /// Aprior weight of n - th element /// </summary> /// <param name="n">Element number</param> /// <returns>The weight</returns> public double GetApriorWeight(int n) { int m; IStructuredSelection s = chooseSelection(n, out m); return(s.GetApriorWeight(m)); }
/// <summary> /// Aprior weight of n - th element /// </summary> /// <param name="n">Element number</param> /// <returns>The weight</returns> public double GetApriorWeight(int n) { return(selection.GetApriorWeight(n)); }
double IStructuredSelection.GetApriorWeight(int n) { return(selection.GetApriorWeight(n)); }