/// <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));
        }
Exemple #2
0
 /// <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));
 }
Exemple #3
0
 double IStructuredSelection.GetApriorWeight(int n)
 {
     return(selection.GetApriorWeight(n));
 }