Ejemplo n.º 1
0
        /// <summary>
        /// Retrieves the label counts.
        /// </summary>
        /// <returns>The label counts is returned.</returns>
        public Dictionary <int, ulong> GetQueryLabelCounts()
        {
            if (m_rgLabelStats == null)
            {
                return(new Dictionary <int, ulong>());
            }

            return(m_rgLabelStats.GetCounts());;
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Returns the query label counts.
 /// </summary>
 /// <returns>The query label counts are returned.</returns>
 public Dictionary <int, ulong> GetQueryLabelCounts()
 {
     return(m_stat.GetCounts());
 }