Uses of Class
de.dfki.mycbr.core.retrieval.RetrievalEngine

Packages that use RetrievalEngine
de.dfki.mycbr.core.retrieval All retrieval algorithms extend the abstract class RetrievalEngine and can be used within Retrieval objects to obtain the retrieval results (possibly ordered pairs of case and corresponding similarity). 
 

Uses of RetrievalEngine in de.dfki.mycbr.core.retrieval
 

Subclasses of RetrievalEngine in de.dfki.mycbr.core.retrieval
 class SequentialRetrieval
          Sequential retrieval computes the similarity of the query and all cases in the case base to get the most similar cases.
 

Methods in de.dfki.mycbr.core.retrieval that return RetrievalEngine
 RetrievalEngine Retrieval.getRetrievalEngine()
           
 

Methods in de.dfki.mycbr.core.retrieval with parameters of type RetrievalEngine
 void Retrieval.setRetrievalEngine(RetrievalEngine re)
           
 

Constructors in de.dfki.mycbr.core.retrieval with parameters of type RetrievalEngine
Retrieval(Concept c, ICaseBase cb, RetrievalEngine re)