diff --git a/hipster-core/src/main/java/es/usc/citius/hipster/algorithm/IDAStar.java b/hipster-core/src/main/java/es/usc/citius/hipster/algorithm/IDAStar.java index 8beb8de..402e520 100644 --- a/hipster-core/src/main/java/es/usc/citius/hipster/algorithm/IDAStar.java +++ b/hipster-core/src/main/java/es/usc/citius/hipster/algorithm/IDAStar.java @@ -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 { private Stack stack = new Stack(); private C fLimit;