Skip to content

Commit

Permalink
IDAStar iterator Javadoc improved. Close #97 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablo Rodríguez Mier committed Nov 8, 2014
1 parent 7f3676e commit cd346c2
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ private class StackFrameNode {
}
}

/**
* IDA iterator. It expands the next state to be explored. Backtracking
* is automatically performed so if the state reaches a dead-end the next
* call to {@code iterator.next()} returns the next state after performing
* backtracking.
*/
public class Iterator implements java.util.Iterator<N> {
private Stack<StackFrameNode> stack = new Stack<StackFrameNode>();
private C fLimit;
Expand Down

0 comments on commit cd346c2

Please sign in to comment.