Uses of Class
basics.VehicleRoutingProblem.Builder

Packages that use VehicleRoutingProblem.Builder
basics   
basics.io   
 

Uses of VehicleRoutingProblem.Builder in basics
 

Methods in basics that return VehicleRoutingProblem.Builder
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.addAllJobs(java.util.Collection<Job> jobs)
          Adds a collection of jobs.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.addAllVehicles(java.util.Collection<Vehicle> vehicles)
          Adds a collection of vehicles.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.addJob(Job job)
          Adds a job which is either a service or a shipment.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.addLocation(java.lang.String id, Coordinate coord)
           
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.addService(Service service)
          Adds a service to jobList.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.addVehicle(Vehicle vehicle)
          Adds a vehicle.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.addVehicleType(VehicleType type)
          Adds a vehicleType.
static VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.newInstance()
          Returns a new instance of this builder.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.setActivityCosts(VehicleRoutingActivityCosts activityCosts)
          Sets the activityCostFunction that considers also activities on a vehicle-route.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.setFleetComposition(VehicleRoutingProblem.FleetComposition fleetComposition)
          Sets the fleetComposition.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.setFleetSize(VehicleRoutingProblem.FleetSize fleetSize)
          Sets the type of fleetSize.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.setNeighborhood(Neighborhood neighborhood)
          Sets the neighborhood.
 VehicleRoutingProblem.Builder VehicleRoutingProblem.Builder.setRoutingCost(VehicleRoutingTransportCosts costs)
          Sets routing costs.
 

Uses of VehicleRoutingProblem.Builder in basics.io
 

Constructors in basics.io with parameters of type VehicleRoutingProblem.Builder
VrpXMLReader(VehicleRoutingProblem.Builder vrpBuilder)
           
VrpXMLReader(VehicleRoutingProblem.Builder vrpBuilder, java.util.Collection<VehicleRoutingProblemSolution> solutions)