示例#1
0
        public int[] DepthAtSites(IEnumerable <ICluster> clusters)
        {
            var depthAtSites = new int[0];
            var veadgroups   = clusters.SelectMany(x => x.GetVeadGroups());

            return(VeadGroup.DepthAtSites(veadgroups));
        }
示例#2
0
        public void DepthAtSites(IEnumerable <ICluster> clusters, out int[] depths, out int[] nocalls)
        {
            var veadgroups = clusters.SelectMany(x => x.GetVeadGroups());

            VeadGroup.DepthAtSites(veadgroups, out depths, out nocalls);
        }