Class Overview
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 iterator.next()
returns the next state after performing
backtracking.
Summary
[Expand]
Inherited Methods |
From class
es.usc.citius.hipster.algorithm.DepthFirstSearch.Iterator
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
From interface
java.util.Iterator
abstract
boolean
|
hasNext()
|
abstract
E
|
next()
|
abstract
void
|
remove()
|
|
Fields
protected
C extends Comparable<C>
fLimit
protected
C extends Comparable<C>
minfLimit
protected
int
reinitialization
Protected Constructors
protected
IDAStar.Iterator
()
Public Methods
public
int
getReinitialization
()
public
void
setMinfLimit
(C minfLimit)
public
void
setReinitialization
(int reinitialization)
public
void
setfLimit
(C fLimit)
Protected Methods
protected
void
updateMinFLimit
(C currentFLimit)