Uses of Class
cbr.framework.Case

Packages that use Case
cbr.framework   
 

Uses of Case in cbr.framework
 

Methods in cbr.framework that return Case
static Case Reasoner.getMostSimilarCase(Case targetCase, CaseBase caseBase)
          Retrieves the case from the case base that most resembles the target case.
 

Methods in cbr.framework that return types with arguments of type Case
 List<Case> CaseBase.getAllCases()
          Provides a reference to the case-base.
static List<Case> Reasoner.getCasesOverSimilarityThreshold(double threshold, Case targetCase, CaseBase caseBase)
          Retrieves the cases from the case base that are over (or equal to) a specified similarity threshold, when compared to the targetCase.
static List<Case> Reasoner.getNMostSimilarCases(int n, Case targetCase, CaseBase caseBase)
          Given a novel scenario represented as a case find the N most similar cases in the caseBase provided.
 

Methods in cbr.framework with parameters of type Case
 int Case.compareTo(Case other)
          Override the compareTo() method so that Cases can be sorted according to descending similarity.
static List<Case> Reasoner.getCasesOverSimilarityThreshold(double threshold, Case targetCase, CaseBase caseBase)
          Retrieves the cases from the case base that are over (or equal to) a specified similarity threshold, when compared to the targetCase.
static Case Reasoner.getMostSimilarCase(Case targetCase, CaseBase caseBase)
          Retrieves the case from the case base that most resembles the target case.
static List<Case> Reasoner.getNMostSimilarCases(int n, Case targetCase, CaseBase caseBase)
          Given a novel scenario represented as a case find the N most similar cases in the caseBase provided.
 void CaseBase.retain(Case targetCase, String fileName)
          Retain the target case by adding its features and solution to the flat file used to represent the case-base.
 void CaseBase.retainWithReplacement(Case existingCase, String fileName)
          Retains an existing case in the case base to reflect changes made to the outcome of the case.