Toggle navigation
Home
aima.core.search.framework.Node to aima.core.search.framework.Node<A, S>
No. of Instances - 123
No. of Commits - 1
No. of Projects - {'aima-java'}
Hierarchy/Composition: Composition
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
SearchUtils.isGoalState(p,current)
to
p.testSolution(current)
CUTOFF_NODE
to
isCutoffNode(node)
SearchUtils.isGoalState(p,node)
to
p.testSolution(node)
SearchUtils.isGoalState(problem,successor)
to
problem.testSolution(successor)
SearchUtils.isGoalState(problem,node)
to
problem.testSolution(node)
hf.apply(n.getState())
to
h.applyAsDouble(n)
SearchUtils.isGoalState(p,current)
to
p.testSolution(current)
evalFunc
to
evalFn.applyAsDouble(successors.get(s))
evalFunc.apply(successors.get(s))
to
evalFn
SearchUtils.isGoalState(problem,nodeToExpand)
to
problem.testSolution(nodeToExpand)
CUTOFF_NODE
to
isCutoffNode(node)
hf.apply(n.getState())
to
h.applyAsDouble(n)
SearchUtils.isGoalState(problem,root)
to
problem.testSolution(root)
Cascading Type Change (Different)
PriorityQueue<Node>
to
PriorityQueue<Node<S,A>>
SearchResult
to
SearchResult<>
Cascading Type Change (Similar)
Node
to
Node<>
Node
to
Node<>
Node
to
Node<>
Node
to
Node<>