Ejemplo n.º 1
0
        private int Compare(IntervalPositionDistance ipd1, IntervalPositionDistance ipd2)
        {
            int rval = 0;

            if (ipd1.Distance > ipd2.Distance)
            {
                rval = 1;
            }
            else if (ipd1.Distance == ipd2.Distance)
            {
                rval = 0;
            }
            else if (ipd1.Distance < ipd2.Distance)
            {
                rval = -1;
            }
            return(rval);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Returns a list of intLists whose first intList is inversion0.
        /// If inversion0 is null or inversion0.Count == 0, the returned list of intlists is empty, otherwise
        /// If inversion0.Count == 1, the contained intList is simply inversion0, otherwise
        /// The returned list of intLists has a Count of (n-1)*2, where n is the Count of inversion0.
        /// </summary>
        /// <param name="inversion0"></param>
        /// <returns></returns>
        public List <List <byte> > GetLinearInversions(string inversion0String)
        {
            List <byte>         inversion0 = M.StringToByteList(inversion0String, ',');
            List <List <byte> > inversions = new List <List <byte> >();

            if (inversion0 != null && inversion0.Count != 0)
            {
                if (inversion0.Count == 1)
                {
                    inversions.Add(inversion0);
                }
                else
                {
                    List <IntervalPositionDistance> ipdList = new List <IntervalPositionDistance>();
                    for (int i = 0; i < inversion0.Count; i++)
                    {
                        IntervalPositionDistance ipd = new IntervalPositionDistance(inversion0[i], i);
                        ipdList.Add(ipd);
                    }
                    // ipdList is a now representaion of the field, now calculate the interval hierarchy per inversion
                    for (float pos = 0.25F; pos < (float)inversion0.Count - 1; pos += 0.5F)
                    {
                        List <IntervalPositionDistance> newIpdList = new List <IntervalPositionDistance>(ipdList);
                        foreach (IntervalPositionDistance ipd in newIpdList)
                        {
                            ipd.Distance = ipd.Position - pos;
                            ipd.Distance = ipd.Distance > 0 ? ipd.Distance : ipd.Distance * -1;
                        }
                        newIpdList.Sort(Compare);
                        List <byte> intervalList = new List <byte>();
                        foreach (IntervalPositionDistance ipd in newIpdList)
                        {
                            intervalList.Add(ipd.Value);
                        }
                        inversions.Add(intervalList);
                    }
                    // the intervalList for a particular inversionIndex is now inversions[inversionIndex]
                }
            }
            return(inversions);
        }
Ejemplo n.º 3
0
 private int Compare(IntervalPositionDistance ipd1, IntervalPositionDistance ipd2)
 {
     int rval = 0;
     if(ipd1.Distance > ipd2.Distance)
         rval = 1;
     else if(ipd1.Distance == ipd2.Distance)
         rval = 0;
     else if(ipd1.Distance < ipd2.Distance)
         rval = -1;
     return rval;
 }
Ejemplo n.º 4
0
        /// <summary>
        /// Returns a list of intLists whose first intList is inversion0.
        /// If inversion0 is null or inversion0.Count == 0, the returned list of intlists is empty, otherwise
        /// If inversion0.Count == 1, the contained intList is simply inversion0, otherwise
        /// The returned list of intLists has a Count of (n-1)*2, where n is the Count of inversion0.
        /// </summary>
        /// <param name="inversion0"></param>
        /// <returns></returns>
        public List<List<byte>> GetLinearInversions(string inversion0String)
        {
            List<byte> inversion0 = M.StringToByteList(inversion0String, ',');
            List<List<byte>> inversions = new List<List<byte>>();
            if(inversion0 != null && inversion0.Count != 0)
            {
                if(inversion0.Count == 1)
                    inversions.Add(inversion0);
                else
                {

                    List<IntervalPositionDistance> ipdList = new List<IntervalPositionDistance>();
                    for(int i = 0; i < inversion0.Count; i++)
                    {
                        IntervalPositionDistance ipd = new IntervalPositionDistance(inversion0[i], i);
                        ipdList.Add(ipd);
                    }
                    // ipdList is a now representaion of the field, now calculate the interval hierarchy per inversion
                    for(float pos = 0.25F; pos < (float)inversion0.Count - 1; pos += 0.5F)
                    {
                        List<IntervalPositionDistance> newIpdList = new List<IntervalPositionDistance>(ipdList);
                        foreach(IntervalPositionDistance ipd in newIpdList)
                        {
                            ipd.Distance = ipd.Position - pos;
                            ipd.Distance = ipd.Distance > 0 ? ipd.Distance : ipd.Distance * -1;
                        }
                        newIpdList.Sort(Compare);
                        List<byte> intervalList = new List<byte>();
                        foreach(IntervalPositionDistance ipd in newIpdList)
                            intervalList.Add(ipd.Value);
                        inversions.Add(intervalList);
                    }
                    // the intervalList for a particular inversionIndex is now inversions[inversionIndex]
                }
            }
            return inversions;
        }