Uses of Class
crn.Case

Packages that use Case
crn   
scheduler.modules   
 

Uses of Case in crn
 

Methods in crn that return Case
 Case CRN.FindTheMostSimilarCase(Case travelCase)
          Finds the most similiar case in the CRN.
 

Methods in crn with parameters of type Case
 void IE.AddCaseReference(Case travelCase)
          Adds a case reference to this IE.
 void IE.RemoveCaseReference(Case travelCase)
          Removes the given case form from the references list of this IE.
 boolean IE.ContainsCase(Case travelCase)
          Check if there is a given case on the list of references of this IE.
 void CRN.AddCase(Case newCase, float defaultWeightForNewIEs)
          Adds the given case to the CRN.
 void CRN.RemoveCase(Case travelCase)
          Removes the given case from the CRN.
 java.util.ArrayList CRN.FindSimilarCases(Case travelCase, float similarityTreshold)
          Finds all the similiar cases in the CRN.
 Case CRN.FindTheMostSimilarCase(Case travelCase)
          Finds the most similiar case in the CRN.
private  void CRN.CompareCases(Case myCase, Case otherCase)
          Compares the two given cases.
private  void CRN.AddIE(IE ie, float defaultWeight, Case travelCase)
          Adds the given IE to the CRN.
private  java.util.ArrayList CRN.GetActivatedCases(Case travelCase, float activationTreshold)
          Gets the list of activated cases by the given one.
 boolean Case.IsEqual(Case otherCase)
          Tests the equality of two cases.
 

Uses of Case in scheduler.modules
 

Methods in scheduler.modules that return Case
private  Case SchedulerCRNManager.GetCase(ConnectionsFinderTask travelSolution, boolean fAccepted)
          Converts the travel solution to the CRN case.