Package for running simulated annealing.
Project description
Altbacken
Altbacken is a modular simulated‑annealing framework for Python. It lets you assemble and run simulated‑annealing optimisation routines by combining flexible building blocks for neighbourhood generation, temperature schedules, stop conditions and energy functions. The codebase is type annotated and has no hard dependencies.
Features
Altbacken separates the key components of simulated annealing into composable pieces:
- Neighbourhood generators – functions that perturb a candidate solution. Built‑in implementations operate on numeric and integer vectors by adding random noise within an ε‑band around each element. You can write your own neighbourhood by supplying a callable that takes a solution and returns a mutated solution.
- Temperature schedules – generators that produce the cooling schedule. The library provides predefined sequences and exponential cooling, and validates that the initial temperature and cooling rate have sensible values.
- Stop conditions – callables that determine when to halt the search. Stop conditions can depend on the iteration count, the current temperature or any other state; ready‑made options stop after a fixed number of iterations or when the temperature drops below a threshold.
- Energy (acceptance) functions – functions that compute the probability of accepting a worse solution based on the change in objective value and temperature. A Boltzmann energy function implementing the Metropolis criterion is included but can be swapped for alternative acceptance schemes.
Because these concepts are represented by simple protocols or callables, you are free to mix and match them or plug in your own implementations without changing the core algorithm. The optimiser itself imposes no constraints on the type of your solution: continuous vectors, permutations or user‑defined data structures all work as long as your neighbourhood and fitness functions operate on them.
Installation
Altbacken uses PEP 621 metadata and requires Python 3. The package is not yet published on PyPI, so you should install it directly from the Git repository:
pip install git+https://gitlab.com/patrick.daniel.gress/altbacken.git
If you are developing the project locally, clone the repository and install the development dependencies defined in pyproject.toml using pip:
git clone https://gitlab.com/patrick.daniel.gress/altbacken.git
cd altbacken
# upgrade pip and install dependencies
pip install --upgrade pip
pip install -e .[dev]
Quick start
The following example shows how to use Altbacken to optimise a continuous vector using a simple quadratic objective. It illustrates how to assemble a simulated‑annealing optimiser by choosing a neighbourhood, temperature schedule, stop condition and energy function:
from altbacken.external.annealing import SimpleSimulatedAnnealing
from altbacken.external.neighbourhood.numeric import VectorNeighbourhood
from altbacken.external.temperature import ExponentialCooling
from altbacken.external.stop import IterationThreshold
from altbacken.external.energy import BoltzmannEnergy
# Objective function: maximise negative sum of squares → minimise sum of squares
def fitness(vector: list[float]) -> float:
return -sum(x ** 2 for x in vector)
initial_solution = [5.0, 3.0, -4.0]
neighbourhood = VectorNeighbourhood(epsilon=0.5) # random perturbation within ±0.5 on each element
temperature_schedule = ExponentialCooling(initial_temperature=1000.0, cooling_rate=0.95)
stop_condition = IterationThreshold(5000) # stop after 5 000 iterations
energy_function = BoltzmannEnergy() # Metropolis criterion
# Create the optimiser. You can customise the energy, temperature or stop condition via keywords.
sa = SimpleSimulatedAnnealing(
fitness=fitness,
neighbourhood=neighbourhood,
temperature=temperature_schedule,
stop=stop_condition,
energy=energy_function,
)
# Run the optimiser. The callable returns the best solution and value.
best_solution, best_value = sa(initial_solution)
print("Best solution:", best_solution)
print("Best value:", best_value)
Extending Altbacken
Altbacken encourages you to plug in custom components. Each of the following interfaces is represented by a protocol or callable that you can subclass or implement:
Neighbourhood[T]: a callable that accepts a current solution T and returns a new solution T. Create your own neighbourhood by implementing call(self, solution: T) -> T. See altbacken/external/neighbourhood/numeric.py for examples.
TemperatureFunction: a callable with signature () -> Generator[float, None, None]. It yields the temperature values used by the annealer. See PredefinedTemperature and ExponentialCooling in altbacken/external/temperature.py.
StopCondition[T]: a callable that accepts an AnnealingState[T] (iteration number, temperature and current/best values) and returns True when the search should stop. TemperatureThreshold and IterationThreshold illustrate how to use the current state to decide termination.
EnergyFunction: a callable that accepts the current value, new value and current temperature and returns the probability of accepting the new solution. The built‑in BoltzmannEnergy implements the classic Metropolis acceptance probability based on the Boltzmann constant.
Because these interfaces are plain callables, you can write functions or classes that capture problem‑specific behaviour and pass them into SimpleSimulatedAnnealing. The optimiser does not impose any constraints on the type T, so it can handle numeric vectors, discrete structures such as permutations or user‑defined classes.
Contributing
Contributions are welcome! If you find a bug, have questions or would like to add a feature, please open an issue or merge request on the project’s GitLab page. When submitting code, please ensure that:
Your contributions pass the existing test suite and add tests for new functionality.
Type annotations are added where appropriate. The project uses mypy for static type checking.
You have formatted your code with a tool such as Black and run pytest to ensure tests still pass.
License
This project is licensed under the MIT License. See the LICENSE file for details. In short, the license permits commercial and private use, modification and distribution, and it comes without warranty. This permissive license encourages reuse and contributions from the community.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file altbacken-0.1.0.tar.gz.
File metadata
- Download URL: altbacken-0.1.0.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.0 Linux/6.17.8-300.fc43.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f76dfd46603e86abaa062e625b1e42a6a58d163de09bf275a1f385ed642eb52b
|
|
| MD5 |
7f3f8b66074877965ef4069c5536ad58
|
|
| BLAKE2b-256 |
78174ea3f3ccb18019f65ef6242ae53974eeeab1d0a69b6e3459e28ad948e217
|
File details
Details for the file altbacken-0.1.0-py3-none-any.whl.
File metadata
- Download URL: altbacken-0.1.0-py3-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.0 Linux/6.17.8-300.fc43.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55c4ee30f35dda68d38c6c5d83ccd5edcbef2bbd3e86355f5d6ff91e2d81c0f0
|
|
| MD5 |
02fc5988b244c9e6c645c50162212dd6
|
|
| BLAKE2b-256 |
aa41b07a056b4e0f4f4703da0835bde3e200c70213b090637b1e64a6ff6b2840
|