Python’s LAP (Linear Assignment Problem) solver — written in Rust for performance
Project description
fastlap
High-Performance Linear Assignment Problem Solver
fastlap is a high-performance Python library for solving Linear Assignment Problems (LAP), implemented in Rust for optimal speed and efficiency. Leveraging the PyO3 framework, fastlap seamlessly integrates Rust's performance with Python's ease of use, delivering a lightweight and robust solution for assignment optimization tasks.
✨ Features
- High Performance: Built in Rust for superior computational speed.
- Multiple Algorithms: Supports state-of-the-art LAP algorithms, including LAPJV, Hungarian, LAPMOD, Dantzig’s, Auction, and Subgradient.
- Python Integration: User-friendly Python interface via PyO3.
- Lightweight: Minimal dependencies for easy integration into projects.
📖 Supported Algorithms
- LAPJV — Efficient dual-based shortest augmenting path algorithm (Jonker & Volgenant, 1987)
- Hungarian Algorithm — Classic method using row/column reduction and assignment phases (Kuhn, 1955)
- Dantzig’s Algorithm — Simplex-based method for solving linear assignment problems (Dantzig, 1963)
- Auction Algorithm — Iterative bidding approach for optimal assignment (Bertsekas, 1988)
- Subgradient Algorithm — Optimization method using subgradient updates for assignment problems (Held & Karp, 1971)
🚀 Getting Started
[!WARNING]
fastlap is under active development and may not yet be fully stable. Use with caution in production environments. And to be honest, I am still struggling with publish this package to PyPI.
Installation
To build fastlap from source, ensure you have maturin installed.
# 1. Clone the project
git clone https://github.com/8Opt/fastlap.git
cd fastlap
# 2. Install dependencies
pip install maturin
# or `uv sync`
# 3. Build and install
maturin build
# or maturin develop
Example Usage
import fastlap
# Define a sample cost matrix
cost_matrix = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9]
]
## Solve the LAP using the LAPJV algorithm
total_cost, row_assignments, col_assignments = fastlap.solve_lap(cost_matrix, algorithm="lapjv")
print("Total Cost:", total_cost)
print("Row Assignments:", row_assignments)
print("Column Assignments:", col_assignments)
📄 Citation
If you use fastlap in your research or projects, please cite it as follows:
@software{fastlap2025,
author = {Le Duc Minh},
title = {fastlap: A High-Performance Python LAP Solver Powered by Rust},
year = {2025},
publisher = {GitHub},
url = {https://github.com/8Opt/fastlap},
note = {Python-Rust implementation of LAPJV, Hungarian, LAPMOD, Dantzig’s, Auction, and Subgradient algorithms}
}
📃 License
fastlap is licensed under the MIT License © 2025.
🛠️ Contributing
Contributions are welcome! Please see our Contributing Guidelines for more details on how to get involved.
📧 Contact
For questions or support, please open an issue on the GitHub repository or contact the maintainers directly.
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 Distributions
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 fastlap-0.1.1-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: fastlap-0.1.1-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 287.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb062afcedf87d01a83fbf05a14e7320dddf409905f1197c8769a6918e4690a9
|
|
| MD5 |
c29c7f66ba274334caac6f1d3da8ab0a
|
|
| BLAKE2b-256 |
83f4e50c3998d369302a268f522b47c24219fa0f44723ea2448a92335cb8a247
|