Uses of Class
org.encog.ml.graph.BasicNode

Packages that use BasicNode
org.encog.ml.graph   
org.encog.ml.graph.search   
org.encog.ml.schedule   
 

Uses of BasicNode in org.encog.ml.graph
 

Subclasses of BasicNode in org.encog.ml.graph
 class EuclideanNode
           
 

Methods in org.encog.ml.graph that return BasicNode
 BasicNode BasicGraph.connect(BasicNode baseNode, BasicNode newNode, double cost)
           
 BasicNode BasicPath.getDestinationNode()
           
 BasicNode BasicEdge.getFrom()
           
 BasicNode BasicGraph.getRoot()
           
 BasicNode BasicEdge.getTo()
           
 

Methods in org.encog.ml.graph that return types with arguments of type BasicNode
 List<BasicNode> BasicPath.getNodes()
           
 List<BasicNode> BasicGraph.getNodes()
           
 

Methods in org.encog.ml.graph with parameters of type BasicNode
 BasicNode BasicGraph.connect(BasicNode baseNode, BasicNode newNode, double cost)
           
 void BasicNode.connect(BasicNode newNode, double cost)
           
 double BasicNode.getCost(BasicNode node)
           
 

Constructors in org.encog.ml.graph with parameters of type BasicNode
BasicEdge(BasicNode from, BasicNode to, double cost)
           
BasicGraph(BasicNode rootNode)
           
BasicPath(BasicNode startingPoint)
           
BasicPath(BasicPath path, BasicNode newNode)
           
 

Uses of BasicNode in org.encog.ml.graph.search
 

Methods in org.encog.ml.graph.search that return BasicNode
 BasicNode SimpleDestinationGoal.getGoalDestination()
           
 

Methods in org.encog.ml.graph.search with parameters of type BasicNode
 boolean FrontierHolder.containsDestination(BasicNode node)
           
 double EuclideanCostEstimator.estimateCost(BasicNode startingNode, SearchGoal goal)
           
 double CostEstimator.estimateCost(BasicNode startingNode, SearchGoal goal)
           
 

Constructors in org.encog.ml.graph.search with parameters of type BasicNode
AbstractGraphSearch(BasicGraph theGraph, BasicNode startingPoint, SearchGoal theGoal)
           
AStarSearch(BasicGraph theGraph, BasicNode startingPoint, SearchGoal theGoal, CostEstimator theEstimator)
           
BreadthFirstSearch(BasicGraph theGraph, BasicNode startingPoint, SearchGoal theGoal)
           
DepthFirstSearch(BasicGraph theGraph, BasicNode startingPoint, SearchGoal theGoal)
           
SimpleDestinationGoal(BasicNode goalDestination)
           
 

Uses of BasicNode in org.encog.ml.schedule
 

Subclasses of BasicNode in org.encog.ml.schedule
 class ActionNode
           
 



Copyright © 2014. All Rights Reserved.