Class UncertaintyExplorationOpenSelection<T,A,V extends java.lang.Comparable<V>>
- java.lang.Object
-
- ai.libs.jaicore.search.algorithms.standard.uncertainty.explorationexploitationsearch.UncertaintyExplorationOpenSelection<T,A,V>
-
- All Implemented Interfaces:
java.lang.Iterable<BackPointerPath<T,A,V>>,java.util.Collection<BackPointerPath<T,A,V>>,java.util.Queue<BackPointerPath<T,A,V>>
public class UncertaintyExplorationOpenSelection<T,A,V extends java.lang.Comparable<V>> extends java.lang.Object implements java.util.Queue<BackPointerPath<T,A,V>>
-
-
Constructor Summary
Constructors Constructor Description UncertaintyExplorationOpenSelection(long timeout, int phaseInterval, double exploitationScoreThreshold, double explorationUncertaintyThreshold, IPhaseLengthAdjuster phaseLengthAdjuster, ISolutionDistanceMetric<T> solutionDistanceMetric, IExplorationCandidateSelector<T,A,V> candidateSelector)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(BackPointerPath<T,A,V> node)booleanaddAll(java.util.Collection<? extends BackPointerPath<T,A,V>> arg0)voidclear()booleancontains(java.lang.Object arg0)booleancontainsAll(java.util.Collection<?> arg0)BackPointerPath<T,A,V>element()booleanisEmpty()java.util.Iterator<BackPointerPath<T,A,V>>iterator()booleanoffer(BackPointerPath<T,A,V> e)BackPointerPath<T,A,V>peek()BackPointerPath<T,A,V>poll()BackPointerPath<T,A,V>remove()booleanremove(java.lang.Object node)booleanremoveAll(java.util.Collection<?> arg0)booleanretainAll(java.util.Collection<?> arg0)intsize()java.lang.Object[]toArray()<X> X[]toArray(X[] arg0)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Constructor Detail
-
UncertaintyExplorationOpenSelection
public UncertaintyExplorationOpenSelection(long timeout, int phaseInterval, double exploitationScoreThreshold, double explorationUncertaintyThreshold, IPhaseLengthAdjuster phaseLengthAdjuster, ISolutionDistanceMetric<T> solutionDistanceMetric, IExplorationCandidateSelector<T,A,V> candidateSelector)
-
-
Method Detail
-
peek
public BackPointerPath<T,A,V> peek()
- Specified by:
peekin interfacejava.util.Queue<T>
-
add
public boolean add(BackPointerPath<T,A,V> node)
-
remove
public boolean remove(java.lang.Object node)
- Specified by:
removein interfacejava.util.Collection<T>
-
addAll
public boolean addAll(java.util.Collection<? extends BackPointerPath<T,A,V>> arg0)
- Specified by:
addAllin interfacejava.util.Collection<T>
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection<T>
-
contains
public boolean contains(java.lang.Object arg0)
- Specified by:
containsin interfacejava.util.Collection<T>
-
containsAll
public boolean containsAll(java.util.Collection<?> arg0)
- Specified by:
containsAllin interfacejava.util.Collection<T>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfacejava.util.Collection<T>
-
iterator
public java.util.Iterator<BackPointerPath<T,A,V>> iterator()
-
removeAll
public boolean removeAll(java.util.Collection<?> arg0)
- Specified by:
removeAllin interfacejava.util.Collection<T>
-
retainAll
public boolean retainAll(java.util.Collection<?> arg0)
- Specified by:
retainAllin interfacejava.util.Collection<T>
-
size
public int size()
- Specified by:
sizein interfacejava.util.Collection<T>
-
toArray
public java.lang.Object[] toArray()
- Specified by:
toArrayin interfacejava.util.Collection<T>
-
toArray
public <X> X[] toArray(X[] arg0)
- Specified by:
toArrayin interfacejava.util.Collection<T>
-
element
public BackPointerPath<T,A,V> element()
- Specified by:
elementin interfacejava.util.Queue<T>
-
offer
public boolean offer(BackPointerPath<T,A,V> e)
- Specified by:
offerin interfacejava.util.Queue<T>
-
poll
public BackPointerPath<T,A,V> poll()
- Specified by:
pollin interfacejava.util.Queue<T>
-
remove
public BackPointerPath<T,A,V> remove()
- Specified by:
removein interfacejava.util.Queue<T>
-
-