예제 #1
0
 public PathFinder(INodeSet nodeSet)
 {
     _NodeSet    = nodeSet;
     _ClosedList = new HashSet <Node>();
     _OpenList   = new HashSet <Node>();
     _NodePaths  = new Dictionary <Node, NodePath>();
 }
예제 #2
0
 protected Cluster(INodeSet nodes, ClusterConfiguration configuration)
 {
     _nodes = nodes;
     _configuration = configuration;
 }