Node State

    Our FREE site is mostly funded by the Amazon ads ⇓below⇓.

    Support us by clicking ⇑above⇑ next time you plan to buy a product on Amazon.

    namespace AStar
    {
        /// <summary>
        /// The states the nodes can have.
        /// </summary>
        public enum NodeState
        {
            /// <summary>
            /// TODO.
            /// </summary>
            UNCONSIDERED = 0,
    
            /// <summary>
            /// TODO.
            /// </summary>
            OPEN = 1,
    
            /// <summary>
            /// TODO.
            /// </summary>
            CLOSED = 2,
        }
    }