OptaPlanner examples 6.2.0.CR1

Uses of Class
org.optaplanner.examples.vehiclerouting.domain.location.Location

Packages that use Location
org.optaplanner.examples.vehiclerouting.domain   
org.optaplanner.examples.vehiclerouting.domain.location   
org.optaplanner.examples.vehiclerouting.domain.location.segmented   
org.optaplanner.examples.vehiclerouting.swingui   
 

Uses of Location in org.optaplanner.examples.vehiclerouting.domain
 

Fields in org.optaplanner.examples.vehiclerouting.domain declared as Location
protected  Location Customer.location
           
protected  Location Depot.location
           
 

Fields in org.optaplanner.examples.vehiclerouting.domain with type parameters of type Location
protected  List<Location> VehicleRoutingSolution.locationList
           
 

Methods in org.optaplanner.examples.vehiclerouting.domain that return Location
 Location Standstill.getLocation()
           
 Location Customer.getLocation()
           
 Location Depot.getLocation()
           
 Location Vehicle.getLocation()
           
 

Methods in org.optaplanner.examples.vehiclerouting.domain that return types with arguments of type Location
 List<Location> VehicleRoutingSolution.getLocationList()
           
 

Methods in org.optaplanner.examples.vehiclerouting.domain with parameters of type Location
 void Customer.setLocation(Location location)
           
 void Depot.setLocation(Location location)
           
 

Method parameters in org.optaplanner.examples.vehiclerouting.domain with type arguments of type Location
 void VehicleRoutingSolution.setLocationList(List<Location> locationList)
           
 

Uses of Location in org.optaplanner.examples.vehiclerouting.domain.location
 

Subclasses of Location in org.optaplanner.examples.vehiclerouting.domain.location
 class AirLocation
          The cost between 2 locations is a straight line: the euclidean distance between their GPS coordinates.
 class RoadLocation
          The cost between 2 locations was precalculated on a real road network route.
 

Methods in org.optaplanner.examples.vehiclerouting.domain.location with parameters of type Location
 double Location.getAirDistanceDouble(Location location)
           
 double Location.getAngle(Location location)
          The angle relative to the direction EAST.
abstract  int Location.getDistance(Location location)
          The distance's unit of measurement depends on the VehicleRoutingSolution's DistanceType.
 int AirLocation.getDistance(Location location)
           
 int RoadLocation.getDistance(Location location)
           
 

Uses of Location in org.optaplanner.examples.vehiclerouting.domain.location.segmented
 

Subclasses of Location in org.optaplanner.examples.vehiclerouting.domain.location.segmented
 class HubSegmentLocation
          Assistant for RoadSegmentLocation.
 class RoadSegmentLocation
          Like RoadLocation, but for high scale problems to avoid the memory issue of keeping the entire cost matrix in memory.
 

Methods in org.optaplanner.examples.vehiclerouting.domain.location.segmented with parameters of type Location
 int RoadSegmentLocation.getDistance(Location location)
           
 int HubSegmentLocation.getDistance(Location location)
           
 

Uses of Location in org.optaplanner.examples.vehiclerouting.swingui
 

Methods in org.optaplanner.examples.vehiclerouting.swingui with parameters of type Location
protected  Customer VehicleRoutingPanel.createCustomer(VehicleRoutingSolution solution, Location newLocation)
           
 


OptaPlanner examples 6.2.0.CR1

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