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