public bool isEqualInCandidates(ClockCell cell)
 {
     return(this.candidates.SequenceEqual(cell.candidates));
 }
        public object Clone()
        {
            var clone = new ClockCell(this.index, this.value, this.candidates, this.isFixed);

            return(clone);
        }