Skip to main content

A flexible implementation of the adaptive large neighbourhood search (ALNS) algorithm.

Project description

PyPI version ALNS codecov

This package offers a general, well-documented and tested implementation of the adaptive large neighbourhood search (ALNS) meta-heuristic, based on the description given in Pisinger and Ropke (2010). It may be installed in the usual way as

pip install alns

Examples

If you wish to dive right in, the examples/ directory contains example notebooks showing how the ALNS library may be used. These include:

  • The travelling salesman problem (TSP), here. We solve an instance of 131 cities to within 2.1% of optimality, using simple destroy and repair heuristics with a post-processing step.
  • The cutting-stock problem (CSP), here. We solve an instance with 180 beams over 165 distinct sizes to within 1.35% of optimality in only a very limited number of iterations.
  • The resource-constrained project scheduling problem, here. We solve an instance with 90 jobs and 4 resources to within 4% of the best known solution, using a number of different operators and enhancement techniques from the literature.

Finally, the weight schemes and acceptance criteria notebook gives an overview of various options available in the alns package (explained below). In the notebook we use these different options to solve a toy 0/1-knapsack problem. The notebook is a good starting point for when you want to use the different schemes and criteria yourself. It is available here.

How to use

The alns package exposes two classes, ALNS and State. The first may be used to run the ALNS algorithm, the second may be subclassed to store a solution state - all it requires is to define an objective member function, returning an objective value.

The ALNS algorithm must be supplied with a weight scheme and an acceptance criterion.

Weight scheme

The weight scheme determines how to select destroy and repair operators in each iteration of the ALNS algorithm. Several have already been implemented for you, in alns.weight_schemes:

  • SimpleWeights. This weight scheme applies a convex combination of the existing weight vector, and a reward given for the current candidate solution.
  • SegmentedWeights. This weight scheme divides the iteration horizon into segments. In each segment, scores are summed for each operator. At the end of each segment, the weight vector is updated as a convex combination of the existing weight vector, and these summed scores.

Each weight scheme inherits from WeightScheme, which may be used to write your own.

Acceptance criterion

The acceptance criterion determines the acceptance of a new solution state at each iteration. An overview of common acceptance criteria is given in Santini et al. (2018). Several have already been implemented for you, in alns.criteria:

  • HillClimbing. The simplest acceptance criterion, hill-climbing solely accepts solutions improving the objective value.
  • RecordToRecordTravel. This criterion accepts solutions when the improvement meets some updating threshold.
  • SimulatedAnnealing. This criterion accepts solutions when the scaled probability is bigger than some random number, using an updating temperature.

Each acceptance criterion inherits from AcceptanceCriterion, which may be used to write your own.

References

  • Pisinger, D., and Ropke, S. (2010). Large Neighborhood Search. In M. Gendreau (Ed.), Handbook of Metaheuristics (2 ed., pp. 399-420). Springer.
  • Santini, A., Ropke, S. & Hvattum, L.M. (2018). A comparison of acceptance criteria for the adaptive large neighbourhood search metaheuristic. Journal of Heuristics 24 (5): 783-815.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

alns-2.0.1.tar.gz (22.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

alns-2.0.1-py3-none-any.whl (30.4 kB view details)

Uploaded Python 3

File details

Details for the file alns-2.0.1.tar.gz.

File metadata

  • Download URL: alns-2.0.1.tar.gz
  • Upload date:
  • Size: 22.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.9.10 Linux/5.11.0-1028-azure

File hashes

Hashes for alns-2.0.1.tar.gz
Algorithm Hash digest
SHA256 229f84e441d21175cd33ba5b1efd5e3df246b333030e03eccd57710c4a7f9cfd
MD5 ab8c5070d6369631f69527785532cc66
BLAKE2b-256 379269751da09bd849714e71ccf7e7e570d4fc7136daabec79cafc9ef0d5b5ee

See more details on using hashes here.

File details

Details for the file alns-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: alns-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 30.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.9.10 Linux/5.11.0-1028-azure

File hashes

Hashes for alns-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 948b183a92e0ba48e637337b8823ae2226f9d5d3f2f8eb5cd11f5fff6a369191
MD5 a162f22e6fd0bc3e82a86e3b2fd7c34e
BLAKE2b-256 91fa1b6051c41f7cb15deab3f032aee5f98aaef4adca705d26b4f99f8b40b547

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page