예제 #1
0
        public List <Dot> GetNuclearDots()
        {
            List <Dot> result = new List <Dot>();

            foreach (Dot currentDot in Values)
            {
                if (currentDot.Value && ExtraData.DotIsNuclear(this, currentDot))
                {
                    result.Add(currentDot);
                }
            }
            return(result);
        }
예제 #2
0
파일: Dot.cs 프로젝트: SergStas/DnfComparer
 public bool IsNuclear(Function function)
 {
     return(ExtraData.DotIsNuclear(function, this));
 }