Line | |
---|
1 | namespace AStar |
---|
2 | { |
---|
3 | /// <summary> |
---|
4 | /// Represents the search state of a Node |
---|
5 | /// </summary> |
---|
6 | public enum NodeState |
---|
7 | { |
---|
8 | /// <summary> |
---|
9 | /// The node has not yet been considered in any possible paths |
---|
10 | /// </summary> |
---|
11 | Untested, |
---|
12 | /// <summary> |
---|
13 | /// The node has been identified as a possible step in a path |
---|
14 | /// </summary> |
---|
15 | Open, |
---|
16 | /// <summary> |
---|
17 | /// The node has already been included in a path and will not be considered again |
---|
18 | /// </summary> |
---|
19 | Closed |
---|
20 | } |
---|
21 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.