Skip to content

angee/capacitated_facility_location

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Capacitated facility location

Code for solving the single-source capacitated facility location problem (SCFLP). Uses free open-source MIP solver CBC through the Java interface made available through or-tools.

Problem summary

Given a set of facilities F and a set of clients S, where the facilities are able to supply the clients with a commodity for which they have a demand. The problem is to decide which facilities to build/open to meet the clients' demand, while not exceeding the facility's capacity, minimizing the overall costs.

The overall costs are composed of two cost sources: (1) the cost of opening the respective facilities, and (2) the costs that arise when the respective facilities supply a respective client with the commodity (e.g. production and/or transportation costs).

Building the code

You will need Java 8 installed, as well as maven. Run in your terminal in the main directory of this repository:

mvn -U clean compile assembly:single

This will download all necessary maven libraries (or-tools, etc) and create an executable jar file in the (also created directory) target/.

Running the code

After building the jar file, you can run the code by executing the jar file with the command

java -jar target/<jarfile-name>.jar 

which will solve the Beasley benchmark cap62. You can also specify a Beasley benchmark file as input, for instance with the command

java -jar target/<jarfile-name>.jar  src/main/resources/beasley/cap61

which will solve the Beasley benchmark cap61 (see folder src/main/resources/beasley/ for some more Beasley benchmarks). You can download all Beasley benchmarks here.

About

Solving the capaciated facility location problem

Resources

License

Stars

1 star

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages