OptaPlanner distribution 6.1.0.Final

org.optaplanner.examples.tsp.domain
Class TravelingSalesmanTour

java.lang.Object
  extended by org.optaplanner.examples.common.domain.AbstractPersistable
      extended by org.optaplanner.examples.tsp.domain.TravelingSalesmanTour
All Implemented Interfaces:
Serializable, Comparable<AbstractPersistable>, Solution<SimpleLongScore>

public class TravelingSalesmanTour
extends AbstractPersistable
implements Solution<SimpleLongScore>

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.optaplanner.examples.common.domain.AbstractPersistable
id
 
Constructor Summary
TravelingSalesmanTour()
           
 
Method Summary
 List<City> getCityList()
           
 Domicile getDomicile()
           
 List<Domicile> getDomicileRange()
           
 String getName()
           
 Collection<? extends Object> getProblemFacts()
          Called by the DroolsScoreDirector when the Solution needs to be inserted into an empty KieSession.
 SimpleLongScore getScore()
          Returns the Score of this Solution.
 List<Visit> getVisitList()
           
 void setCityList(List<City> cityList)
           
 void setDomicile(Domicile domicile)
           
 void setName(String name)
           
 void setScore(SimpleLongScore score)
          Called by the Solver when the Score of this Solution has been calculated.
 void setVisitList(List<Visit> visitList)
           
 
Methods inherited from class org.optaplanner.examples.common.domain.AbstractPersistable
compareTo, getId, setId, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TravelingSalesmanTour

public TravelingSalesmanTour()
Method Detail

getName

public String getName()

setName

public void setName(String name)

getCityList

public List<City> getCityList()

setCityList

public void setCityList(List<City> cityList)

getDomicile

public Domicile getDomicile()

setDomicile

public void setDomicile(Domicile domicile)

getVisitList

public List<Visit> getVisitList()

setVisitList

public void setVisitList(List<Visit> visitList)

getScore

public SimpleLongScore getScore()
Description copied from interface: Solution
Returns the Score of this Solution.

Specified by:
getScore in interface Solution<SimpleLongScore>
Returns:
null if the Solution is uninitialized or the last calculated Score is dirty the new Score has not yet been recalculated

setScore

public void setScore(SimpleLongScore score)
Description copied from interface: Solution
Called by the Solver when the Score of this Solution has been calculated.

Specified by:
setScore in interface Solution<SimpleLongScore>
Parameters:
score - null if the Solution has changed and the new Score has not yet been recalculated

getDomicileRange

public List<Domicile> getDomicileRange()

getProblemFacts

public Collection<? extends Object> getProblemFacts()
Description copied from interface: Solution
Called by the DroolsScoreDirector when the Solution needs to be inserted into an empty KieSession. These facts can be used by the score rules. They don't change during planning (except through ProblemFactChange events).

Do not include the planning entities as problem facts: they are automatically inserted into the KieSession if and only if they are initialized. When they are initialized later, they are also automatically inserted.

Specified by:
getProblemFacts in interface Solution<SimpleLongScore>
Returns:
never null (although an empty collection is allowed), all the facts of this solution except for the planning entities

OptaPlanner distribution 6.1.0.Final

Copyright © 2006-2014 JBoss by Red Hat. All Rights Reserved.