All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.graphhopper.jsprit.instance.reader.LuiShenReader Maven / Gradle / Ivy

There is a newer version: 1.9.0-beta.4
Show newest version
/*
 * Licensed to GraphHopper GmbH under one or more contributor
 * license agreements. See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.
 *
 * GraphHopper GmbH licenses this file to you under the Apache License,
 * Version 2.0 (the "License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.graphhopper.jsprit.instance.reader;


import com.graphhopper.jsprit.core.problem.Location;
import com.graphhopper.jsprit.core.problem.VehicleRoutingProblem;
import com.graphhopper.jsprit.core.problem.VehicleRoutingProblem.FleetSize;
import com.graphhopper.jsprit.core.problem.job.Service;
import com.graphhopper.jsprit.core.problem.solution.route.activity.TimeWindow;
import com.graphhopper.jsprit.core.problem.vehicle.VehicleImpl;
import com.graphhopper.jsprit.core.problem.vehicle.VehicleTypeImpl;
import com.graphhopper.jsprit.core.util.Coordinate;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;


public class LuiShenReader {

    private static Logger logger = LoggerFactory.getLogger(LuiShenReader.class);

    private final VehicleRoutingProblem.Builder vrpBuilder;

    private double coordProjectionFactor = 1;

    public LuiShenReader(VehicleRoutingProblem.Builder vrpBuilder) {
        super();
        this.vrpBuilder = vrpBuilder;
    }

    /**
     * Reads input files to build Liu Shen problem.
     * 

*

The instance-file is a solomon file. The vehicle-file is a * txt-file that has the following columns: *

Vehicle;Capacity;Cost_a;Cost_b;Cost_c *

Concrete vehicleType: *

A;100;300;60;30 *

*

In the example above, the vehicle-type with typeId A has * a capacity of 100, and fixed costs of 100 in cost scenario "a", * 300 in "b" and 30 in "c". * * @param instanceFile is a solomon-instance-file * @param vehicleFile * @param costScenario is either "a", "b" or "c" */ public void read(String instanceFile, String vehicleFile, String costScenario) { vrpBuilder.setFleetSize(FleetSize.INFINITE); BufferedReader reader = getReader(instanceFile); int counter = 0; String line = null; while ((line = readLine(reader)) != null) { line = line.replace("\r", ""); line = line.trim(); String[] tokens = line.split(" +"); counter++; if (counter > 9) { if (tokens.length < 7) continue; Coordinate coord = makeCoord(tokens[1], tokens[2]); String customerId = tokens[0]; int demand = Integer.parseInt(tokens[3]); double start = Double.parseDouble(tokens[4]) * coordProjectionFactor; double end = Double.parseDouble(tokens[5]) * coordProjectionFactor; double serviceTime = Double.parseDouble(tokens[6]) * coordProjectionFactor; if (counter == 10) { createVehicles(vehicleFile, costScenario, customerId, coord, start, end); } else { Service service = Service.Builder.newInstance("" + counter).addSizeDimension(0, demand) .setLocation(Location.Builder.newInstance().setCoordinate(coord).setId(customerId).build()).setServiceTime(serviceTime) .setTimeWindow(TimeWindow.newInstance(start, end)).build(); vrpBuilder.addJob(service); } } } close(reader); } private void createVehicles(String vehicleFileName, String costScenario, String locationId, Coordinate coord, double start, double end) { BufferedReader reader = getReader(vehicleFileName); int costScenarioColumn = getCostScenarioColumn(costScenario); int vehicleIdColumn = 0; int capacityColumn = 1; boolean firstLine = true; String line = null; while ((line = readLine(reader)) != null) { if (firstLine) { firstLine = false; continue; } String[] tokens = line.split(";"); String vehicleId = tokens[vehicleIdColumn]; int capacity = Integer.parseInt(tokens[capacityColumn]); int fixCost = Integer.parseInt(tokens[costScenarioColumn]); VehicleTypeImpl.Builder typeBuilder = VehicleTypeImpl.Builder.newInstance(vehicleId).addCapacityDimension(0, capacity); typeBuilder.setFixedCost(fixCost).setCostPerDistance(1.0); VehicleTypeImpl type = typeBuilder.build(); VehicleImpl reprVehicle = VehicleImpl.Builder.newInstance(vehicleId).setEarliestStart(start).setLatestArrival(end). setStartLocation(Location.Builder.newInstance().setId(locationId).setCoordinate(coord).build()) .setType(type).build(); vrpBuilder.addVehicle(reprVehicle); } close(reader); } private int getCostScenarioColumn(String costScenario) { if (costScenario.equals("a")) { return 2; } else if (costScenario.equals("b")) { return 3; } else if (costScenario.equals("c")) { return 4; } throw new IllegalStateException("costScenario " + costScenario + " not known"); } public void setCoordProjectionFactor(double coordProjectionFactor) { this.coordProjectionFactor = coordProjectionFactor; } private void close(BufferedReader reader) { try { reader.close(); } catch (IOException e) { throw new RuntimeException(e); } } private String readLine(BufferedReader reader) { try { return reader.readLine(); } catch (IOException e) { throw new RuntimeException(e); } } private Coordinate makeCoord(String xString, String yString) { double x = Double.parseDouble(xString); double y = Double.parseDouble(yString); return new Coordinate(x * coordProjectionFactor, y * coordProjectionFactor); } private BufferedReader getReader(String solomonFile) { BufferedReader reader = null; try { reader = new BufferedReader(new FileReader(solomonFile)); } catch (FileNotFoundException e1) { throw new RuntimeException(e1); } return reader; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy